{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "912ed572-1658-406b-976c-cd6de2d4e89e", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = true;\n", " const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n", " const reloading = false;\n", " const Bokeh = root.Bokeh;\n", "\n", " // Set a timeout for this load but only if we are not already initializing\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks;\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", " if (js_modules == null) js_modules = [];\n", " if (js_exports == null) js_exports = {};\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", "\n", " if (root._bokeh_is_loading > 0) {\n", " // Don't load bokeh if it is still initializing\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n", " // There is nothing to load\n", " run_callbacks();\n", " return null;\n", " }\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", " window._bokeh_on_load = on_load\n", "\n", " function on_error(e) {\n", " const src_el = e.srcElement\n", " console.error(\"failed to load \" + (src_el.href || src_el.src));\n", " }\n", "\n", " const skip = [];\n", " if (window.requirejs) {\n", " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n", " root._bokeh_is_loading = css_urls.length + 0;\n", " } else {\n", " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n", " }\n", "\n", " const existing_stylesheets = []\n", " const links = document.getElementsByTagName('link')\n", " for (let i = 0; i < links.length; i++) {\n", " const link = links[i]\n", " if (link.href != null) {\n", " existing_stylesheets.push(link.href)\n", " }\n", " }\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const escaped = encodeURI(url)\n", " if (existing_stylesheets.indexOf(escaped) !== -1) {\n", " on_load()\n", " continue;\n", " }\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " } var existing_scripts = []\n", " const scripts = document.getElementsByTagName('script')\n", " for (let i = 0; i < scripts.length; i++) {\n", " var script = scripts[i]\n", " if (script.src != null) {\n", " existing_scripts.push(script.src)\n", " }\n", " }\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (let i = 0; i < js_modules.length; i++) {\n", " const url = js_modules[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (const name in js_exports) {\n", " const url = js_exports[name];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " element.textContent = `\n", " import ${name} from \"${url}\"\n", " window.${name} = ${name}\n", " window._bokeh_on_load()\n", " `\n", " document.head.appendChild(element);\n", " }\n", " if (!js_urls.length && !js_modules.length) {\n", " on_load()\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.0.min.js\", \"https://cdn.holoviz.org/panel/1.5.3/dist/panel.min.js\"];\n", " const js_modules = [];\n", " const js_exports = {};\n", " const css_urls = [];\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {} // ensure no trailing comma for IE\n", " ];\n", "\n", " function run_inline_js() {\n", " if ((root.Bokeh !== undefined) || (force === true)) {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " try {\n", " inline_js[i].call(root, root.Bokeh);\n", " } catch(e) {\n", " if (!reloading) {\n", " throw e;\n", " }\n", " }\n", " }\n", " // Cache old bokeh versions\n", " if (Bokeh != undefined && !reloading) {\n", " var NewBokeh = root.Bokeh;\n", " if (Bokeh.versions === undefined) {\n", " Bokeh.versions = new Map();\n", " }\n", " if (NewBokeh.version !== Bokeh.version) {\n", " Bokeh.versions.set(NewBokeh.version, NewBokeh)\n", " }\n", " root.Bokeh = Bokeh;\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " }\n", " root._bokeh_is_initializing = false\n", " }\n", "\n", " function load_or_wait() {\n", " // Implement a backoff loop that tries to ensure we do not load multiple\n", " // versions of Bokeh and its dependencies at the same time.\n", " // In recent versions we use the root._bokeh_is_initializing flag\n", " // to determine whether there is an ongoing attempt to initialize\n", " // bokeh, however for backward compatibility we also try to ensure\n", " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n", " // before older versions are fully initialized.\n", " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n", " // If the timeout and bokeh was not successfully loaded we reset\n", " // everything and try loading again\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_is_initializing = false;\n", " root._bokeh_onload_callbacks = undefined;\n", " root._bokeh_is_loading = 0\n", " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n", " load_or_wait();\n", " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n", " setTimeout(load_or_wait, 100);\n", " } else {\n", " root._bokeh_is_initializing = true\n", " root._bokeh_onload_callbacks = []\n", " const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n", " if (!reloading && !bokeh_loaded) {\n", " if (root.Bokeh) {\n", " root.Bokeh = undefined;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " }\n", " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", " }\n", " // Give older versions of the autoload script a head-start to ensure\n", " // they initialize before we start loading newer version.\n", " setTimeout(load_or_wait, 100)\n", "}(window));" ], "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = false;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.0.min.js\", \"https://cdn.holoviz.org/panel/1.5.3/dist/panel.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", "}\n", "\n", "\n", " function JupyterCommManager() {\n", " }\n", "\n", " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " comm_manager.register_target(comm_id, function(comm) {\n", " comm.on_msg(msg_handler);\n", " });\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", " comm.onMsg = msg_handler;\n", " });\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " console.log(message)\n", " var content = {data: message.data, comm_id};\n", " var buffers = []\n", " for (var buffer of message.buffers || []) {\n", " buffers.push(new DataView(buffer))\n", " }\n", " var metadata = message.metadata || {};\n", " var msg = {content, buffers, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " })\n", " }\n", " }\n", "\n", " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", " if (comm_id in window.PyViz.comms) {\n", " return window.PyViz.comms[comm_id];\n", " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", " if (msg_handler) {\n", " comm.on_msg(msg_handler);\n", " }\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", " comm.open();\n", " if (msg_handler) {\n", " comm.onMsg = msg_handler;\n", " }\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", " comm_promise.then((comm) => {\n", " window.PyViz.comms[comm_id] = comm;\n", " if (msg_handler) {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " var content = {data: message.data};\n", " var metadata = message.metadata || {comm_id};\n", " var msg = {content, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " }\n", " }) \n", " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", " return comm_promise.then((comm) => {\n", " comm.send(data, metadata, buffers, disposeOnDone);\n", " });\n", " };\n", " var comm = {\n", " send: sendClosure\n", " };\n", " }\n", " window.PyViz.comms[comm_id] = comm;\n", " return comm;\n", " }\n", " window.PyViz.comm_manager = new JupyterCommManager();\n", " \n", "\n", "\n", "var JS_MIME_TYPE = 'application/javascript';\n", "var HTML_MIME_TYPE = 'text/html';\n", "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", "var CLASS_NAME = 'output';\n", "\n", "/**\n", " * Render data to the DOM node\n", " */\n", "function render(props, node) {\n", " var div = document.createElement(\"div\");\n", " var script = document.createElement(\"script\");\n", " node.appendChild(div);\n", " node.appendChild(script);\n", "}\n", "\n", "/**\n", " * Handle when a new output is added\n", " */\n", "function handle_add_output(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", " return\n", " }\n", " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", " if (id !== undefined) {\n", " var nchildren = toinsert.length;\n", " var html_node = toinsert[nchildren-1].children[0];\n", " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", " var scripts = [];\n", " var nodelist = html_node.querySelectorAll(\"script\");\n", " for (var i in nodelist) {\n", " if (nodelist.hasOwnProperty(i)) {\n", " scripts.push(nodelist[i])\n", " }\n", " }\n", "\n", " scripts.forEach( function (oldScript) {\n", " var newScript = document.createElement(\"script\");\n", " var attrs = [];\n", " var nodemap = oldScript.attributes;\n", " for (var j in nodemap) {\n", " if (nodemap.hasOwnProperty(j)) {\n", " attrs.push(nodemap[j])\n", " }\n", " }\n", " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", " oldScript.parentNode.replaceChild(newScript, oldScript);\n", " });\n", " if (JS_MIME_TYPE in output.data) {\n", " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", " }\n", " output_area._hv_plot_id = id;\n", " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", " window.PyViz.plot_index[id] = Bokeh.index[id];\n", " } else {\n", " window.PyViz.plot_index[id] = null;\n", " }\n", " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", "}\n", "\n", "/**\n", " * Handle when an output is cleared or removed\n", " */\n", "function handle_clear_output(event, handle) {\n", " var id = handle.cell.output_area._hv_plot_id;\n", " var server_id = handle.cell.output_area._bokeh_server_id;\n", " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", " if (server_id !== null) {\n", " comm.send({event_type: 'server_delete', 'id': server_id});\n", " return;\n", " } else if (comm !== null) {\n", " comm.send({event_type: 'delete', 'id': id});\n", " }\n", " delete PyViz.plot_index[id];\n", " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", " var doc = window.Bokeh.index[id].model.document\n", " doc.clear();\n", " const i = window.Bokeh.documents.indexOf(doc);\n", " if (i > -1) {\n", " window.Bokeh.documents.splice(i, 1);\n", " }\n", " }\n", "}\n", "\n", "/**\n", " * Handle kernel restart event\n", " */\n", "function handle_kernel_cleanup(event, handle) {\n", " delete PyViz.comms[\"hv-extension-comm\"];\n", " window.PyViz.plot_index = {}\n", "}\n", "\n", "/**\n", " * Handle update_display_data messages\n", " */\n", "function handle_update_output(event, handle) {\n", " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n", " handle_add_output(event, handle)\n", "}\n", "\n", "function register_renderer(events, OutputArea) {\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[0]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " events.on('output_added.OutputArea', handle_add_output);\n", " events.on('output_updated.OutputArea', handle_update_output);\n", " events.on('clear_output.CodeCell', handle_clear_output);\n", " events.on('delete.Cell', handle_clear_output);\n", " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n", "\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " safe: true,\n", " index: 0\n", " });\n", "}\n", "\n", "if (window.Jupyter !== undefined) {\n", " try {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " } catch(err) {\n", " }\n", "}\n" ], "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n" }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.holoviews_exec.v0+json": "", "text/html": [ "
\n", "
\n", "
\n", "" ] }, "metadata": { "application/vnd.holoviews_exec.v0+json": { "id": "p1002" } }, "output_type": "display_data" }, { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = false;\n", " const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n", " const reloading = true;\n", " const Bokeh = root.Bokeh;\n", "\n", " // Set a timeout for this load but only if we are not already initializing\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks;\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", " if (js_modules == null) js_modules = [];\n", " if (js_exports == null) js_exports = {};\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", "\n", " if (root._bokeh_is_loading > 0) {\n", " // Don't load bokeh if it is still initializing\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n", " // There is nothing to load\n", " run_callbacks();\n", " return null;\n", " }\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", " window._bokeh_on_load = on_load\n", "\n", " function on_error(e) {\n", " const src_el = e.srcElement\n", " console.error(\"failed to load \" + (src_el.href || src_el.src));\n", " }\n", "\n", " const skip = [];\n", " if (window.requirejs) {\n", " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n", " root._bokeh_is_loading = css_urls.length + 0;\n", " } else {\n", " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n", " }\n", "\n", " const existing_stylesheets = []\n", " const links = document.getElementsByTagName('link')\n", " for (let i = 0; i < links.length; i++) {\n", " const link = links[i]\n", " if (link.href != null) {\n", " existing_stylesheets.push(link.href)\n", " }\n", " }\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const escaped = encodeURI(url)\n", " if (existing_stylesheets.indexOf(escaped) !== -1) {\n", " on_load()\n", " continue;\n", " }\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " } var existing_scripts = []\n", " const scripts = document.getElementsByTagName('script')\n", " for (let i = 0; i < scripts.length; i++) {\n", " var script = scripts[i]\n", " if (script.src != null) {\n", " existing_scripts.push(script.src)\n", " }\n", " }\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (let i = 0; i < js_modules.length; i++) {\n", " const url = js_modules[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (const name in js_exports) {\n", " const url = js_exports[name];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " element.textContent = `\n", " import ${name} from \"${url}\"\n", " window.${name} = ${name}\n", " window._bokeh_on_load()\n", " `\n", " document.head.appendChild(element);\n", " }\n", " if (!js_urls.length && !js_modules.length) {\n", " on_load()\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n", " const js_modules = [];\n", " const js_exports = {};\n", " const css_urls = [];\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {} // ensure no trailing comma for IE\n", " ];\n", "\n", " function run_inline_js() {\n", " if ((root.Bokeh !== undefined) || (force === true)) {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " try {\n", " inline_js[i].call(root, root.Bokeh);\n", " } catch(e) {\n", " if (!reloading) {\n", " throw e;\n", " }\n", " }\n", " }\n", " // Cache old bokeh versions\n", " if (Bokeh != undefined && !reloading) {\n", " var NewBokeh = root.Bokeh;\n", " if (Bokeh.versions === undefined) {\n", " Bokeh.versions = new Map();\n", " }\n", " if (NewBokeh.version !== Bokeh.version) {\n", " Bokeh.versions.set(NewBokeh.version, NewBokeh)\n", " }\n", " root.Bokeh = Bokeh;\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " }\n", " root._bokeh_is_initializing = false\n", " }\n", "\n", " function load_or_wait() {\n", " // Implement a backoff loop that tries to ensure we do not load multiple\n", " // versions of Bokeh and its dependencies at the same time.\n", " // In recent versions we use the root._bokeh_is_initializing flag\n", " // to determine whether there is an ongoing attempt to initialize\n", " // bokeh, however for backward compatibility we also try to ensure\n", " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n", " // before older versions are fully initialized.\n", " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n", " // If the timeout and bokeh was not successfully loaded we reset\n", " // everything and try loading again\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_is_initializing = false;\n", " root._bokeh_onload_callbacks = undefined;\n", " root._bokeh_is_loading = 0\n", " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n", " load_or_wait();\n", " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n", " setTimeout(load_or_wait, 100);\n", " } else {\n", " root._bokeh_is_initializing = true\n", " root._bokeh_onload_callbacks = []\n", " const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n", " if (!reloading && !bokeh_loaded) {\n", " if (root.Bokeh) {\n", " root.Bokeh = undefined;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " }\n", " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", " }\n", " // Give older versions of the autoload script a head-start to ensure\n", " // they initialize before we start loading newer version.\n", " setTimeout(load_or_wait, 100)\n", "}(window));" ], "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = false;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", "}\n", "\n", "\n", " function JupyterCommManager() {\n", " }\n", "\n", " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " comm_manager.register_target(comm_id, function(comm) {\n", " comm.on_msg(msg_handler);\n", " });\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", " comm.onMsg = msg_handler;\n", " });\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " console.log(message)\n", " var content = {data: message.data, comm_id};\n", " var buffers = []\n", " for (var buffer of message.buffers || []) {\n", " buffers.push(new DataView(buffer))\n", " }\n", " var metadata = message.metadata || {};\n", " var msg = {content, buffers, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " })\n", " }\n", " }\n", "\n", " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", " if (comm_id in window.PyViz.comms) {\n", " return window.PyViz.comms[comm_id];\n", " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", " if (msg_handler) {\n", " comm.on_msg(msg_handler);\n", " }\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", " comm.open();\n", " if (msg_handler) {\n", " comm.onMsg = msg_handler;\n", " }\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", " comm_promise.then((comm) => {\n", " window.PyViz.comms[comm_id] = comm;\n", " if (msg_handler) {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " var content = {data: message.data};\n", " var metadata = message.metadata || {comm_id};\n", " var msg = {content, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " }\n", " }) \n", " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", " return comm_promise.then((comm) => {\n", " comm.send(data, metadata, buffers, disposeOnDone);\n", " });\n", " };\n", " var comm = {\n", " send: sendClosure\n", " };\n", " }\n", " window.PyViz.comms[comm_id] = comm;\n", " return comm;\n", " }\n", " window.PyViz.comm_manager = new JupyterCommManager();\n", " \n", "\n", "\n", "var JS_MIME_TYPE = 'application/javascript';\n", "var HTML_MIME_TYPE = 'text/html';\n", "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", "var CLASS_NAME = 'output';\n", "\n", "/**\n", " * Render data to the DOM node\n", " */\n", "function render(props, node) {\n", " var div = document.createElement(\"div\");\n", " var script = document.createElement(\"script\");\n", " node.appendChild(div);\n", " node.appendChild(script);\n", "}\n", "\n", "/**\n", " * Handle when a new output is added\n", " */\n", "function handle_add_output(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", " return\n", " }\n", " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", " if (id !== undefined) {\n", " var nchildren = toinsert.length;\n", " var html_node = toinsert[nchildren-1].children[0];\n", " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", " var scripts = [];\n", " var nodelist = html_node.querySelectorAll(\"script\");\n", " for (var i in nodelist) {\n", " if (nodelist.hasOwnProperty(i)) {\n", " scripts.push(nodelist[i])\n", " }\n", " }\n", "\n", " scripts.forEach( function (oldScript) {\n", " var newScript = document.createElement(\"script\");\n", " var attrs = [];\n", " var nodemap = oldScript.attributes;\n", " for (var j in nodemap) {\n", " if (nodemap.hasOwnProperty(j)) {\n", " attrs.push(nodemap[j])\n", " }\n", " }\n", " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", " oldScript.parentNode.replaceChild(newScript, oldScript);\n", " });\n", " if (JS_MIME_TYPE in output.data) {\n", " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", " }\n", " output_area._hv_plot_id = id;\n", " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", " window.PyViz.plot_index[id] = Bokeh.index[id];\n", " } else {\n", " window.PyViz.plot_index[id] = null;\n", " }\n", " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", "}\n", "\n", "/**\n", " * Handle when an output is cleared or removed\n", " */\n", "function handle_clear_output(event, handle) {\n", " var id = handle.cell.output_area._hv_plot_id;\n", " var server_id = handle.cell.output_area._bokeh_server_id;\n", " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", " if (server_id !== null) {\n", " comm.send({event_type: 'server_delete', 'id': server_id});\n", " return;\n", " } else if (comm !== null) {\n", " comm.send({event_type: 'delete', 'id': id});\n", " }\n", " delete PyViz.plot_index[id];\n", " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", " var doc = window.Bokeh.index[id].model.document\n", " doc.clear();\n", " const i = window.Bokeh.documents.indexOf(doc);\n", " if (i > -1) {\n", " window.Bokeh.documents.splice(i, 1);\n", " }\n", " }\n", "}\n", "\n", "/**\n", " * Handle kernel restart event\n", " */\n", "function handle_kernel_cleanup(event, handle) {\n", " delete PyViz.comms[\"hv-extension-comm\"];\n", " window.PyViz.plot_index = {}\n", "}\n", "\n", "/**\n", " * Handle update_display_data messages\n", " */\n", "function handle_update_output(event, handle) {\n", " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n", " handle_add_output(event, handle)\n", "}\n", "\n", "function register_renderer(events, OutputArea) {\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[0]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " events.on('output_added.OutputArea', handle_add_output);\n", " events.on('output_updated.OutputArea', handle_update_output);\n", " events.on('clear_output.CodeCell', handle_clear_output);\n", " events.on('delete.Cell', handle_clear_output);\n", " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n", "\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " safe: true,\n", " index: 0\n", " });\n", "}\n", "\n", "if (window.Jupyter !== undefined) {\n", " try {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " } catch(err) {\n", " }\n", "}\n" ], "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n" }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = false;\n", " const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n", " const reloading = true;\n", " const Bokeh = root.Bokeh;\n", "\n", " // Set a timeout for this load but only if we are not already initializing\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks;\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", " if (js_modules == null) js_modules = [];\n", " if (js_exports == null) js_exports = {};\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", "\n", " if (root._bokeh_is_loading > 0) {\n", " // Don't load bokeh if it is still initializing\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n", " // There is nothing to load\n", " run_callbacks();\n", " return null;\n", " }\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", " window._bokeh_on_load = on_load\n", "\n", " function on_error(e) {\n", " const src_el = e.srcElement\n", " console.error(\"failed to load \" + (src_el.href || src_el.src));\n", " }\n", "\n", " const skip = [];\n", " if (window.requirejs) {\n", " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n", " root._bokeh_is_loading = css_urls.length + 0;\n", " } else {\n", " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n", " }\n", "\n", " const existing_stylesheets = []\n", " const links = document.getElementsByTagName('link')\n", " for (let i = 0; i < links.length; i++) {\n", " const link = links[i]\n", " if (link.href != null) {\n", " existing_stylesheets.push(link.href)\n", " }\n", " }\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const escaped = encodeURI(url)\n", " if (existing_stylesheets.indexOf(escaped) !== -1) {\n", " on_load()\n", " continue;\n", " }\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " } var existing_scripts = []\n", " const scripts = document.getElementsByTagName('script')\n", " for (let i = 0; i < scripts.length; i++) {\n", " var script = scripts[i]\n", " if (script.src != null) {\n", " existing_scripts.push(script.src)\n", " }\n", " }\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (let i = 0; i < js_modules.length; i++) {\n", " const url = js_modules[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (const name in js_exports) {\n", " const url = js_exports[name];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " element.textContent = `\n", " import ${name} from \"${url}\"\n", " window.${name} = ${name}\n", " window._bokeh_on_load()\n", " `\n", " document.head.appendChild(element);\n", " }\n", " if (!js_urls.length && !js_modules.length) {\n", " on_load()\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n", " const js_modules = [];\n", " const js_exports = {};\n", " const css_urls = [];\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {} // ensure no trailing comma for IE\n", " ];\n", "\n", " function run_inline_js() {\n", " if ((root.Bokeh !== undefined) || (force === true)) {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " try {\n", " inline_js[i].call(root, root.Bokeh);\n", " } catch(e) {\n", " if (!reloading) {\n", " throw e;\n", " }\n", " }\n", " }\n", " // Cache old bokeh versions\n", " if (Bokeh != undefined && !reloading) {\n", " var NewBokeh = root.Bokeh;\n", " if (Bokeh.versions === undefined) {\n", " Bokeh.versions = new Map();\n", " }\n", " if (NewBokeh.version !== Bokeh.version) {\n", " Bokeh.versions.set(NewBokeh.version, NewBokeh)\n", " }\n", " root.Bokeh = Bokeh;\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " }\n", " root._bokeh_is_initializing = false\n", " }\n", "\n", " function load_or_wait() {\n", " // Implement a backoff loop that tries to ensure we do not load multiple\n", " // versions of Bokeh and its dependencies at the same time.\n", " // In recent versions we use the root._bokeh_is_initializing flag\n", " // to determine whether there is an ongoing attempt to initialize\n", " // bokeh, however for backward compatibility we also try to ensure\n", " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n", " // before older versions are fully initialized.\n", " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n", " // If the timeout and bokeh was not successfully loaded we reset\n", " // everything and try loading again\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_is_initializing = false;\n", " root._bokeh_onload_callbacks = undefined;\n", " root._bokeh_is_loading = 0\n", " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n", " load_or_wait();\n", " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n", " setTimeout(load_or_wait, 100);\n", " } else {\n", " root._bokeh_is_initializing = true\n", " root._bokeh_onload_callbacks = []\n", " const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n", " if (!reloading && !bokeh_loaded) {\n", " if (root.Bokeh) {\n", " root.Bokeh = undefined;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " }\n", " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", " }\n", " // Give older versions of the autoload script a head-start to ensure\n", " // they initialize before we start loading newer version.\n", " setTimeout(load_or_wait, 100)\n", "}(window));" ], "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = false;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", "}\n", "\n", "\n", " function JupyterCommManager() {\n", " }\n", "\n", " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " comm_manager.register_target(comm_id, function(comm) {\n", " comm.on_msg(msg_handler);\n", " });\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", " comm.onMsg = msg_handler;\n", " });\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " console.log(message)\n", " var content = {data: message.data, comm_id};\n", " var buffers = []\n", " for (var buffer of message.buffers || []) {\n", " buffers.push(new DataView(buffer))\n", " }\n", " var metadata = message.metadata || {};\n", " var msg = {content, buffers, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " })\n", " }\n", " }\n", "\n", " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", " if (comm_id in window.PyViz.comms) {\n", " return window.PyViz.comms[comm_id];\n", " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", " if (msg_handler) {\n", " comm.on_msg(msg_handler);\n", " }\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", " comm.open();\n", " if (msg_handler) {\n", " comm.onMsg = msg_handler;\n", " }\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", " comm_promise.then((comm) => {\n", " window.PyViz.comms[comm_id] = comm;\n", " if (msg_handler) {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " var content = {data: message.data};\n", " var metadata = message.metadata || {comm_id};\n", " var msg = {content, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " }\n", " }) \n", " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", " return comm_promise.then((comm) => {\n", " comm.send(data, metadata, buffers, disposeOnDone);\n", " });\n", " };\n", " var comm = {\n", " send: sendClosure\n", " };\n", " }\n", " window.PyViz.comms[comm_id] = comm;\n", " return comm;\n", " }\n", " window.PyViz.comm_manager = new JupyterCommManager();\n", " \n", "\n", "\n", "var JS_MIME_TYPE = 'application/javascript';\n", "var HTML_MIME_TYPE = 'text/html';\n", "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", "var CLASS_NAME = 'output';\n", "\n", "/**\n", " * Render data to the DOM node\n", " */\n", "function render(props, node) {\n", " var div = document.createElement(\"div\");\n", " var script = document.createElement(\"script\");\n", " node.appendChild(div);\n", " node.appendChild(script);\n", "}\n", "\n", "/**\n", " * Handle when a new output is added\n", " */\n", "function handle_add_output(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", " return\n", " }\n", " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", " if (id !== undefined) {\n", " var nchildren = toinsert.length;\n", " var html_node = toinsert[nchildren-1].children[0];\n", " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", " var scripts = [];\n", " var nodelist = html_node.querySelectorAll(\"script\");\n", " for (var i in nodelist) {\n", " if (nodelist.hasOwnProperty(i)) {\n", " scripts.push(nodelist[i])\n", " }\n", " }\n", "\n", " scripts.forEach( function (oldScript) {\n", " var newScript = document.createElement(\"script\");\n", " var attrs = [];\n", " var nodemap = oldScript.attributes;\n", " for (var j in nodemap) {\n", " if (nodemap.hasOwnProperty(j)) {\n", " attrs.push(nodemap[j])\n", " }\n", " }\n", " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", " oldScript.parentNode.replaceChild(newScript, oldScript);\n", " });\n", " if (JS_MIME_TYPE in output.data) {\n", " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", " }\n", " output_area._hv_plot_id = id;\n", " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", " window.PyViz.plot_index[id] = Bokeh.index[id];\n", " } else {\n", " window.PyViz.plot_index[id] = null;\n", " }\n", " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", "}\n", "\n", "/**\n", " * Handle when an output is cleared or removed\n", " */\n", "function handle_clear_output(event, handle) {\n", " var id = handle.cell.output_area._hv_plot_id;\n", " var server_id = handle.cell.output_area._bokeh_server_id;\n", " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", " if (server_id !== null) {\n", " comm.send({event_type: 'server_delete', 'id': server_id});\n", " return;\n", " } else if (comm !== null) {\n", " comm.send({event_type: 'delete', 'id': id});\n", " }\n", " delete PyViz.plot_index[id];\n", " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", " var doc = window.Bokeh.index[id].model.document\n", " doc.clear();\n", " const i = window.Bokeh.documents.indexOf(doc);\n", " if (i > -1) {\n", " window.Bokeh.documents.splice(i, 1);\n", " }\n", " }\n", "}\n", "\n", "/**\n", " * Handle kernel restart event\n", " */\n", "function handle_kernel_cleanup(event, handle) {\n", " delete PyViz.comms[\"hv-extension-comm\"];\n", " window.PyViz.plot_index = {}\n", "}\n", "\n", "/**\n", " * Handle update_display_data messages\n", " */\n", "function handle_update_output(event, handle) {\n", " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n", " handle_add_output(event, handle)\n", "}\n", "\n", "function register_renderer(events, OutputArea) {\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[0]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " events.on('output_added.OutputArea', handle_add_output);\n", " events.on('output_updated.OutputArea', handle_update_output);\n", " events.on('clear_output.CodeCell', handle_clear_output);\n", " events.on('delete.Cell', handle_clear_output);\n", " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n", "\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " safe: true,\n", " index: 0\n", " });\n", "}\n", "\n", "if (window.Jupyter !== undefined) {\n", " try {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " } catch(err) {\n", " }\n", "}\n" ], "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n" }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "(function(root) {\n", " function now() {\n", " return new Date();\n", " }\n", "\n", " const force = false;\n", " const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n", " const reloading = true;\n", " const Bokeh = root.Bokeh;\n", "\n", " // Set a timeout for this load but only if we are not already initializing\n", " if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_failed_load = false;\n", " }\n", "\n", " function run_callbacks() {\n", " try {\n", " root._bokeh_onload_callbacks.forEach(function(callback) {\n", " if (callback != null)\n", " callback();\n", " });\n", " } finally {\n", " delete root._bokeh_onload_callbacks;\n", " }\n", " console.debug(\"Bokeh: all callbacks have finished\");\n", " }\n", "\n", " function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n", " if (css_urls == null) css_urls = [];\n", " if (js_urls == null) js_urls = [];\n", " if (js_modules == null) js_modules = [];\n", " if (js_exports == null) js_exports = {};\n", "\n", " root._bokeh_onload_callbacks.push(callback);\n", "\n", " if (root._bokeh_is_loading > 0) {\n", " // Don't load bokeh if it is still initializing\n", " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", " return null;\n", " } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n", " // There is nothing to load\n", " run_callbacks();\n", " return null;\n", " }\n", "\n", " function on_load() {\n", " root._bokeh_is_loading--;\n", " if (root._bokeh_is_loading === 0) {\n", " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", " run_callbacks()\n", " }\n", " }\n", " window._bokeh_on_load = on_load\n", "\n", " function on_error(e) {\n", " const src_el = e.srcElement\n", " console.error(\"failed to load \" + (src_el.href || src_el.src));\n", " }\n", "\n", " const skip = [];\n", " if (window.requirejs) {\n", " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n", " root._bokeh_is_loading = css_urls.length + 0;\n", " } else {\n", " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n", " }\n", "\n", " const existing_stylesheets = []\n", " const links = document.getElementsByTagName('link')\n", " for (let i = 0; i < links.length; i++) {\n", " const link = links[i]\n", " if (link.href != null) {\n", " existing_stylesheets.push(link.href)\n", " }\n", " }\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const escaped = encodeURI(url)\n", " if (existing_stylesheets.indexOf(escaped) !== -1) {\n", " on_load()\n", " continue;\n", " }\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.rel = \"stylesheet\";\n", " element.type = \"text/css\";\n", " element.href = url;\n", " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", " document.body.appendChild(element);\n", " } var existing_scripts = []\n", " const scripts = document.getElementsByTagName('script')\n", " for (let i = 0; i < scripts.length; i++) {\n", " var script = scripts[i]\n", " if (script.src != null) {\n", " existing_scripts.push(script.src)\n", " }\n", " }\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (let i = 0; i < js_modules.length; i++) {\n", " const url = js_modules[i];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.src = url;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\n", " for (const name in js_exports) {\n", " const url = js_exports[name];\n", " const escaped = encodeURI(url)\n", " if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n", " if (!window.requirejs) {\n", " on_load();\n", " }\n", " continue;\n", " }\n", " var element = document.createElement('script');\n", " element.onerror = on_error;\n", " element.async = false;\n", " element.type = \"module\";\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " element.textContent = `\n", " import ${name} from \"${url}\"\n", " window.${name} = ${name}\n", " window._bokeh_on_load()\n", " `\n", " document.head.appendChild(element);\n", " }\n", " if (!js_urls.length && !js_modules.length) {\n", " on_load()\n", " }\n", " };\n", "\n", " function inject_raw_css(css) {\n", " const element = document.createElement(\"style\");\n", " element.appendChild(document.createTextNode(css));\n", " document.body.appendChild(element);\n", " }\n", "\n", " const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n", " const js_modules = [];\n", " const js_exports = {};\n", " const css_urls = [];\n", " const inline_js = [ function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", "function(Bokeh) {} // ensure no trailing comma for IE\n", " ];\n", "\n", " function run_inline_js() {\n", " if ((root.Bokeh !== undefined) || (force === true)) {\n", " for (let i = 0; i < inline_js.length; i++) {\n", " try {\n", " inline_js[i].call(root, root.Bokeh);\n", " } catch(e) {\n", " if (!reloading) {\n", " throw e;\n", " }\n", " }\n", " }\n", " // Cache old bokeh versions\n", " if (Bokeh != undefined && !reloading) {\n", " var NewBokeh = root.Bokeh;\n", " if (Bokeh.versions === undefined) {\n", " Bokeh.versions = new Map();\n", " }\n", " if (NewBokeh.version !== Bokeh.version) {\n", " Bokeh.versions.set(NewBokeh.version, NewBokeh)\n", " }\n", " root.Bokeh = Bokeh;\n", " }\n", " } else if (Date.now() < root._bokeh_timeout) {\n", " setTimeout(run_inline_js, 100);\n", " } else if (!root._bokeh_failed_load) {\n", " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", " root._bokeh_failed_load = true;\n", " }\n", " root._bokeh_is_initializing = false\n", " }\n", "\n", " function load_or_wait() {\n", " // Implement a backoff loop that tries to ensure we do not load multiple\n", " // versions of Bokeh and its dependencies at the same time.\n", " // In recent versions we use the root._bokeh_is_initializing flag\n", " // to determine whether there is an ongoing attempt to initialize\n", " // bokeh, however for backward compatibility we also try to ensure\n", " // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n", " // before older versions are fully initialized.\n", " if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n", " // If the timeout and bokeh was not successfully loaded we reset\n", " // everything and try loading again\n", " root._bokeh_timeout = Date.now() + 5000;\n", " root._bokeh_is_initializing = false;\n", " root._bokeh_onload_callbacks = undefined;\n", " root._bokeh_is_loading = 0\n", " console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n", " load_or_wait();\n", " } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n", " setTimeout(load_or_wait, 100);\n", " } else {\n", " root._bokeh_is_initializing = true\n", " root._bokeh_onload_callbacks = []\n", " const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n", " if (!reloading && !bokeh_loaded) {\n", " if (root.Bokeh) {\n", " root.Bokeh = undefined;\n", " }\n", " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", " }\n", " load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n", " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", " run_inline_js();\n", " });\n", " }\n", " }\n", " // Give older versions of the autoload script a head-start to ensure\n", " // they initialize before we start loading newer version.\n", " setTimeout(load_or_wait, 100)\n", "}(window));" ], "application/vnd.holoviews_load.v0+json": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = false;\n const py_version = '3.6.0'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.3/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));" }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/javascript": [ "\n", "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", "}\n", "\n", "\n", " function JupyterCommManager() {\n", " }\n", "\n", " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " comm_manager.register_target(comm_id, function(comm) {\n", " comm.on_msg(msg_handler);\n", " });\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", " comm.onMsg = msg_handler;\n", " });\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " console.log(message)\n", " var content = {data: message.data, comm_id};\n", " var buffers = []\n", " for (var buffer of message.buffers || []) {\n", " buffers.push(new DataView(buffer))\n", " }\n", " var metadata = message.metadata || {};\n", " var msg = {content, buffers, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " })\n", " }\n", " }\n", "\n", " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", " if (comm_id in window.PyViz.comms) {\n", " return window.PyViz.comms[comm_id];\n", " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", " if (msg_handler) {\n", " comm.on_msg(msg_handler);\n", " }\n", " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", " comm.open();\n", " if (msg_handler) {\n", " comm.onMsg = msg_handler;\n", " }\n", " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", " comm_promise.then((comm) => {\n", " window.PyViz.comms[comm_id] = comm;\n", " if (msg_handler) {\n", " var messages = comm.messages[Symbol.asyncIterator]();\n", " function processIteratorResult(result) {\n", " var message = result.value;\n", " var content = {data: message.data};\n", " var metadata = message.metadata || {comm_id};\n", " var msg = {content, metadata}\n", " msg_handler(msg);\n", " return messages.next().then(processIteratorResult);\n", " }\n", " return messages.next().then(processIteratorResult);\n", " }\n", " }) \n", " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", " return comm_promise.then((comm) => {\n", " comm.send(data, metadata, buffers, disposeOnDone);\n", " });\n", " };\n", " var comm = {\n", " send: sendClosure\n", " };\n", " }\n", " window.PyViz.comms[comm_id] = comm;\n", " return comm;\n", " }\n", " window.PyViz.comm_manager = new JupyterCommManager();\n", " \n", "\n", "\n", "var JS_MIME_TYPE = 'application/javascript';\n", "var HTML_MIME_TYPE = 'text/html';\n", "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", "var CLASS_NAME = 'output';\n", "\n", "/**\n", " * Render data to the DOM node\n", " */\n", "function render(props, node) {\n", " var div = document.createElement(\"div\");\n", " var script = document.createElement(\"script\");\n", " node.appendChild(div);\n", " node.appendChild(script);\n", "}\n", "\n", "/**\n", " * Handle when a new output is added\n", " */\n", "function handle_add_output(event, handle) {\n", " var output_area = handle.output_area;\n", " var output = handle.output;\n", " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", " return\n", " }\n", " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", " if (id !== undefined) {\n", " var nchildren = toinsert.length;\n", " var html_node = toinsert[nchildren-1].children[0];\n", " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", " var scripts = [];\n", " var nodelist = html_node.querySelectorAll(\"script\");\n", " for (var i in nodelist) {\n", " if (nodelist.hasOwnProperty(i)) {\n", " scripts.push(nodelist[i])\n", " }\n", " }\n", "\n", " scripts.forEach( function (oldScript) {\n", " var newScript = document.createElement(\"script\");\n", " var attrs = [];\n", " var nodemap = oldScript.attributes;\n", " for (var j in nodemap) {\n", " if (nodemap.hasOwnProperty(j)) {\n", " attrs.push(nodemap[j])\n", " }\n", " }\n", " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", " oldScript.parentNode.replaceChild(newScript, oldScript);\n", " });\n", " if (JS_MIME_TYPE in output.data) {\n", " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", " }\n", " output_area._hv_plot_id = id;\n", " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", " window.PyViz.plot_index[id] = Bokeh.index[id];\n", " } else {\n", " window.PyViz.plot_index[id] = null;\n", " }\n", " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", " var bk_div = document.createElement(\"div\");\n", " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", " var script_attrs = bk_div.children[0].attributes;\n", " for (var i = 0; i < script_attrs.length; i++) {\n", " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", " }\n", " // store reference to server id on output_area\n", " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", " }\n", "}\n", "\n", "/**\n", " * Handle when an output is cleared or removed\n", " */\n", "function handle_clear_output(event, handle) {\n", " var id = handle.cell.output_area._hv_plot_id;\n", " var server_id = handle.cell.output_area._bokeh_server_id;\n", " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", " if (server_id !== null) {\n", " comm.send({event_type: 'server_delete', 'id': server_id});\n", " return;\n", " } else if (comm !== null) {\n", " comm.send({event_type: 'delete', 'id': id});\n", " }\n", " delete PyViz.plot_index[id];\n", " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", " var doc = window.Bokeh.index[id].model.document\n", " doc.clear();\n", " const i = window.Bokeh.documents.indexOf(doc);\n", " if (i > -1) {\n", " window.Bokeh.documents.splice(i, 1);\n", " }\n", " }\n", "}\n", "\n", "/**\n", " * Handle kernel restart event\n", " */\n", "function handle_kernel_cleanup(event, handle) {\n", " delete PyViz.comms[\"hv-extension-comm\"];\n", " window.PyViz.plot_index = {}\n", "}\n", "\n", "/**\n", " * Handle update_display_data messages\n", " */\n", "function handle_update_output(event, handle) {\n", " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n", " handle_add_output(event, handle)\n", "}\n", "\n", "function register_renderer(events, OutputArea) {\n", " function append_mime(data, metadata, element) {\n", " // create a DOM node to render to\n", " var toinsert = this.create_output_subarea(\n", " metadata,\n", " CLASS_NAME,\n", " EXEC_MIME_TYPE\n", " );\n", " this.keyboard_manager.register_events(toinsert);\n", " // Render to node\n", " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", " render(props, toinsert[0]);\n", " element.append(toinsert);\n", " return toinsert\n", " }\n", "\n", " events.on('output_added.OutputArea', handle_add_output);\n", " events.on('output_updated.OutputArea', handle_update_output);\n", " events.on('clear_output.CodeCell', handle_clear_output);\n", " events.on('delete.Cell', handle_clear_output);\n", " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n", "\n", " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", " safe: true,\n", " index: 0\n", " });\n", "}\n", "\n", "if (window.Jupyter !== undefined) {\n", " try {\n", " var events = require('base/js/events');\n", " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", " register_renderer(events, OutputArea);\n", " }\n", " } catch(err) {\n", " }\n", "}\n" ], "application/vnd.holoviews_load.v0+json": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n" }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "✅ All modules loaded successfully\n", "CPU times: user 19.6 s, sys: 3.66 s, total: 23.3 s\n", "Wall time: 14.7 s\n" ] } ], "source": [ "%%time\n", "%matplotlib inline\n", "\n", "import importlib\n", "import new_import_ODC \n", "\n", "importlib.reload(new_import_ODC)\n", "\n", "from new_import_ODC import *\n", "\n", "print(\"✅ All modules loaded successfully\")" ] }, { "cell_type": "code", "execution_count": 2, "id": "d824dc4f-994b-4d1c-8d24-ce6674da141c", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "✅ AWS credentials loaded from environment variables\n", "✅ Dask cluster initialized\n", " Cluster: LocalCluster(dfbcdfce, 'tcp://127.0.0.1:39761', workers=4, threads=40, memory=128.00 GiB)\n", "✅ S3 access configured (requester_pays=True)\n", "✅ Datacube connected (metadata only)\n", "\n", "======================================================================\n", "CPU times: user 1.29 s, sys: 97.1 ms, total: 1.39 s\n", "Wall time: 6.79 s\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "2026-03-01 10:28:48,712 - distributed.scheduler - WARNING - Removing worker 'tcp://127.0.0.1:44715' caused the cluster to lose already computed task(s), which will be recomputed elsewhere: {('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 80, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 84, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 69, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 87, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 101, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 84, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 74, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 59, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 92, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 92, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 76, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 94, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 84, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 94, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 117, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 56, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 94, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 8, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 66, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 84, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 85, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 6, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 85, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 92, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 93, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 86, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 15, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 86, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 94, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 84, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 72, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 72, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 96, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 88, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 90, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 66, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 93, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 84, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 6, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 68, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 76, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 9, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 68, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 76, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 5, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 90, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 58, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 13, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 96, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 92, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 58, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 109, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 1, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 86, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 92, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 54, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 71, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 86, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 6, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 82, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 98, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 98, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 72, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 92, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 98, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 94, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 8, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 66, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 84, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 90, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 92, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 91, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 93, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 94, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 64, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 77, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 92, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 84, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 82, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 94, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 88, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 35, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 6, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 63, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 88, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 91, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 107, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 90, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 21, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 74, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 65, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 65, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 90, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 66, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 94, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 99, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 98, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 94, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 63, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 98, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 117, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 117, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 103, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 88, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 11, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 70, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 89, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 51, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 56, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 54, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 71, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 92, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 92, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 86, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 117, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 3, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 21, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 31, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 57, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 101, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 21, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 92, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 45, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 55, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 119, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 74, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 96, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 83, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 82, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 68, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 90, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 92, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 6, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 86, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 68, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 11, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 98, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 67, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 41, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 76, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 98, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 88, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 6, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 98, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 88, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 17, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 111, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 90, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 58, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 96, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 96, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 90, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 23, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 56, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 84, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 109, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 74, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 94, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 92, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 6, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 23, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 92, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 88, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 84, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 88, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 25, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 96, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 6, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 78, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 84, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 90, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 21, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 90, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 49, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 64, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 92, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 82, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 37, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 64, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 82, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 99, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 98, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 7, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 5, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 98, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 84, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 107, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 21, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 85, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 117, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 56, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 82, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 73, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 82, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 84, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 56, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 29, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 83, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 90, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 86, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 76, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 56, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 88, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 86, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 86, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 76, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 92, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 80, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 65, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 96, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 96, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 90, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 58, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 101, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 72, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 90, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 90, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 73, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 64, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 90, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 64, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 64, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 6, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 84, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 96, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 82, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 56, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 82, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 105, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 92, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 88, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 68, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 98, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 101, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 92, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 92, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 74, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 64, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 92, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 82, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 6, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 96, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 98, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 5, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 96, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 98, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 90, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 84, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 74, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 6, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 74, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 64, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 64, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 82, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 109, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 88, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 86, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 98, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 90, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 56, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 90, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 113, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 66, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 92, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 93, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 90, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 119, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 92, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 96, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 84, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 86, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 94, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 31, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 25, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 98, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 88, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 54, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 3, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 56, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 79, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 37, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 90, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 90, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 68, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 85, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 6, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 27, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 65, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 54, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 92, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 92, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 61, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 68, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 39, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 92, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 56, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 56, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 86, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 6, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 98, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 98, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 58, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 72, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 90, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 98, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 72, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 45, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 36, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 39, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 64, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 57, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 96, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 92, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 86, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 6, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 105, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 84, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 64, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 71, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 73, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 105, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 57, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 47, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 98, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 6, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 98, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 98, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 58, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 72, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 96, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 56, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 6, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 64, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 45, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 92, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 82, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 73, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 19, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 92, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 88, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 98, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 78, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 31, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 107, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 72, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 88, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 98, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 84, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 53, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 107, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 98, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 90, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 8, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 56, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 36, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 54, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 29, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 56, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 64, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 55, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 54, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 82, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 64, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 55, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 84, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 3, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 94, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 88, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 88, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 79, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 56, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 80, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 59, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 64, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 56, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 6, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 96, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 96, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 66, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 71, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 92, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 56, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 115, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 96, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 56, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 49, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 107, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 54, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 90, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 98, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 78, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 96, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 90, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 90, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 70, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 90, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 78, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 92, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 56, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 82, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 94, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 88, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 88, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 95, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 6, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 98, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 73, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 62, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 62, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 88, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 88, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 27, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 5, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 84, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 94, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 90, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 39, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 64, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 74, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 64, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 92, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 98, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 98, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 88, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 78, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 54, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 98, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 72, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 96, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 90, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 84, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 73, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 23, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 6, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 82, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 88, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 86, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 88, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 80, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 88, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 89, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 98, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 98, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 113, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 13, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 90, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 90, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 94, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 96, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 56, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 72, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 72, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 78, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 96, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 96, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 56, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 99, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 79, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 62, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 90, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 8, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 27, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 96, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 47, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 90, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 103, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 76, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 36, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 54, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 54, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 96, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 92, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 86, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 56, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 96, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 86, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 61, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 78, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 98, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 96, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 98, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 98, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 98, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 98, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 53, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 78, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 37, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 72, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 43, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 97, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 92, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 78, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 96, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 55, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 86, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 82, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 64, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 64, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 29, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 88, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 78, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 96, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 88, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 98, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 88, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 87, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 98, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 98, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 77, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 33, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 36, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 54, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 94, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 92, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 25, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 45, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 82, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 87, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 54, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 45, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 86, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 101, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 88, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 86, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 94, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 78, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 69, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 98, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 98, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 94, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 66, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 84, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 96, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 56, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 90, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 77, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 90, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 59, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 76, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 93, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 94, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 56, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 61, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 25, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 86, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 6, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 117, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 88, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 8, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 98, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 72, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 72, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 65, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 27, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 72, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 101, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 58, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 86, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 92, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 96, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 86, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 69, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 84, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 92, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 79, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 96, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 54, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 113, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 96, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 88, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 84, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 96, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 96, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 58, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 87, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 96, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 92, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 115, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 96, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 63, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 9, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 88, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 88, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 98, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 98, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 98, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 92, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 62, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 88, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 92, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 51, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 54, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 54, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 86, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 77, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 92, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 92, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 86, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 37, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 98, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 78, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 70, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 98, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 76, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 35, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 98, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 84, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 8, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 84, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 6, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 17, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 86, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 86, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 86, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 88, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 111, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 98, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 96, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 90, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 43, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 96, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 65, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 72, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 78, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 86, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 96, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 86, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 76, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 86, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 9, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 56, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 94, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 62, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 62, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 96, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 62, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 94, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 54, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 82, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 86, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 96, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 92, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 1, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 78, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 92, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 21, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 57, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 98, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 98, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 88, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 98, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 78, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 92, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 91, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 43, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 96, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 98, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 58, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 78, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 92, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 94, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 64, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 80, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 29, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 84, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 67, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 92, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 68, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 76, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 94, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 54, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 66, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 88, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 88, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 69, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 84, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 92, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 94, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 1, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 86, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 92, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 86, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 86, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 94, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 78, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 101, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 78, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 94, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 49, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 84, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 90, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 88, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 103, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 58, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 94, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 86, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 86, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 94, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 86, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 41, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 56, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 85, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 69, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 94, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 88, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 31, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 98, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 96, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 68, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 119, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 23, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 25, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 65, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 35, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 51, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 92, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 82, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 109, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 19, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 33, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 58, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 58, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 92, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 86, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 84, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 57, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 95, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 41, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 86, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 61, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 84, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 59, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 63, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 92, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 98, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 62, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 88, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 62, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 96, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 88, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 99, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 96, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 119, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 74, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 64, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 80, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 94, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 98, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 92, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 84, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 21, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 92, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 3, 2)} (stimulus_id='handle-worker-cleanup-1772360928.701275')\n", "2026-03-01 10:28:48,986 - distributed.scheduler - WARNING - Removing worker 'tcp://127.0.0.1:42765' caused the cluster to lose already computed task(s), which will be recomputed elsewhere: {('mul-5e8ecacc0eb9b53407629d26667be169', 1, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 57, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 77, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 97, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 101, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 66, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 15, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 33, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 94, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 78, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 88, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 111, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 91, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 23, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 113, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 107, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 88, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 68, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 119, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 7, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 8, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 8, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 92, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 1, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 13, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 39, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 92, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 77, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 93, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 111, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 55, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 5, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 78, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 94, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 41, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 68, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 94, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 78, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 117, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 23, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 43, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 117, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 97, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 70, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 25, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 58, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 58, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 93, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 103, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 25, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 83, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 103, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 91, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 101, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 92, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 25, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 94, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 117, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 94, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 7, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 5, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 117, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 15, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 70, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 41, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 7, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 15, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 51, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 33, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 79, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 69, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 31, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 59, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 49, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 5, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 7, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 66, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 23, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 25, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 85, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 96, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 51, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 93, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 99, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 6, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 78, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 58, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 96, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 58, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 84, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 67, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 85, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 94, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 49, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 85, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 41, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 76, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 94, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 59, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 97, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 94, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 94, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 94, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 92, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 15, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 88, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 7, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 43, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 92, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 68, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 7, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 55, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 33, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 25, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 71, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 51, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 83, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 94, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 13, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 77, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 1, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 33, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 58, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 97, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 92, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 75, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 67, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 95, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 57, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 95, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 111, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 6, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 23, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 78, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 58, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 61, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 101, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 81, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 49, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 119, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 88, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 7, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 111, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 89, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 99, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 96, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 13, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 49, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 11, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 58, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 67, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 75, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 58, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 73, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 6, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 84, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 76, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 94, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 57, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 2, 4), 'dataset-7296c62310555ebba1fa87ffc05a54f7', ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 68, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 101, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 68, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 33, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 59, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 15, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 97, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 107, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 49, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 59, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 25, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 103, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 84, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 101, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 83, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 83, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 91, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 77, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 73, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 39, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 76, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 94, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 7, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 84, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 69, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 11, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 5, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 94, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 92, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 107, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 94, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 31, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 117, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 87, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 75, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 72, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 91, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 17, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 85, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 99, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 58, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 25, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 91, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 85, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 41, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 88, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 15, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 6, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 94, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 76, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 47, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 117, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 49, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 94, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 51, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 98, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 91, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 109, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 1, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 96, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 21, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 23, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 5, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 83, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 119, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 92, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 77, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 99, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 58, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 21, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 13, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 31, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 84, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 96, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 92, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 67, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 93, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 31, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 57, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 85, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 94, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 78, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 23, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 91, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 81, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 117, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 33, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 15, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 5, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 6, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 64, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 92, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 13, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 3, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 77, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 9, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 73, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 64, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 77, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 1, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 47, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 71, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 75, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 65, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 6, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 63, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 98, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 94, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 23, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 31, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 23, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 109, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 5, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 58, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 49, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 81, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 73, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 39, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 87, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 6, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 73, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 78, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 88, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 11, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 94, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 23, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 21, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 79, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 6, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 117, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 66, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 97, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 83, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 73, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 21, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 99, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 25, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 64, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 103, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 92, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 65, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 74, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 7, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 101, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 65, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 25, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 92, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 119, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 3, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 76, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 94, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 89, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 51, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 69, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 107, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 75, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 58, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 70, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 72, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 55, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 81, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 113, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 99, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 119, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 3, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 31, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 61, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 109, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 59, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 41, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 76, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 71, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 99, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 92, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 97, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 9, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 88, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 21, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 72, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 57, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 6, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 72, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 15, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 27, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 88, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 99, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 81, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 7, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 91, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 71, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 37, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 115, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 68, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 83, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 71, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 3, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 77, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 58, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 71, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 75, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 105, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 115, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 101, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 88, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 113, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 93, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 37, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 63, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 98, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 84, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 63, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 73, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 81, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 53, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 5, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 107, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 58, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 91, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 89, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 96, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 117, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 64, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 61, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 87, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 13, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 39, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 105, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 82, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 47, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 6, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 105, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 37, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 76, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 73, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 63, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 88, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 39, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 117, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 88, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 107, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 94, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 71, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 87, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 97, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 107, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 115, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 5, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 36, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 90, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 59, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 94, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 64, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 81, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 13, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 19, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 55, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 73, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 31, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 94, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 79, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 105, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 97, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 87, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 67, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 31, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 45, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 91, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 6, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 11, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 1, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 9, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 63, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 45, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 63, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 89, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 64, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 96, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 109, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 31, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 71, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 115, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 3, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 94, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 47, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 71, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 65, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 99, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 115, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 3, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 11, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 79, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 39, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 1, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 107, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 37, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 81, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 25, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 96, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 23, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 58, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 101, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 99, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 81, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 55, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 27, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 99, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 89, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 13, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 29, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 82, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 67, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 47, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 66, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 93, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 3, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 98, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 88, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 63, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 103, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 53, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 51, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 105, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 37, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 17, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 23, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 58, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 33, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 89, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 5, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 94, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 94, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 65, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 64, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 39, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 109, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 29, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 3, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 1, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 37, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 70, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 57, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 37, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 43, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 88, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 88, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 6, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 51, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 107, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 49, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 72, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 90, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 107, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 87, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 45, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 92, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 9, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 87, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 1, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 82, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 73, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 96, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 93, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 109, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 78, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 47, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 88, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 79, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 67, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 99, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 117, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 35, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 97, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 3, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 6, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 89, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 117, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 77, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 107, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 13, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 45, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 90, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 13, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 27, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 90, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 25, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 92, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 63, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 39, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 21, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 11, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 31, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 78, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 98, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 49, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 89, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 97, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 87, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 17, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 87, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 17, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 90, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 93, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 35, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 45, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 88, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 119, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 8, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 70, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 27, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 23, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 71, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 81, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 1, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 96, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 97, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 59, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 115, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 113, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 39, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 47, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 11, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 98, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 80, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 78, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 53, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 27, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 97, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 109, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 61, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 13, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 115, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 25, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 71, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 103, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 61, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 19, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 33, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 87, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 77, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 105, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 39, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 37, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 55, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 3, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 95, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 95, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 73, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 78, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 5, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 94, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 53, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 71, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 78, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 61, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 58, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 115, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 61, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 53, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 119, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 13, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 64, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 115, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 11, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 36, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 9, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 80, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 64, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 35, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 67, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 98, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 29, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 21, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 6, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 65, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 25, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 109, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 89, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 39, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 83, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 105, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 37, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 64, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 37, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 70, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 53, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 15, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 69, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 97, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 53, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 107, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 51, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 31, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 8, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 107, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 1, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 65, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 70, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 90, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 113, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 19, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 63, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 73, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 55, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 55, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 1, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 73, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 7, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 61, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 79, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 78, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 79, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 3, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 25, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 47, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 89, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 21, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 97, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 79, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 87, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 117, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 67, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 97, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 70, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 93, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 27, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 45, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 65, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 72, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 1, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 113, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 115, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 70, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 89, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 113, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 111, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 45, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 109, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 64, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 13, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 78, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 92, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 92, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 95, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 94, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 3, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 97, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 59, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 95, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 41, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 98, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 88, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 51, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 75, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 103, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 92, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 97, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 96, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 81, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 88, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 107, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 72, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 27, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 71, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 5, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 58, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 81, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 81, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 36, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 90, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 33, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 87, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 95, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 1, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 37, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 67, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 73, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 29, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 11, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 88, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 98, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 79, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 94, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 61, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 15, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 53, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 81, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 51, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 67, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 21, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 80, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 1, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 29, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 77, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 95, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 1, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 9, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 70, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 69, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 92, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 79, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 8, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 84, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 63, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 53, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 78, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 5, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 49, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 96, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 113, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 79, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 90, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 113, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 72, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 55, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 73, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 96, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 25, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 89, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 3, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 94, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 63, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 117, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 89, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 94, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 87, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 59, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 27, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 70, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 90, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 25, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 109, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 96, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 103, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 27, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 70, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 94, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 51, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 113, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 95, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 64, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 96, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 49, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 61, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 87, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 98, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 17, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 103, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 93, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 35, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 43, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 8, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 75, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 9, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 93, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 27, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 53, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 97, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 35, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 94, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 58, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 97, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 77, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 3, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 41, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 41, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 76, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 41, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 94, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 95, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 75, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 113, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 59, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 85, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 78, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 94, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 27, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 94, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 62, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 9, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 111, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 109, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 66, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 77, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 27, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 81, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 7, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 96, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 84, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 45, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 1, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 75, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 111, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 64, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 97, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 77, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 95, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 111, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 75, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 55, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 87, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 94, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 88, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 94, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 69, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 88, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 68, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 43, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 53, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 33, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 23, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 58, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 88, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 43, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 23, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 96, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 97, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 117, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 77, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 61, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 119, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 61, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 51, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 55, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 94, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 49, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 47, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 101, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 89, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 9, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 49, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 94, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 35, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 70, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 69, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 94, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 113, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 33, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 69, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 79, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 78, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 75, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 77, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 113, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 93, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 59, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 94, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 25, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 103, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 72, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 1, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 113, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 93, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 89, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 95, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 41, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 7, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 5, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 79, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 59, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 69, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 61, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 69, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 79, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 85, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 59, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 88, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 6, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 21, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 88, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 75, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 111, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 27, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 51, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 53, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 88, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 43, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 97, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 27, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 35, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 85, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 36, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 58, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 36, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 77, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 58, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 92, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 41, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 41, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 33, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 115, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 95, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 75, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 113, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 9, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 117, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 25, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 9, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 33, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 5, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 77, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 119, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 27, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 53, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 78, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 61, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 101, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 84, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 43, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 68, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 67, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 6, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 97, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 75, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 29, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 9, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 87, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 111, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 75, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 78, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 77, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 88, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 95, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 94, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 33, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 78, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 68, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 15, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 15, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 68, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 53, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 111, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 71, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 97, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 15, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 91, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 6, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 94, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 25, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 45, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 72, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 77, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 63, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 35, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 25, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 69, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 84, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 94, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 87, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 43, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 68, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 78, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 69, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 5, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 76, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 94, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 82, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 113, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 33, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 96, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 117, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 66, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 8, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 35, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 80, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 8, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 93, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 103, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 78, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 63, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 93, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 27, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 76, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 61, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 76, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 59, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 15, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 21, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 49, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 94, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 21, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 117, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 5, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 69, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 78, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 72, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 36, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 98, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 94, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 94, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 7, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 27, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 83, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 103, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 25, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 78, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 23, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 94, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 31, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 94, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 86, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 49, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 75, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 107, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 111, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 91, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 101, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 15, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 119, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 23, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 8, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 68, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 75, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 59, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 96, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 17, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 55, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 27, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 23, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 68, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 97, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 91, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 94, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 51, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 33, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 78, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 35, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 6, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 84, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 84, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 57, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 85, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 41, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 94, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 95, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 85, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 94, 3, 1)} (stimulus_id='handle-worker-cleanup-1772360928.9742627')\n", "2026-03-01 10:28:49,222 - distributed.scheduler - WARNING - Removing worker 'tcp://127.0.0.1:41927' caused the cluster to lose already computed task(s), which will be recomputed elsewhere: {('mul-59af5c4f86e024e9b8e252d130814635', 6, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 109, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 6, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 72, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 115, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 39, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 19, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 75, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 79, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 43, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 107, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 33, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 101, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 5, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 90, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 56, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 93, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 73, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 76, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 21, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 72, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 84, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 109, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 35, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 58, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 76, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 49, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 91, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 75, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 91, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 6, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 77, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 41, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 21, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 41, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 23, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 101, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 99, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 82, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 57, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 29, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 57, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 57, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 76, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 85, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 23, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 91, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 117, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 43, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 80, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 92, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 115, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 5, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 107, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 90, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 107, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 83, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 82, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 73, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 97, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 86, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 62, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 117, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 97, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 80, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 7, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 13, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 109, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 89, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 85, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 56, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 119, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 99, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 6, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 59, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 91, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 13, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 67, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 85, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 54, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 107, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 87, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 33, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 13, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 89, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 56, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 84, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 54, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 84, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 95, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 113, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 93, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 37, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 49, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 31, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 63, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 117, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 81, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 109, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 29, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 73, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 99, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 31, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 6, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 53, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 79, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 11, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 39, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 82, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 45, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 45, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 65, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 45, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 93, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 55, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 91, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 31, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 11, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 81, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 53, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 58, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 13, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 109, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 83, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 64, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 37, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 57, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 56, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 115, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 90, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 47, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 70, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 59, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 82, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 13, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 97, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 45, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 95, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 97, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 87, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 21, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 113, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 72, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 72, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 72, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 63, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 96, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 23, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 54, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 31, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 31, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 54, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 53, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 79, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 62, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 70, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 74, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 82, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 29, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 75, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 56, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 61, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 89, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 88, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 23, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 115, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 97, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 61, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 6, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 87, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 64, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 70, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 54, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 71, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 61, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 19, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 35, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 63, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 76, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 15, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 59, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 82, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 62, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 72, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 62, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 89, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 97, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 84, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 87, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 96, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 80, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 67, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 113, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 1, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 72, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 63, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 45, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 27, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 71, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 67, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 47, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 71, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 11, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 62, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 54, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 17, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 37, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 17, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 37, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 80, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 99, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 74, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 3, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 47, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 54, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 111, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 75, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 13, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 36, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 115, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 117, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 19, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 19, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 19, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 45, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 105, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 107, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 87, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 117, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 111, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 71, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 27, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 54, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 55, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 55, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 35, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 77, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 19, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 83, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 86, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 79, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 87, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 8, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 82, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 62, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 72, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 53, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 13, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 17, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 61, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 113, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 62, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 68, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 51, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 13, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 87, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 95, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 105, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 69, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 78, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 53, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 73, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 36, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 19, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 86, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 53, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 33, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 8, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 35, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 19, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 59, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 7, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 87, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 15, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 69, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 97, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 8, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 117, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 1, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 55, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 35, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 63, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 61, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 17, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 17, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 51, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 9, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 68, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 85, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 53, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 77, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 36, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 109, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 72, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 105, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 75, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 79, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 101, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 111, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 29, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 93, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 19, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 63, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 45, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 89, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 87, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 84, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 35, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 59, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 91, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 7, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 68, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 75, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 7, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 62, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 33, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 41, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 61, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 41, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 59, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 75, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 54, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 43, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 65, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 7, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 119, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 77, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 57, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 57, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 54, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 80, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 23, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 91, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 53, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 43, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 80, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 111, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 9, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 5, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 101, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 93, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 35, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 93, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 117, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 27, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 93, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 70, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 119, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 76, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 41, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 59, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 76, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 55, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 43, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 58, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 82, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 75, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 71, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 41, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 33, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 76, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 67, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 9, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 117, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 43, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 65, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 91, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 71, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 33, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 90, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 11, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 91, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 113, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 57, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 93, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 73, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 57, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 76, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 15, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 1, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 81, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 8, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 119, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 99, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 103, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 83, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 67, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 59, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 99, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 69, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 95, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 21, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 35, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 56, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 82, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 61, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 103, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 17, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 109, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 86, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 41, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 101, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 55, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 7, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 9, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 13, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 82, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 33, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 79, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 23, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 64, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 85, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 49, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 84, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 64, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 49, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 25, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 54, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 9, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 111, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 113, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 73, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 15, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 117, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 7, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 15, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 117, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 49, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 72, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 81, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 8, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 72, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 75, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 93, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 55, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 73, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 103, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 83, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 7, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 31, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 56, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 3, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 31, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 6, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 69, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 54, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 53, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 79, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 115, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 65, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 7, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 13, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 58, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 67, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 47, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 89, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 9, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 37, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 58, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 55, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 109, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 84, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 101, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 57, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 57, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 67, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 71, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 91, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 107, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 66, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 101, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 63, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 76, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 5, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 117, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 39, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 62, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 105, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 29, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 56, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 91, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 89, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 97, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 31, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 37, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 117, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 62, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 80, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 55, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 45, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 25, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 45, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 63, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 23, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 63, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 96, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 82, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 55, 3, 2), ('valid_mask-valid_mask_0-mul-17306507b9081d12f78ac755173c00bc', 54, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 71, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 47, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 67, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 11, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 62, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 54, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 37, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 27, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 65, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 45, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 80, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 82, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 119, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 13, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 3, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 73, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 23, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 33, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 13, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 23, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 13, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 29, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 65, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 45, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 73, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 84, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 68, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 21, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 80, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 111, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 31, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 55, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 83, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 63, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 84, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 47, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 107, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 11, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 117, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 82, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 62, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 62, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 113, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 99, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 13, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 82, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 88, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 79, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 105, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 31, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 80, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 25, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 23, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 58, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 13, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 82, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 19, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 67, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 65, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 59, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 54, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 81, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 37, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 17, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 55, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 49, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 3, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 47, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 95, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 73, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 27, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 53, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 33, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 72, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 72, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 54, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 36, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 70, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 19, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 95, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 19, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 43, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 8, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 21, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 87, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 80, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 55, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 63, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 35, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 47, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 115, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 3, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 86, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 91, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 71, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 55, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 82, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 3, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 107, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 88, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 71, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 61, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 51, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 90, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 87, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 54, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 73, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 19, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 37, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 56, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 53, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 87, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 109, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 36, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 33, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 11, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 93, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 72, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 95, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 59, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 43, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 105, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 69, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 87, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 77, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 70, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 80, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 27, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 80, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 51, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 35, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 76, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 86, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 71, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 75, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 69, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 61, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 7, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 25, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 85, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 3, 3), ('mul-9197912adfc0e0773586d54190f95bec', 70, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 77, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 105, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 78, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 68, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 55, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 115, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 13, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 36, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 88, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 19, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 1, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 63, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 53, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 51, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 96, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 54, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 55, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 78, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 87, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 8, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 87, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 113, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 83, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 101, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 96, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 76, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 59, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 80, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 59, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 62, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 72, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 27, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 27, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 61, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 68, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 78, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 95, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 117, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 59, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 61, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 71, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 61, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 65, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 91, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 85, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 19, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 95, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 29, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 9, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 73, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 57, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 41, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 99, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 25, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 27, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 7, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 80, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 53, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 97, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 87, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 59, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 1, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 58, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 11, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 69, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 41, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 88, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 58, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 17, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 8, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 70, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 65, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 86, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 57, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 41, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 59, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 80, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 62, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 109, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 55, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 83, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 72, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 27, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 7, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 58, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 33, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 35, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 95, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 76, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 81, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 91, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 43, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 61, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 115, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 49, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 67, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 57, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 70, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 15, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 35, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 15, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 41, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 8, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 77, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 70, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 8, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 99, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 84, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 25, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 41, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 51, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 79, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 15, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 115, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 25, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 86, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 95, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 89, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 9, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 54, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 84, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 33, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 95, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 105, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 85, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 65, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 95, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 67, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 6, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 80, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 77, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 43, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 84, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 47, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 101, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 33, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 59, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 119, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 115, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 35, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 101, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 17, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 45, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 105, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 49, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 29, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 67, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 29, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 91, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 49, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 117, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 91, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 15, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 90, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 39, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 8, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 65, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 45, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 85, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 107, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 31, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 86, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 31, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 11, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 90, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 62, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 82, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 119, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 73, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 91, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 99, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 119, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 21, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 47, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 75, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 13, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 33, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 99, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 6, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 8, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 29, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 56, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 88, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 67, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 47, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 57, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 86, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 75, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 33, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 8, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 21, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 90, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 90, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 83, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 83, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 73, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 49, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 97, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 86, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 68, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 115, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 17, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 7, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 109, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 45, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 25, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 23, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 82, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 86, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 37, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 3, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 105, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 65, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 69, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 107, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 47, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 11, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 9, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 54, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 73, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 99, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 82, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 37, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 21, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 86, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 73, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 5, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 27, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 53, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 23, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 115, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 33, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 84, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 36, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 97, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 70, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 39, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 90, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 80, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 77, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 72, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 55, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 63, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 55, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 96, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 83, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 49, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 119, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 21, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 74, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 29, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 85, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 80, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 91, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 55, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 56, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 105, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 3, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 84, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 115, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 71, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 47, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 91, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 61, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 71, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 54, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 23, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 54, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 37, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 49, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 107, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 53, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 79, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 5, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 84, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 73, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 39, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 36, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 62, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 27, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 53, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 45, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 8, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 65, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 45, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 72, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 97, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 93, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 56, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 76, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 80, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 69, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 49, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 62, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 80, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 72, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 89, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 73, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 55, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 35, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 21, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 76, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 79, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 79, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 103, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 62, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 71, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 83, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 113, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 93, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 53, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 81, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 91, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 71, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 13, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 36, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 80, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 105, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 39, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 79, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 39, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 63, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 117, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 115, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 71, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 51, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 90, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 63, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 96, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 36, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 73, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 37, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 41, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 107, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 5, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 90, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 115, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 113, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 11, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 29, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 19, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 54, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 86, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 17, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 82, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 80, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 72, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 3, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 113, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 27, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 72, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 82, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 3, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 21, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 19, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 70, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 78, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 75, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 79, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 71, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 107, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 87, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 101, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 85, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 37, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 70, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 1, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 113, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 80, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 93, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 35, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 72, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 8, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 70, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 73, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 43, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 117, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 79, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 59, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 6, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 88, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 54, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 29, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 73, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 86, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 69, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 11, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 69, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 25, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 87, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 78, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 8, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 62, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 70, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 111, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 95, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 56, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 37, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 21, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 80, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 62, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 109, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 81, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 36, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 103, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 83, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 27, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 27, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 95, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 70, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 69, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 95, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 67, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 95, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 91, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 23, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 62, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 61, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 109, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 80, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 62, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 71, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 6, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 85, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 70, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 35, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 87, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 77, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 8, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 25, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 79, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 3, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 79, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 77, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 9, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 103, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 88, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 69, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 61, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 45, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 25, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 54, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 11, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 57, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 21, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 61, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 51, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 113, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 119, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 109, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 83, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 59, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 101, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 8, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 36, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 23, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 90, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 119, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 67, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 85, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 54, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 111, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 25, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 80, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 91, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 35, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 70, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 39, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 61, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 25, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 64, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 31, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 79, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 72, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 119, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 58, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 27, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 35, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 119, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 25, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 51, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 3, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 95, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 58, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 81, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 58, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 49, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 70, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 13, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 67, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 29, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 43, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 111, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 113, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 119, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 103, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 84, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 80, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 83, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 8, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 67, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 47, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 103, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 59, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 87, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 67, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 57, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 67, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 75, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 86, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 39, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 70, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 15, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 33, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 77, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 43, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 103, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 29, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 90, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 101, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 19, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 49, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 9, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 117, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 86, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 69, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 59, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 1, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 91, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 115, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 85, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 113, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 109, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 35, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 103, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 83, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 39, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 65, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 31, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 105, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 107, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 31, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 9, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 90, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 70, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 73, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 99, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 77, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 47, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 33, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 109, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 13, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 8, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 54, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 57, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 67, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 101, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 53, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 8, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 35, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 86, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 77, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 88, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 6, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 83, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 47, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 76, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 59, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 49, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 107, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 7, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 119, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 21, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 119, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 83, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 17, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 41, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 82, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 5, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 49, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 117, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 86, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 21, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 109, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 62, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 99, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 83, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 90, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 23, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 31, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 96, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 91, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 6, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 82, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 39, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 57, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 73, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 84, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 86, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 5, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 36, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 76, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 21, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 93, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 25, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 97, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 82, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 76, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 80, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 105, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 8, 2, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 90, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 8, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 96, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 55, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 85, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 5, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 76, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 49, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 99, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 59, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 51, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 65, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 101, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 7, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 71, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 85, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 119, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 58, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 82, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 82, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 84, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 72, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 109, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 93, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 80, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 7, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 115, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 99, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 83, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 57, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 82, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 57, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 79, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 39, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 91, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 13, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 37, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 115, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 39, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 19, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 74, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 57, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 105, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 47, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 75, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 63, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 117, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 107, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 23, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 107, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 87, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 84, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 5, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 62, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 90, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 70, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 83, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 93, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 109, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 29, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 73, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 4, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 97, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 31, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 7, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 82, 0, 3), ('valid_mask-valid_mask_0-mul-59af5c4f86e024e9b8e252d130814635', 54, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 76, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 117, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 58, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 113, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 72, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 35, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 86, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 89, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 58, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 82, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 64, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 85, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 65, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 115, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 79, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 82, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 37, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 21, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 95, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 109, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 5, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 90, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 93, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 115, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 84, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 70, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 82, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 57, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 37, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 57, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 37, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 63, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 23, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 53, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 43, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 71, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 63, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 29, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 80, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 80, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 73, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 90, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 76, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 99, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 39, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 39, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 87, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 62, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 84, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 65, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 84, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 111, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 29, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 3, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 23, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 113, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 97, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 57, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 41, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 97, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 92, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 13, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 103, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 47, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 7, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 86, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 58, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 71, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 86, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 69, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 113, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 95, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 65, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 56, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 96, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 1, 2), 'dataset-c040dde2107a5b629ebe18eef7b09e87', ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 67, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 77, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 9, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 80, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 107, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 5, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 62, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 97, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 8, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 8, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 72, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 90, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 37, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 76, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 107, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 43, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 63, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 84, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 90, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 8, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 65, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 109, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 29, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 9, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 73, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 80, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 56, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 99, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 79, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 39, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 82, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 107, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 62, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 70, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 25, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 62, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 65, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 96, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 54, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 31, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 11, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 3, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 21, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 53, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 27, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 80, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 81, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 99, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 31, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 95, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 54, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 79, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 87, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 43, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 86, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 90, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 119, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 29, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 55, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 54, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 63, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 85, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 9, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 2, 4), ('valid_mask-valid_mask_0-mul-59af5c4f86e024e9b8e252d130814635', 54, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 72, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 97, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 77, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 86, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 64, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 82, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 107, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 113, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 72, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 90, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 72, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 62, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 55, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 80, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 115, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 84, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 75, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 78, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 25, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 70, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 111, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 88, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 58, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 97, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 19, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 74, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 67, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 58, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 67, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 85, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 75, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 37, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 15, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 58, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 33, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 61, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 87, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 36, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 77, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 29, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 9, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 80, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 62, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 1, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 63, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 69, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 97, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 62, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 72, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 85, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 113, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 17, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 35, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 35, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 89, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 11, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 84, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 37, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 105, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 78, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 62, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 2, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 1, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 72, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 45, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 64, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 119, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 80, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 95, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 53, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 17, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 36, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 53, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 74, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 19, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 57, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 70, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 105, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 1, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 101, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 0, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 53, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 43, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 69, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 49, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 97, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 88, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 8, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 67, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 58, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 90, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 92, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 19, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 111, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 80, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 80, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 3, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 67, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 76, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 85, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 86, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 49, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 87, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 117, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 113, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 11, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 15, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 77, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 70, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 96, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 84, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 119, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 51, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 83, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 55, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 77, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 101, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 61, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 4, 3), ('mul-7484b202f20626d554911c93e63e5591', 25, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 86, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 117, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 69, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 8, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 76, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 93, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 7, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 35, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 103, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 19, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 1, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 51, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 82, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 6, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 69, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 43, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 119, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 119, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 51, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 13, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 82, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 67, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 6, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 90, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 85, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 76, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 105, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 1, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 57, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 55, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 80, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 69, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 53, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 84, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 75, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 2, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 39, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 70, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 59, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 58, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 111, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 51, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 7, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 5, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 5, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 84, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 49, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 49, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 59, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 82, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 62, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 35, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 58, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 83, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 119, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 99, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 41, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 41, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 82, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 103, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 8, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 7, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 119, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 90, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 7, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 54, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 77, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 82, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 9, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 85, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 75, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 79, 4, 0)} (stimulus_id='handle-worker-cleanup-1772360929.2066934')\n", "2026-03-01 10:28:49,850 - distributed.scheduler - WARNING - Removing worker 'tcp://127.0.0.1:45805' caused the cluster to lose already computed task(s), which will be recomputed elsewhere: {('mul-61cce248756c20f4ac6007e232b35693', 68, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 58, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 95, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 33, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 91, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 23, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 78, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 109, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 43, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 89, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 66, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 5, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 61, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 51, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 8, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 89, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 74, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 64, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 74, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 49, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 93, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 49, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 77, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 37, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 111, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 75, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 35, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 67, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 57, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 29, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 9, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 64, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 111, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 6, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 35, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 9, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 93, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 7, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 69, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 63, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 25, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 43, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 76, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 5, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 5, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 35, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 117, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 117, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 53, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 59, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 23, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 2, 2), 'dataset-dbe24658f81155b887e2edbdfa31575b', ('mul-9197912adfc0e0773586d54190f95bec', 69, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 15, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 79, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 97, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 77, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 91, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 64, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 66, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 68, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 59, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 83, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 21, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 83, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 47, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 6, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 51, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 65, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 7, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 35, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 68, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 68, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 101, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 66, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 76, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 49, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 68, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 89, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 5, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 31, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 11, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 107, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 15, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 115, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 69, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 72, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 117, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 74, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 1, 4), ('dc_load_red-c095915be78a450ebfd5b39a2038a452', 54, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 103, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 7, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 113, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 66, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 59, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 25, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 27, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 29, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 1, 2), ('dc_load_green-4d104488634c4d0a8e4eb5c19a923a81', 54, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 25, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 33, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 93, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 73, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 23, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 21, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 55, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 41, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 31, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 49, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 41, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 67, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 3, 3), ('mul-17306507b9081d12f78ac755173c00bc', 65, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 99, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 97, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 107, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 9, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 4, 4), ('mul-9197912adfc0e0773586d54190f95bec', 3, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 36, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 0, 3), ('dc_load_rededge3-f92625c329f44e53a71b27d6b6b71410', 54, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 57, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 119, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 119, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 109, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 9, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 27, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 33, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 47, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 7, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 109, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 70, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 65, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 27, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 7, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 71, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 109, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 78, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 83, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 84, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 76, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 115, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 13, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 85, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 13, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 89, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 66, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 57, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 65, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 19, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 85, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 33, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 85, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 78, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 15, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 68, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 23, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 23, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 81, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 5, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 99, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 61, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 91, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 119, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 119, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 109, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 15, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 23, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 77, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 91, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 6, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 35, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 29, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 9, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 93, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 13, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 67, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 47, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 77, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 85, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 0, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 75, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 63, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 117, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 65, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 21, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 15, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 15, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 73, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 91, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 66, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 71, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 91, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 77, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 73, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 91, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 113, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 89, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 66, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 56, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 5, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 83, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 97, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 56, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 57, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 93, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 4, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 39, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 91, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 101, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 57, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 36, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 93, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 66, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 51, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 15, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 49, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 66, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 31, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 49, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 69, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 15, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 21, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 76, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 85, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 5, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 5, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 79, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 107, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 79, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 59, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 39, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 117, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 77, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 66, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 29, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 68, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 66, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 73, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 25, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 65, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 58, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 63, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 109, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 85, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 83, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 55, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 93, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 73, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 29, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 101, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 65, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 83, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 74, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 109, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 41, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 41, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 99, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 9, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 67, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 65, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 49, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 76, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 7, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 66, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 5, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 75, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 31, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 39, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 15, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 78, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 37, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 68, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 45, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 119, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 99, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 81, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 99, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 63, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 113, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 75, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 83, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 13, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 83, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 33, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 13, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 57, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 41, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 21, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 36, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 75, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 85, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 66, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 41, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 11, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 85, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 75, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 31, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 62, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 76, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 56, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 107, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 73, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 71, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 68, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 3, 0), ('dc_load_rededge2-9714d18ec7f84d90a761503e27b176dd', 54, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 101, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 51, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 89, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 23, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 53, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 111, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 119, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 99, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 51, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 13, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 33, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 89, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 7, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 77, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 71, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 74, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 71, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 15, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 36, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 49, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 74, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 109, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 65, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 47, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 39, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 105, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 83, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 3, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 13, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 37, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 47, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 17, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 57, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 75, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 74, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 13, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 77, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 85, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 65, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 101, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 101, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 115, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 56, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 95, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 15, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 93, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 33, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 73, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 107, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 49, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 5, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 107, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 89, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 23, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 81, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 109, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 89, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 8, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 13, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 83, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 29, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 74, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 119, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 29, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 39, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 55, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 77, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 93, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 83, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 57, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 105, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 67, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 93, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 91, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 57, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 86, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 55, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 41, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 5, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 59, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 39, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 97, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 76, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 15, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 15, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 79, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 15, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 59, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 115, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 65, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 115, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 91, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 21, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 63, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 36, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 29, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 45, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 73, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 85, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 6, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 89, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 64, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 103, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 83, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 39, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 45, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 83, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 109, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 68, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 66, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 71, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 57, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 21, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 5, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 31, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 31, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 39, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 99, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 75, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 113, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 54, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 87, 2, 1), ('dc_load_swir22-e8477bdf61304a4e9cf66757f0b4d80a', 54, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 107, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 87, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 69, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 49, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 98, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 107, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 77, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 117, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 67, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 7, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 56, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 62, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 37, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 63, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 99, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 68, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 83, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 67, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 68, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 67, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 89, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 23, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 3, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 64, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 79, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 3, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 41, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 68, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 41, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 21, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 31, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 67, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 47, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 6, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 11, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 82, 1, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 101, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 15, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 62, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 91, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 62, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 31, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 33, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 13, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 33, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 47, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 55, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 36, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 119, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 58, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 3, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 36, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 81, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 99, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 1, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 109, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 82, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 57, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 47, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 54, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 80, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 36, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 3, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 39, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 65, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 113, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 65, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 37, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 71, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 67, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 75, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 98, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 65, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 93, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 66, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 23, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 76, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 81, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 81, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 99, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 66, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 99, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 91, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 115, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 59, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 53, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 81, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 74, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 33, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 6, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 97, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 5, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 29, 0, 2), ('dc_load_coastal-f81d65130f544836a8408d9b1aa9c820', 54, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 90, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 29, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 71, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 47, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 93, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 57, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 87, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 67, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 47, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 57, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 105, 4, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 66, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 6, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 89, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 117, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 5, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 23, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 87, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 73, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 98, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 53, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 53, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 53, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 107, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 51, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 97, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 117, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 11, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 94, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 1, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 88, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 107, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 3, 4), ('mul-17306507b9081d12f78ac755173c00bc', 115, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 36, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 72, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 62, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 63, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 70, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 36, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 36, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 71, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 65, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 70, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 63, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 19, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 39, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 83, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 77, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 25, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 29, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 73, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 54, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 73, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 56, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 19, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 89, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 91, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 63, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 31, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 4, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 66, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 11, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 69, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 79, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 107, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 43, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 107, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 89, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 117, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 41, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 85, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 99, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 107, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 87, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 59, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 70, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 58, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 117, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 55, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 80, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 47, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 69, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 55, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 65, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 55, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 83, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 109, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 73, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 29, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 55, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 51, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 83, 1, 4), ('mul-7484b202f20626d554911c93e63e5591', 83, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 74, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 56, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 3, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 56, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 19, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 21, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 56, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 79, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 31, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 76, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 47, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 101, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 21, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 1, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 75, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 37, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 17, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 72, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 71, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 85, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 62, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 75, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 117, 4, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 81, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 56, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 81, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 27, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 55, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 45, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 65, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 101, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 119, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 99, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 5, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 37, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 65, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 83, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 63, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 81, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 109, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 59, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 117, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 99, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 13, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 119, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 62, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 71, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 37, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 96, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 3, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 21, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 115, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 105, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 31, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 11, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 75, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 69, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 21, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 67, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 67, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 73, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 71, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 72, 4, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 17, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 91, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 117, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 62, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 59, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 73, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 91, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 13, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 64, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 31, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 115, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 36, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 53, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 54, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 33, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 97, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 36, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 54, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 21, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 39, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 3, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 19, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 57, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 37, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 3, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 37, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 47, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 57, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 54, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 97, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 70, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 105, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 68, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 57, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 101, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 3, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 113, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 19, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 56, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 53, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 39, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 89, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 71, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 87, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 11, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 5, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 78, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 87, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 101, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 87, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 115, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 21, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 36, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 57, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 13, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 23, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 8, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 36, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 61, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 36, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 31, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 81, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 54, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 13, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 66, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 55, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 115, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 11, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 113, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 19, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 5, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 59, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 64, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 11, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 99, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 55, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 93, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 87, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 29, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 37, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 95, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 93, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 91, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 63, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 67, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 29, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 105, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 0, 2), ('array-ea5d66946f3774d4b867f81c2c447097',), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 35, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 21, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 97, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 79, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 98, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 79, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 107, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 53, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 87, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 39, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 53, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 103, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 117, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 97, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 62, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 107, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 107, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 62, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 45, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 31, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 21, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 85, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 1, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 95, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 27, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 6, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 65, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 54, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 56, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 7, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 45, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 66, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 54, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 113, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 55, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 73, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 45, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 83, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 109, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 73, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 81, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 11, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 113, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 21, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 31, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 56, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 89, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 37, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 69, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 31, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 95, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 79, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 75, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 69, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 87, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 7, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 21, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 62, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 5, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 98, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 81, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 37, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 58, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 55, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 81, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 101, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 93, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 65, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 99, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 37, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 45, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 99, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 47, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 55, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 119, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 64, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 113, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 43, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 29, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 109, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 89, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 70, 4, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 101, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 13, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 76, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 6, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 72, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 3, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 3, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 81, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 56, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 61, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 29, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 78, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 79, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 9, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 65, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 61, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 3, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 95, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 95, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 31, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 79, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 85, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 109, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 103, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 101, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 15, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 3, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 57, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 115, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 111, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 53, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 33, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 27, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 33, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 13, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 36, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 81, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 56, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 78, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 27, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 21, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 36, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 61, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 41, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 99, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 89, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 36, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 2, 3), ('mul-9197912adfc0e0773586d54190f95bec', 72, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 19, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 39, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 51, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 39, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 64, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 54, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 4, 2), ('mul-7484b202f20626d554911c93e63e5591', 97, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 95, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 64, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 37, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 54, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 37, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 105, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 95, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 3, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 75, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 66, 2, 4), ('mul-61cce248756c20f4ac6007e232b35693', 95, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 81, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 70, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 115, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 47, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 19, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 109, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 43, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 105, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 25, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 109, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 63, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 105, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 19, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 39, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 27, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 69, 4, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 92, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 54, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 107, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 76, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 11, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 63, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 98, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 103, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 73, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 8, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 119, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 36, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 91, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 81, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 97, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 117, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 81, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 61, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 97, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 77, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 41, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 70, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 103, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 11, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 87, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 9, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 59, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 55, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 58, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 37, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 37, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 29, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 87, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 111, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 35, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 1, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 29, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 7, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 85, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 8, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 68, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 75, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 73, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 35, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 66, 0, 4), ('mul-61cce248756c20f4ac6007e232b35693', 43, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 56, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 89, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 117, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 69, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 5, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 31, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 39, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 53, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 103, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 63, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 33, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 107, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 13, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 97, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 77, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 107, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 5, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 69, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 87, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 107, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 62, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 115, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 47, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 72, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 90, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 45, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 59, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 74, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 63, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 5, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 103, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 103, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 17, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 8, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 113, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 19, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 35, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 25, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 7, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 61, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 1, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 54, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 15, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 27, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 25, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 45, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 89, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 17, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 63, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 73, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 15, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 11, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 56, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 56, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 11, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 109, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 11, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 5, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 25, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 69, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 3, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 85, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 13, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 39, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 103, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 39, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 19, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 92, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 117, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 6, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 37, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 37, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 17, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 95, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 68, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 62, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 62, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 27, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 49, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 61, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 35, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 109, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 78, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 61, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 47, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 27, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 35, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 65, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 45, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 89, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 2, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 41, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 105, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 3, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 71, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 68, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 3, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 101, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 39, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 21, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 113, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 79, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 31, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 11, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 4, 1), ('mul-61cce248756c20f4ac6007e232b35693', 113, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 47, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 95, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 11, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 37, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 79, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 59, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 95, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 54, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 69, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 62, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 115, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 82, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 9, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 43, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 4, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 4, 3), ('mul-9197912adfc0e0773586d54190f95bec', 33, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 5, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 87, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 27, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 21, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 13, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 27, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 89, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 70, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 67, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 61, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 81, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 119, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 45, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 101, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 72, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 99, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 93, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 13, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 119, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 93, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 87, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 99, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 5, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 119, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 19, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 31, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 1, 4), ('mul-61cce248756c20f4ac6007e232b35693', 37, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 105, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 76, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 3, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 95, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 29, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 76, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 105, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 119, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 3, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 0, 4), ('mul-9197912adfc0e0773586d54190f95bec', 63, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 3, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 3, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 68, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 9, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 67, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 6, 0, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 19, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 105, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 55, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 53, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 72, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 2, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 83, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 53, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 17, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 35, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 94, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 0, 4), ('mul-17306507b9081d12f78ac755173c00bc', 117, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 81, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 111, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 62, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 53, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 61, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 76, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 91, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 71, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 115, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 36, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 97, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 77, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 91, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 51, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 9, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 58, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 74, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 59, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 67, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 89, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 35, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 63, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 4, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 115, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 2, 3), ('mul-61cce248756c20f4ac6007e232b35693', 37, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 63, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 97, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 57, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 25, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 103, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 37, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 77, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 111, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 64, 0, 4), ('mul-7484b202f20626d554911c93e63e5591', 87, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 101, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 95, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 45, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 35, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 66, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 63, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 66, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 89, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 96, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 111, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 78, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 107, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 87, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 0, 0), ('dc_load_swir22-e8477bdf61304a4e9cf66757f0b4d80a', 54, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 43, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 68, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 107, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 107, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 77, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 79, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 72, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 83, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 4, 2), ('mul-61cce248756c20f4ac6007e232b35693', 70, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 117, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 70, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 115, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 4, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 75, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 83, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 11, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 80, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 11, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 39, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 99, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 35, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 73, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 103, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 91, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 17, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 93, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 55, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 35, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 111, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 111, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 63, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 41, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 65, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 59, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 70, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 43, 4, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 79, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 35, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 64, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 59, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 21, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 39, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 105, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 69, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 47, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 95, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 111, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 107, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 53, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 68, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 27, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 27, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 4, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 62, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 62, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 78, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 27, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 47, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 59, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 45, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 75, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 93, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 13, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 119, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 69, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 65, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 4, 0), ('mul-7484b202f20626d554911c93e63e5591', 83, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 25, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 76, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 25, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 81, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 61, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 68, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 54, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 35, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 4, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 72, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 113, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 51, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 76, 4, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 49, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 11, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 7, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 21, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 95, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 75, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 69, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 49, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 19, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 75, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 69, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 69, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 1, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 65, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 103, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 5, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 113, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 78, 0, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 81, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 78, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 81, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 43, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 111, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 109, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 70, 3, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 57, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 70, 3, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 119, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 119, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 78, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 91, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 27, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 77, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 115, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 53, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 71, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 81, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 93, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 61, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 43, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 8, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 35, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 2, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 58, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 51, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 78, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 74, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 67, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 3, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 29, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 54, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 54, 3, 4), ('mul-61cce248756c20f4ac6007e232b35693', 41, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 57, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 63, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 8, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 56, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 105, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 33, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 47, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 45, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 67, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 95, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 105, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 95, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 11, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 70, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 61, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 19, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 96, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 105, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 85, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 103, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 68, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 101, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 95, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 3, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 93, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 64, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 111, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 54, 0, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 62, 3, 4), ('mul-7484b202f20626d554911c93e63e5591', 53, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 68, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 62, 3, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 23, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 49, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 33, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 53, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 27, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 91, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 43, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 109, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 78, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 107, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 87, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 7, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 71, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 79, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 78, 2, 4), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 43, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 77, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 63, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 49, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 73, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 70, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 47, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 33, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 13, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 4, 1), ('mul-7484b202f20626d554911c93e63e5591', 87, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 17, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 78, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 35, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 2, 4), ('mul-7484b202f20626d554911c93e63e5591', 95, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 51, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 93, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 111, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 27, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 7, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 68, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 15, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 45, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 43, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 68, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 119, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 15, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 83, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 96, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 15, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 53, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 69, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 51, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 29, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 79, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 54, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 115, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 53, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 117, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 53, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 59, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 2, 3), ('mul-7484b202f20626d554911c93e63e5591', 66, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 91, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 91, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 64, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 53, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 3, 4), ('mul-9197912adfc0e0773586d54190f95bec', 77, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 97, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 70, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 66, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 115, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 62, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 70, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 103, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 9, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 59, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 35, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 1, 0), ('valid_mask-valid_mask_0-mul-5e8ecacc0eb9b53407629d26667be169', 54, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 67, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 67, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 45, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 117, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 25, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 45, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 59, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 87, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 62, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 19, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 1, 4), ('mul-9197912adfc0e0773586d54190f95bec', 83, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 107, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 63, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 35, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 1, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 41, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 35, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 113, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 51, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 66, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 56, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 117, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 7, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 15, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 43, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 21, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 69, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 5, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 15, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 69, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 0, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 1, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 15, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 95, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 103, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 113, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 31, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 79, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 77, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 11, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 8, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 62, 2, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 43, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 68, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 87, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 62, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 63, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 113, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 72, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 74, 4, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 95, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 54, 4, 4), ('mul-7484b202f20626d554911c93e63e5591', 66, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 103, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 74, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 103, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 35, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 45, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 81, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 74, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 7, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 35, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 27, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 2, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 17, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 66, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 35, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 55, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 77, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 63, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 33, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 119, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 71, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 93, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 66, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 119, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 101, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 111, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 78, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 3, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 7, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 111, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 56, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 105, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 105, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 49, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 64, 4, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 49, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 105, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 103, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 99, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 79, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 49, 4, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 76, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 103, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 113, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 59, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 1, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 31, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 105, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 109, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 113, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 4, 4), ('mul-61cce248756c20f4ac6007e232b35693', 17, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 85, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 3, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 33, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 4, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 51, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 9, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 27, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 27, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 80, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 17, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 11, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 109, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 71, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 93, 4, 1), ('mul-9197912adfc0e0773586d54190f95bec', 33, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 93, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 61, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 70, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 47, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 55, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 25, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 51, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 71, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 89, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 67, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 80, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 76, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 4, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 74, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 4, 2), ('mul-17306507b9081d12f78ac755173c00bc', 25, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 76, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 109, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 1, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 3, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 68, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 3, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 54, 1, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 115, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 0, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 99, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 13, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 41, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 13, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 66, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 63, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 56, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 97, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 77, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 9, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 105, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 59, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 95, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 68, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 105, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 101, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 80, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 0, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 11, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 49, 2, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 47, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 9, 1, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 65, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 113, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 111, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 47, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 29, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 2, 4), ('mul-17306507b9081d12f78ac755173c00bc', 113, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 4, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 70, 2, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 23, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 68, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 3, 2), ('valid_mask-valid_mask_0-mul-61cce248756c20f4ac6007e232b35693', 54, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 15, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 81, 0, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 7, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 85, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 61, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 105, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 99, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 81, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 81, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 61, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 43, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 4, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 109, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 23, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 1, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 68, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 74, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 119, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 68, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 117, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 4, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 53, 4, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 107, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 1, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 5, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 2, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 97, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 35, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 1, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 49, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 29, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 2, 3), ('mul-17306507b9081d12f78ac755173c00bc', 29, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 33, 4, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 72, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 64, 3, 1), 'dataset-63827483fc9a5a399db99afc518b79e0', ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 3, 3), ('mul-61cce248756c20f4ac6007e232b35693', 76, 3, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 3, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 33, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 93, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 62, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 41, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 4, 4), ('mul-17306507b9081d12f78ac755173c00bc', 67, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 54, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 33, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 47, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 25, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 41, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 111, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 99, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 67, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 54, 4, 3), ('mul-17306507b9081d12f78ac755173c00bc', 85, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 1, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 4, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 19, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 69, 3, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 45, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 1, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 35, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 43, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 1, 2), ('mul-61cce248756c20f4ac6007e232b35693', 33, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 59, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 79, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 78, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 23, 4, 0), ('mul-9197912adfc0e0773586d54190f95bec', 117, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 68, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 77, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 33, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 115, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 59, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 53, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 61, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 77, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 59, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 43, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 66, 0, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 105, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 74, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 4, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 89, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 27, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 59, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 21, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 1, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 74, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 74, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 79, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 62, 0, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 97, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 7, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 35, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 19, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 23, 4, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 39, 1, 3), ('mul-61cce248756c20f4ac6007e232b35693', 19, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 79, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 58, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 49, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 45, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 25, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 77, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 93, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 101, 2, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 71, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 9, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 54, 3, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 6, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 55, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 62, 2, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 111, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 101, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 89, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 73, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 9, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 7, 1, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 0, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 2, 4), ('mul-93bd1425993bab5c1189d2effbab35a6', 45, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 69, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 103, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 72, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 96, 4, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 98, 2, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 9, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 31, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 87, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 45, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 97, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 51, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 117, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 25, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 21, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 3, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 23, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 1, 0, 3), ('mul-17306507b9081d12f78ac755173c00bc', 78, 3, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 72, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 95, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 117, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 57, 0, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 43, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 69, 2, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 115, 1, 1), ('mul-7484b202f20626d554911c93e63e5591', 35, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 107, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 3, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 41, 3, 2), ('mul-9197912adfc0e0773586d54190f95bec', 58, 1, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 66, 1, 2), ('mul-7484b202f20626d554911c93e63e5591', 66, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 85, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 80, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 103, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 13, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 74, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 59, 1, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 75, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 97, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 107, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 21, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 2, 4), ('mul-59af5c4f86e024e9b8e252d130814635', 55, 0, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 59, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 39, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 62, 0, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 2, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 72, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 49, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 2, 0), ('mul-17306507b9081d12f78ac755173c00bc', 55, 1, 2), ('mul-9197912adfc0e0773586d54190f95bec', 119, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 85, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 91, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 78, 2, 1), ('mul-61cce248756c20f4ac6007e232b35693', 76, 1, 1), ('mul-61cce248756c20f4ac6007e232b35693', 111, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 59, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 55, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 35, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 49, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 101, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 83, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 9, 3, 2), ('mul-7484b202f20626d554911c93e63e5591', 93, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 47, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 25, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 91, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 7, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 63, 1, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 23, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 47, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 1, 0), ('mul-17306507b9081d12f78ac755173c00bc', 111, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 91, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 91, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 63, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 2, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 61, 0, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 99, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 66, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 74, 3, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 68, 4, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 2, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 85, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 37, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 76, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 89, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 64, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 70, 3, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 99, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 51, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 79, 2, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 4, 3), ('mul-61cce248756c20f4ac6007e232b35693', 117, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 67, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 85, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 76, 4, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 35, 2, 2), ('mul-7484b202f20626d554911c93e63e5591', 7, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 75, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 31, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 11, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 69, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 41, 3, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 8, 3, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 77, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 41, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 95, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 87, 2, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 1, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 68, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 66, 4, 2), ('mul-9197912adfc0e0773586d54190f95bec', 59, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 79, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 56, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 87, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 68, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 6, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 47, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 27, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 56, 2, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 105, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 1, 0), ('mul-61cce248756c20f4ac6007e232b35693', 7, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 67, 2, 2), ('mul-9197912adfc0e0773586d54190f95bec', 33, 1, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 61, 0, 3), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 74, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 27, 1, 1), ('mul-17306507b9081d12f78ac755173c00bc', 7, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 9, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 37, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 17, 4, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 70, 1, 4), ('mul-17306507b9081d12f78ac755173c00bc', 71, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 75, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 4, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 45, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 99, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 27, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 15, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 7, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 21, 3, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 95, 0, 1), ('mul-9197912adfc0e0773586d54190f95bec', 43, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 1, 0), ('mul-7484b202f20626d554911c93e63e5591', 66, 2, 4), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 91, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 71, 1, 0), ('mul-9197912adfc0e0773586d54190f95bec', 51, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 65, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 85, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 70, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 25, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 119, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 109, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 65, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 43, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 33, 0, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 103, 3, 1), ('mul-9197912adfc0e0773586d54190f95bec', 61, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 109, 1, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 57, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 83, 3, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 0, 0), ('mul-17306507b9081d12f78ac755173c00bc', 35, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 33, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 33, 1, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 113, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 78, 0, 3), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 68, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 97, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 119, 2, 0), ('mul-61cce248756c20f4ac6007e232b35693', 76, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 66, 3, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 39, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 33, 2, 1), ('mul-7484b202f20626d554911c93e63e5591', 13, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 1, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 17, 2, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 9, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 66, 3, 2), ('mul-61cce248756c20f4ac6007e232b35693', 76, 1, 4), ('mul-5e8ecacc0eb9b53407629d26667be169', 53, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 83, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 3, 3, 2), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 89, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 71, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 19, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 77, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 21, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 27, 0, 3), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 47, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 29, 3, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 109, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 49, 2, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 103, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 83, 0, 0), ('mul-61cce248756c20f4ac6007e232b35693', 85, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 41, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 111, 0, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 69, 2, 2), ('mul-17306507b9081d12f78ac755173c00bc', 31, 3, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 1, 1), ('mul-59af5c4f86e024e9b8e252d130814635', 7, 3, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 9, 3, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 92, 2, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 0, 2), ('mul-17306507b9081d12f78ac755173c00bc', 65, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 13, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 85, 0, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 74, 2, 4), ('mul-9197912adfc0e0773586d54190f95bec', 57, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 75, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 115, 2, 2), ('mul-61cce248756c20f4ac6007e232b35693', 78, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 111, 3, 1), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 101, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 75, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 49, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 39, 1, 3), ('mul-9197912adfc0e0773586d54190f95bec', 67, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 85, 1, 3), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 101, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 1, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 113, 3, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 83, 1, 2), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 2, 0), ('mul-9197912adfc0e0773586d54190f95bec', 41, 1, 3), ('mul-7484b202f20626d554911c93e63e5591', 43, 1, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 65, 3, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 68, 1, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 66, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 107, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 77, 0, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 87, 3, 1), ('mul-61cce248756c20f4ac6007e232b35693', 119, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 43, 2, 1), ('mul-17306507b9081d12f78ac755173c00bc', 68, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 37, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 51, 4, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 73, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 35, 3, 0), ('mul-9197912adfc0e0773586d54190f95bec', 78, 3, 3), ('mul-5e8ecacc0eb9b53407629d26667be169', 74, 1, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 25, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 5, 0, 1), ('mul-7484b202f20626d554911c93e63e5591', 109, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 0, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 66, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 27, 4, 1), ('mul-17306507b9081d12f78ac755173c00bc', 7, 4, 0), ('mul-61cce248756c20f4ac6007e232b35693', 109, 0, 1), ('mul-17306507b9081d12f78ac755173c00bc', 72, 3, 4), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 64, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 49, 0, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 63, 1, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 1, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 37, 2, 2), ('mul-59af5c4f86e024e9b8e252d130814635', 17, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 113, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 9, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 111, 1, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 35, 3, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 33, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 99, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 119, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 51, 0, 2), ('mul-6b7c0a46face68584fef31f3e4e9878b', 89, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 53, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 33, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 115, 1, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 51, 1, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 36, 3, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 59, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 68, 4, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 6, 3, 1), ('mul-17306507b9081d12f78ac755173c00bc', 7, 0, 2), ('mul-9197912adfc0e0773586d54190f95bec', 77, 0, 1), ('mul-61cce248756c20f4ac6007e232b35693', 74, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 69, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 109, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 23, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 71, 0, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 89, 1, 3), ('mul-6b7c0a46face68584fef31f3e4e9878b', 25, 2, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 69, 1, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 81, 2, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 8, 0, 2), ('mul-7484b202f20626d554911c93e63e5591', 74, 0, 0), ('mul-93bd1425993bab5c1189d2effbab35a6', 5, 1, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 13, 3, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 78, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 107, 2, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 111, 3, 1), ('mul-5e8ecacc0eb9b53407629d26667be169', 25, 0, 0), ('mul-5e8ecacc0eb9b53407629d26667be169', 43, 0, 2), ('mul-61cce248756c20f4ac6007e232b35693', 76, 3, 3), ('mul-7484b202f20626d554911c93e63e5591', 67, 2, 1), ('mul-9197912adfc0e0773586d54190f95bec', 74, 1, 2), ('mul-93bd1425993bab5c1189d2effbab35a6', 23, 1, 2), ('mul-17306507b9081d12f78ac755173c00bc', 9, 1, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 97, 0, 3), ('mul-61cce248756c20f4ac6007e232b35693', 13, 0, 1), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 7, 2, 0), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 19, 3, 0), ('mul-7484b202f20626d554911c93e63e5591', 97, 0, 3), ('mul-93bd1425993bab5c1189d2effbab35a6', 61, 2, 0), ('mul-59af5c4f86e024e9b8e252d130814635', 87, 2, 0), ('mul-7484b202f20626d554911c93e63e5591', 78, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 93, 0, 1), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 73, 0, 0), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 75, 0, 0), ('mul-9197912adfc0e0773586d54190f95bec', 29, 3, 0), ('mul-61cce248756c20f4ac6007e232b35693', 76, 4, 4), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 29, 1, 1), ('mul-9197912adfc0e0773586d54190f95bec', 83, 0, 0), ('mul-7484b202f20626d554911c93e63e5591', 23, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 3, 3, 0), ('mul-17306507b9081d12f78ac755173c00bc', 41, 2, 1), ('mul-93bd1425993bab5c1189d2effbab35a6', 64, 1, 1), ('mul-6b7c0a46face68584fef31f3e4e9878b', 1, 3, 0), ('mul-f63b61f3a84fcfb9fcc176be01c0d01b', 6, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 57, 3, 2), ('mul-17306507b9081d12f78ac755173c00bc', 57, 0, 0), ('mul-6b7c0a46face68584fef31f3e4e9878b', 82, 0, 3), ('mul-9197912adfc0e0773586d54190f95bec', 1, 0, 2), ('dc_load_scl-643a343962a24409af70ae1f6ddaa1f1', 101, 3, 1), ('mul-7484b202f20626d554911c93e63e5591', 19, 0, 3), ('mul-7484b202f20626d554911c93e63e5591', 33, 1, 3), ('mul-17306507b9081d12f78ac755173c00bc', 41, 3, 2), ('mul-28c1d50ccdc0e4d1684fbca11ba3a995', 119, 1, 0)} (stimulus_id='handle-worker-cleanup-1772360929.8375807')\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n", "Task exception was never retrieved\n", "future: .wait() done, defined at /env/lib/python3.12/site-packages/distributed/client.py:2391> exception=AllExit()>\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/client.py\", line 2400, in wait\n", " raise AllExit()\n", "distributed.client.AllExit\n" ] } ], "source": [ "%%time\n", "import os\n", "import sys\n", "\n", "print(\"✅ AWS credentials loaded from environment variables\")\n", "\n", "# Cấu hình Dask local\n", "from dask.distributed import Client, LocalCluster\n", "\n", "cluster = LocalCluster(n_workers=4)\n", "client = Client(cluster)\n", "print(\"✅ Dask cluster initialized\")\n", "print(f\" Cluster: {cluster}\")\n", "\n", "# Cấu hình S3 access cho rasterio/GDAL (bắt buộc để đọc COGs từ S3)\n", "configure_s3_access(aws_unsigned=False, requester_pays=True, client=client)\n", "print(\"✅ S3 access configured (requester_pays=True)\")\n", "\n", "# Khai báo Datacube (chỉ để lấy metadata, không dùng load())\n", "import datacube\n", "try:\n", " dc = datacube.Datacube()\n", " print(\"✅ Datacube connected (metadata only)\")\n", "except Exception as e:\n", " print(f\"⚠️ Datacube connection not critical: {e}\")\n", " dc = None\n", "\n", "print(\"\\n\" + \"=\"*70)\n" ] }, { "cell_type": "code", "execution_count": 3, "id": "1e113730", "metadata": { "jupyter": { "source_hidden": true }, "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "GETTING SENTINEL-2 SCENE METADATA\n", "======================================================================\n", "\n", "[1] Loading metadata from datacube...\n", " ✅ Found 180337 scenes\n", "\n", "[2] Selected scene: S2B_56MNC_20230525_0_L2A\n", " Date: 2023-05-25 00:17:32.223000+00:00\n", "\n", "[3] Available bands:\n", " - aot: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - nir: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - red: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - scl: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - wvp: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - blue: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - green: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - nir08: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - nir09: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - swir16: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - swir22: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - coastal: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - rededge1: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - rededge2: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", " - rededge3: s3://sentinel-cogs/sentinel-s2-l2a-cogs/56/M/NC/2023/5/S2B_56MNC_20230525_0_L2A/\n", "======================================================================\n", "CPU times: user 1min 36s, sys: 13 s, total: 1min 49s\n", "Wall time: 5min 16s\n" ] } ], "source": [ "%%time\n", "# 🔧 Get Sentinel-2 scene metadata from datacube\n", "print(\"=\"*70)\n", "print(\"GETTING SENTINEL-2 SCENE METADATA\")\n", "print(\"=\"*70)\n", "\n", "date_range = (\"2023-03-01\", \"2023-12-31\")\n", "longtitude_range = (105.5, 106.4)\n", "latitude_range = (9.2, 10.0)\n", "\n", "try:\n", " print(f\"\\n[1] Loading metadata from datacube...\")\n", " datasets = list(dc.find_datasets(product='s2_l2a', time=date_range))\n", " print(f\" ✅ Found {len(datasets)} scenes\")\n", " \n", " if datasets:\n", " selected = datasets[0]\n", " print(f\"\\n[2] Selected scene: {selected.metadata.label}\")\n", " scene_datetime = selected.time.begin if hasattr(selected.time, 'begin') else selected.time\n", " print(f\" Date: {scene_datetime}\")\n", " \n", " # Display measurement paths\n", " print(f\"\\n[3] Available bands:\")\n", " for name, measurement in selected.measurements.items():\n", " print(f\" - {name}: {measurement['path'][:80]}\")\n", " \n", "except Exception as e:\n", " print(f\"❌ Error: {e}\")\n", " import traceback\n", " traceback.print_exc()\n", "\n", "print(\"=\"*70)" ] }, { "cell_type": "code", "execution_count": 4, "id": "3cd69645", "metadata": { "jupyter": { "source_hidden": true } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "CHECKING FOR CACHED DATASET\n", "======================================================================\n", "\n", "⏳ Cache file not found: dataset_cache/sentinel2_timeseries_40scenes.nc\n", " Will download from S3 and save cache\n", " (Next run will use cache automatically)\n", "======================================================================\n", "CPU times: user 1.18 ms, sys: 0 ns, total: 1.18 ms\n", "Wall time: 6.01 ms\n" ] } ], "source": [ "%%time\n", "# 🔍 CHECK IF DATASET CACHE EXISTS (Skip download if available)\n", "print(\"=\"*70)\n", "print(\"CHECKING FOR CACHED DATASET\")\n", "print(\"=\"*70)\n", "\n", "import os\n", "import xarray as xr\n", "\n", "cache_dir = \"dataset_cache\"\n", "cache_file = f\"{cache_dir}/sentinel2_timeseries_40scenes.nc\"\n", "\n", "use_cache = False\n", "\n", "if os.path.exists(cache_file):\n", " print(f\"\\n✅ Cache file found: {cache_file}\")\n", " \n", " # Get file info\n", " file_size_gb = os.path.getsize(cache_file) / (1024**3)\n", " print(f\" File size: {file_size_gb:.2f} GB\")\n", " \n", " # Try to load\n", " try:\n", " print(f\"\\n🔄 Loading dataset from cache...\")\n", " data = xr.open_dataset(cache_file)\n", " \n", " print(f\"✅ Dataset loaded from cache!\")\n", " print(f\" Total scenes: {len(data['time'])}\")\n", " print(f\" Variables: {len(data.data_vars)}\")\n", " print(f\" Dimensions: {dict(data.dims)}\")\n", " print(f\"\\n ⏭️ Skipping S3 download (using cached data)\")\n", " \n", " use_cache = True\n", " \n", " except Exception as e:\n", " print(f\"❌ Error loading cache: {e}\")\n", " print(f\" Will download fresh data from S3\")\n", " use_cache = False\n", "else:\n", " print(f\"\\n⏳ Cache file not found: {cache_file}\")\n", " print(f\" Will download from S3 and save cache\")\n", " print(f\" (Next run will use cache automatically)\")\n", "\n", "print(\"=\"*70)" ] }, { "cell_type": "code", "execution_count": 5, "id": "435f9f78-a9a4-4226-86ca-d4bec42d454e", "metadata": { "jupyter": { "source_hidden": true }, "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "LOADING SENTINEL-2 DATA VIA dc.load() (ODC NATIVE)\n", "======================================================================\n", "\n", "[1] Finding native CRS...\n", " CRS: EPSG:32648\n", "\n", "[2] Loading data via dc.load() ...\n", " Region : lon=(105.5, 106.4), lat=(9.2, 10.0)\n", " Time : 2023-03-01 → 2023-12-31\n", " Bands : ['blue', 'green', 'red', 'nir', 'swir16', 'swir22', 'coastal', 'rededge1', 'rededge2', 'rededge3', 'scl']\n", "No datasets require offset correction\n", "The valid_data_mask and scale (no offset) have been applied to the reflectance bands\n", "\n", "✅ Loaded 121 scenes via dc.load()\n", " Dimensions: {'time': 121, 'y': 8874, 'x': 9902}\n", "\n", "[3] Computing (triggering Dask download)...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ ":59: FutureWarning: The return type of `Dataset.dims` will be changed to return a set of dimension names in future, in order to be more consistent with `DataArray.dims`. To access a mapping from dimension names to lengths, please use `Dataset.sizes`.\n", "/env/lib/python3.12/site-packages/distributed/client.py:3357: UserWarning: Sending large graph of size 10.86 MiB.\n", "This may cause some slowdown.\n", "Consider scattering data ahead of time and using futures.\n", " warnings.warn(\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2A_48PXS_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2B_48PWS_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2B_48PWR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/11/S2A_48PWS_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2A_48PXR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/11/S2A_48PWR_20231106_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/11/S2B_48PXS_20231101_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/11/S2B_48PXR_20231101_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231027_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231022_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231012_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231017_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231012_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2A_48PXS_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2A_48PWS_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2A_48PXR_20231007_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2A_48PWR_20231007_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/10/S2B_48PWS_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/10/S2B_48PWR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/10/S2B_48PXS_20231002_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/10/S2B_48PXR_20231002_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230927_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230927_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230922_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2A_48PXS_20230321_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2A_48PWS_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2A_48PXR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2A_48PWR_20230321_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230917_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230912_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230912_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230912_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2A_48PWS_20230907_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2A_48PXS_20230907_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2A_48PWR_20230907_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2A_48PXR_20230907_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/9/S2B_48PXS_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/9/S2B_48PWS_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/9/S2B_48PXR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/9/S2B_48PWR_20230902_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230828_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230823_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230818_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230818_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230818_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2B_48PXS_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2B_48PWS_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2B_48PXR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2B_48PWR_20230813_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/8/S2A_48PWS_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/8/S2A_48PWR_20230808_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/8/S2A_48PXS_20230808_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/8/S2A_48PXR_20230808_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/3/S2B_48PXS_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/3/S2B_48PXR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/3/S2B_48PWS_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/3/S2B_48PWR_20230316_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230729_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230729_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/SCL.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2B_48PXS_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2B_48PWS_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2B_48PXR_20230724_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2B_48PWR_20230724_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B11.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B07.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WS/2023/7/S2A_48PWS_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XS/2023/7/S2A_48PXS_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,693 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,694 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,695 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,695 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,695 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "2026-03-01 10:28:48,698 - distributed.worker.state_machine - WARNING - Async instruction for > ended with CancelledError\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B03.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B08.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/SCL.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B02.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B05.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B06.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B07.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/XR/2023/7/S2A_48PXR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "2026-03-01 10:28:49,170 - distributed.worker - ERROR - Failed to communicate with scheduler during heartbeat.\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/comm/tcp.py\", line 225, in read\n", " frames_nosplit_nbytes_bin = await stream.read_bytes(fmt_size)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", "tornado.iostream.StreamClosedError: Stream is closed\n", "\n", "The above exception was the direct cause of the following exception:\n", "\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/worker.py\", line 1250, in heartbeat\n", " response = await retry_operation(\n", " ^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/utils_comm.py\", line 459, in retry_operation\n", " return await retry(\n", " ^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/utils_comm.py\", line 438, in retry\n", " return await coro()\n", " ^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/core.py\", line 1254, in send_recv_from_rpc\n", " return await send_recv(comm=comm, op=key, **kwargs)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/core.py\", line 1013, in send_recv\n", " response = await comm.read(deserializers=deserializers)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/comm/tcp.py\", line 236, in read\n", " convert_stream_closed_error(self, e)\n", " File \"/env/lib/python3.12/site-packages/distributed/comm/tcp.py\", line 142, in convert_stream_closed_error\n", " raise CommClosedError(f\"in {obj}: {exc}\") from exc\n", "distributed.comm.core.CommClosedError: in : Stream is closed\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B11.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B01.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B04.tif\n", "Ignoring Exception: HTTP response code: 403\n", "Error opening source dataset: s3://sentinel-cogs/sentinel-s2-l2a-cogs/48/P/WR/2023/7/S2A_48PWR_20230719_0_L2A/B12.tif\n", "Ignoring Exception: VPC endpoints do not support cross-region requests\n", "Process Dask Worker process (from Nanny):\n", "2026-03-01 10:28:50,702 - distributed.nanny - ERROR - Worker process died unexpectedly\n", "2026-03-01 10:28:50,702 - distributed.nanny - ERROR - Worker process died unexpectedly\n", "Process Dask Worker process (from Nanny):\n", "Process Dask Worker process (from Nanny):\n", "Process Dask Worker process (from Nanny):\n", "2026-03-01 10:28:50,702 - distributed.nanny - ERROR - Worker process died unexpectedly\n", "Traceback (most recent call last):\n", "Traceback (most recent call last):\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 118, in run\n", "Traceback (most recent call last):\n", "Traceback (most recent call last):\n", "Traceback (most recent call last):\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 118, in run\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 118, in run\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 118, in run\n", " return self._loop.run_until_complete(task)\n", " return self._loop.run_until_complete(task)\n", " return self._loop.run_until_complete(task)\n", " return self._loop.run_until_complete(task)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/base_events.py\", line 687, in run_until_complete\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/base_events.py\", line 687, in run_until_complete\n", " File \"/usr/lib/python3.12/asyncio/base_events.py\", line 687, in run_until_complete\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/base_events.py\", line 687, in run_until_complete\n", " return future.result()\n", " return future.result()\n", " return future.result()\n", " ^^^^^^^^^^^^^^^\n", " return future.result()\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 981, in run\n", " ^^^^^^^^^^^^^^^\n", " ^^^^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 981, in run\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 981, in run\n", " ^^^^^^^^^^^^^^^\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 981, in run\n", " await worker.finished()\n", " await worker.finished()\n", " await worker.finished()\n", " File \"/env/lib/python3.12/site-packages/distributed/core.py\", line 489, in finished\n", " File \"/env/lib/python3.12/site-packages/distributed/core.py\", line 489, in finished\n", " File \"/env/lib/python3.12/site-packages/distributed/core.py\", line 489, in finished\n", " await worker.finished()\n", " File \"/env/lib/python3.12/site-packages/distributed/core.py\", line 489, in finished\n", " await self._event_finished.wait()\n", " await self._event_finished.wait()\n", " File \"/usr/lib/python3.12/asyncio/locks.py\", line 212, in wait\n", " await self._event_finished.wait()\n", " File \"/usr/lib/python3.12/asyncio/locks.py\", line 212, in wait\n", " await self._event_finished.wait()\n", " File \"/usr/lib/python3.12/asyncio/locks.py\", line 212, in wait\n", " File \"/usr/lib/python3.12/asyncio/locks.py\", line 212, in wait\n", " await fut\n", " await fut\n", " await fut\n", "asyncio.exceptions.CancelledError\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", "asyncio.exceptions.CancelledError\n", "asyncio.exceptions.CancelledError\n", "\n", "\n", "During handling of the above exception, another exception occurred:\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 1019, in _run\n", "During handling of the above exception, another exception occurred:\n", "\n", "\n", "Traceback (most recent call last):\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 1019, in _run\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 1019, in _run\n", " await fut\n", "asyncio.exceptions.CancelledError\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 1019, in _run\n", " asyncio_run(run(), loop_factory=get_loop_factory())\n", " asyncio_run(run(), loop_factory=get_loop_factory())\n", " asyncio_run(run(), loop_factory=get_loop_factory())\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 194, in run\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 194, in run\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 194, in run\n", " return runner.run(main)\n", " return runner.run(main)\n", " return runner.run(main)\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 123, in run\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 123, in run\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 123, in run\n", " raise KeyboardInterrupt()\n", " raise KeyboardInterrupt()\n", "KeyboardInterrupt\n", "\n", " raise KeyboardInterrupt()\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", "KeyboardInterrupt\n", "\n", "During handling of the above exception, another exception occurred:\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 314, in _bootstrap\n", "\n", "Traceback (most recent call last):\n", "KeyboardInterrupt\n", "\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 314, in _bootstrap\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 314, in _bootstrap\n", " asyncio_run(run(), loop_factory=get_loop_factory())\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 194, in run\n", " self.run()\n", " self.run()\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 108, in run\n", " self.run()\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 108, in run\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 108, in run\n", " self._target(*self._args, **self._kwargs)\n", " self._target(*self._args, **self._kwargs)\n", " self._target(*self._args, **self._kwargs)\n", " File \"/env/lib/python3.12/site-packages/distributed/process.py\", line 202, in _run\n", " return runner.run(main)\n", " File \"/env/lib/python3.12/site-packages/distributed/process.py\", line 202, in _run\n", " File \"/env/lib/python3.12/site-packages/distributed/process.py\", line 202, in _run\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/asyncio/runners.py\", line 123, in run\n", " target(*args, **kwargs)\n", " target(*args, **kwargs)\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 993, in _run\n", " target(*args, **kwargs)\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 993, in _run\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 993, in _run\n", " raise KeyboardInterrupt()\n", "KeyboardInterrupt\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 314, in _bootstrap\n", " self.run()\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 108, in run\n", " self._target(*self._args, **self._kwargs)\n", " File \"/env/lib/python3.12/site-packages/distributed/process.py\", line 202, in _run\n", " with contextlib.ExitStack() as stack:\n", " File \"/usr/lib/python3.12/contextlib.py\", line 610, in __exit__\n", " target(*args, **kwargs)\n", " File \"/env/lib/python3.12/site-packages/distributed/nanny.py\", line 993, in _run\n", " with contextlib.ExitStack() as stack:\n", " File \"/usr/lib/python3.12/contextlib.py\", line 610, in __exit__\n", " raise exc_details[1]\n", " File \"/usr/lib/python3.12/contextlib.py\", line 595, in __exit__\n", " raise exc_details[1]\n", " with contextlib.ExitStack() as stack:\n", " File \"/usr/lib/python3.12/contextlib.py\", line 610, in __exit__\n", " File \"/usr/lib/python3.12/contextlib.py\", line 595, in __exit__\n", " if cb(*exc_details):\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/contextlib.py\", line 478, in _exit_wrapper\n", " with contextlib.ExitStack() as stack:\n", " File \"/usr/lib/python3.12/contextlib.py\", line 610, in __exit__\n", " raise exc_details[1]\n", " if cb(*exc_details):\n", " File \"/usr/lib/python3.12/contextlib.py\", line 595, in __exit__\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/contextlib.py\", line 478, in _exit_wrapper\n", " callback(*args, **kwds)\n", " File \"/usr/lib/python3.12/threading.py\", line 1151, in join\n", " raise exc_details[1]\n", " callback(*args, **kwds)\n", " File \"/usr/lib/python3.12/contextlib.py\", line 595, in __exit__\n", " File \"/usr/lib/python3.12/threading.py\", line 1151, in join\n", " if cb(*exc_details):\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/contextlib.py\", line 478, in _exit_wrapper\n", " if cb(*exc_details):\n", " self._wait_for_tstate_lock(timeout=max(timeout, 0))\n", " ^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/contextlib.py\", line 478, in _exit_wrapper\n", " File \"/usr/lib/python3.12/threading.py\", line 1167, in _wait_for_tstate_lock\n", " self._wait_for_tstate_lock(timeout=max(timeout, 0))\n", " File \"/usr/lib/python3.12/threading.py\", line 1167, in _wait_for_tstate_lock\n", " callback(*args, **kwds)\n", " File \"/usr/lib/python3.12/threading.py\", line 1151, in join\n", " callback(*args, **kwds)\n", " File \"/usr/lib/python3.12/threading.py\", line 1151, in join\n", " if lock.acquire(block, timeout):\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", "KeyboardInterrupt\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", " File \"\", line 1, in \n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 122, in spawn_main\n", " if lock.acquire(block, timeout):\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " exitcode = _main(fd, parent_sentinel)\n", "KeyboardInterrupt\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", " self._wait_for_tstate_lock(timeout=max(timeout, 0))\n", "Traceback (most recent call last):\n", " File \"\", line 1, in \n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 122, in spawn_main\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 135, in _main\n", " File \"/usr/lib/python3.12/threading.py\", line 1167, in _wait_for_tstate_lock\n", " exitcode = _main(fd, parent_sentinel)\n", " return self._bootstrap(parent_sentinel)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 135, in _main\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 330, in _bootstrap\n", " return self._bootstrap(parent_sentinel)\n", " self._wait_for_tstate_lock(timeout=max(timeout, 0))\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 330, in _bootstrap\n", " traceback.print_exc()\n", " File \"/usr/lib/python3.12/traceback.py\", line 180, in print_exc\n", " File \"/usr/lib/python3.12/threading.py\", line 1167, in _wait_for_tstate_lock\n", " if lock.acquire(block, timeout):\n", " traceback.print_exc()\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " print_exception(sys.exception(), limit=limit, file=file, chain=chain)\n", "KeyboardInterrupt\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", " File \"/usr/lib/python3.12/traceback.py\", line 180, in print_exc\n", "Traceback (most recent call last):\n", " File \"\", line 1, in \n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 122, in spawn_main\n", " File \"/usr/lib/python3.12/traceback.py\", line 124, in print_exception\n", " print_exception(sys.exception(), limit=limit, file=file, chain=chain)\n", " exitcode = _main(fd, parent_sentinel)\n", " te = TracebackException(type(value), value, tb, limit=limit, compact=True)\n", " File \"/usr/lib/python3.12/traceback.py\", line 125, in print_exception\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 135, in _main\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 811, in __init__\n", " te.print(file=file, chain=chain)\n", " return self._bootstrap(parent_sentinel)\n", " File \"/usr/lib/python3.12/traceback.py\", line 1050, in print\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 330, in _bootstrap\n", " traceback.print_exc()\n", " File \"/usr/lib/python3.12/traceback.py\", line 180, in print_exc\n", " context = TracebackException(\n", " if lock.acquire(block, timeout):\n", " ^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 742, in __init__\n", " print_exception(sys.exception(), limit=limit, file=file, chain=chain)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", "KeyboardInterrupt\n", "\n", "During handling of the above exception, another exception occurred:\n", "\n", "Traceback (most recent call last):\n", " File \"/usr/lib/python3.12/traceback.py\", line 124, in print_exception\n", " print(line, file=file, end=\"\")\n", " File \"\", line 1, in \n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 122, in spawn_main\n", "KeyboardInterrupt\n", " te = TracebackException(type(value), value, tb, limit=limit, compact=True)\n", " self.__notes__ = getattr(exc_value, '__notes__', None)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 811, in __init__\n", " exitcode = _main(fd, parent_sentinel)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", "KeyboardInterrupt\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/spawn.py\", line 135, in _main\n", " return self._bootstrap(parent_sentinel)\n", " context = TracebackException(\n", " ^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 733, in __init__\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/multiprocessing/process.py\", line 330, in _bootstrap\n", " traceback.print_exc()\n", " self.stack = StackSummary._extract_from_extended_frame_gen(\n", " File \"/usr/lib/python3.12/traceback.py\", line 180, in print_exc\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 418, in _extract_from_extended_frame_gen\n", " print_exception(sys.exception(), limit=limit, file=file, chain=chain)\n", " for f, (lineno, end_lineno, colno, end_colno) in frame_gen:\n", " File \"/usr/lib/python3.12/traceback.py\", line 355, in _walk_tb_with_full_positions\n", " File \"/usr/lib/python3.12/traceback.py\", line 124, in print_exception\n", " te = TracebackException(type(value), value, tb, limit=limit, compact=True)\n", " positions = _get_code_position(tb.tb_frame.f_code, tb.tb_lasti)\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 811, in __init__\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 369, in _get_code_position\n", " return next(itertools.islice(positions_gen, instruction_index // 2, None))\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", "KeyboardInterrupt\n", " context = TracebackException(\n", " ^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 733, in __init__\n", " self.stack = StackSummary._extract_from_extended_frame_gen(\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", " File \"/usr/lib/python3.12/traceback.py\", line 424, in _extract_from_extended_frame_gen\n", " linecache.lazycache(filename, f.f_globals)\n", " File \"/usr/lib/python3.12/linecache.py\", line 170, in lazycache\n", " name = getattr(spec, 'name', None) or module_globals['__name__']\n", " ^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", "KeyboardInterrupt\n", "\n", "KeyboardInterrupt\n", "\n" ] } ], "source": [ "%%time\n", "# 💾 LOAD SENTINEL-2 DATA VIA dc.load() - ODC NATIVE APPROACH\n", "# Dùng dc.load() thay vì rasterio.open(S3) → tránh lỗi 403/VPC\n", "print(\"=\"*70)\n", "print(\"LOADING SENTINEL-2 DATA VIA dc.load() (ODC NATIVE)\")\n", "print(\"=\"*70)\n", "\n", "try:\n", " import xarray as xr\n", " import numpy as np\n", "\n", " # ===== CHECK IF SHOULD SKIP DOWNLOAD =====\n", " if use_cache and 'data' in dir() and data is not None:\n", " print(f\"\\n✅ Using cached dataset - skipping download!\")\n", " print(f\" Variables: {len(data.data_vars)}\")\n", " print(f\" Shape: {data.dims}\")\n", " display(data)\n", "\n", " else:\n", " # ===== BUILD QUERY =====\n", " query = {\n", " 'product': 's2_l2a',\n", " 'time': date_range,\n", " 'x': longtitude_range,\n", " 'y': latitude_range,\n", " }\n", "\n", " # Determine native CRS\n", " print(f\"\\n[1] Finding native CRS...\")\n", " try:\n", " native_crs = notebook_utils.mostcommon_crs(dc, query)\n", " except Exception:\n", " native_crs = 'EPSG:32648' # UTM Zone 48N covers Vietnam\n", " print(f\" CRS: {native_crs}\")\n", "\n", " # Bands to load (all main Sentinel-2 bands)\n", " measurements = ['blue', 'green', 'red', 'nir', 'swir16', 'swir22',\n", " 'coastal', 'rededge1', 'rededge2', 'rededge3', 'scl']\n", "\n", " load_params = {\n", " 'measurements': measurements,\n", " 'output_crs': native_crs,\n", " 'resolution': (-10, 10), # 10m native resolution\n", " 'group_by': 'solar_day', # Group multiple passes same day\n", " 'dask_chunks': {'x': 2048, 'y': 2048},\n", " }\n", "\n", " print(f\"\\n[2] Loading data via dc.load() ...\")\n", " print(f\" Region : lon={longtitude_range}, lat={latitude_range}\")\n", " print(f\" Time : {date_range[0]} → {date_range[1]}\")\n", " print(f\" Bands : {measurements}\")\n", "\n", " # ---- ODC load — handles S3 credentials internally ----\n", " data = load_s2l2a_with_offset(dc, query | load_params)\n", "\n", " if data is None or len(data.time) == 0:\n", " raise ValueError(\"dc.load() returned no data for this region/time range\")\n", "\n", " print(f\"\\n✅ Loaded {len(data.time)} scenes via dc.load()\")\n", " print(f\" Dimensions: {dict(data.dims)}\")\n", "\n", " # Compute (trigger Dask)\n", " print(f\"\\n[3] Computing (triggering Dask download)...\")\n", " data = data.compute()\n", " print(f\"✅ Data computed!\")\n", "\n", " # ===== CALCULATE SPECTRAL INDICES =====\n", " print(f\"\\n[4] Calculating spectral indices...\")\n", "\n", " # NDVI\n", " if 'nir' in data and 'red' in data:\n", " nir = data['nir'].astype(float)\n", " red = data['red'].astype(float)\n", " data['ndvi'] = ((nir - red) / (nir + red + 1e-8)).astype(np.float32)\n", " print(f\" ✅ NDVI\")\n", "\n", " # NDBI (uses swir16)\n", " if 'swir16' in data and 'nir' in data:\n", " swir = data['swir16'].astype(float)\n", " nir = data['nir'].astype(float)\n", " data['ndbi'] = ((swir - nir) / (swir + nir + 1e-8)).astype(np.float32)\n", " print(f\" ✅ NDBI\")\n", "\n", " # NDWI (uses swir16)\n", " if 'swir16' in data and 'nir' in data:\n", " nir = data['nir'].astype(float)\n", " swir = data['swir16'].astype(float)\n", " data['ndwi'] = ((nir - swir) / (nir + swir + 1e-8)).astype(np.float32)\n", " print(f\" ✅ NDWI\")\n", "\n", " # EVI\n", " if 'nir' in data and 'red' in data and 'blue' in data:\n", " nir = data['nir'].astype(float)\n", " red = data['red'].astype(float)\n", " blue = data['blue'].astype(float)\n", " data['evi'] = (2.5 * (nir - red) / (nir + 6*red - 7.5*blue + 1)).astype(np.float32)\n", " print(f\" ✅ EVI\")\n", "\n", " # ===== TEMPORAL AGGREGATE FEATURES =====\n", " print(f\"\\n[5] Computing temporal aggregate features...\")\n", " added = 0\n", "\n", " if 'ndvi' in data:\n", " ndvi_ts = data['ndvi']\n", " data['ndvi_min'] = ndvi_ts.min(dim='time'); added += 1\n", " data['ndvi_max'] = ndvi_ts.max(dim='time'); added += 1\n", " data['ndvi_mean'] = ndvi_ts.mean(dim='time'); added += 1\n", " data['ndvi_std'] = ndvi_ts.std(dim='time'); added += 1\n", " data['ndvi_range'] = data['ndvi_max'] - data['ndvi_min']; added += 1\n", "\n", " for idx_name in ['ndbi', 'ndwi', 'evi']:\n", " if idx_name in data:\n", " data[f'{idx_name}_mean'] = data[idx_name].mean(dim='time')\n", " added += 1\n", "\n", " print(f\" ✅ {added} aggregate features added\")\n", "\n", " # ===== SAVE TO CACHE =====\n", " print(f\"\\n[6] Saving to cache: {cache_file}\")\n", " try:\n", " import os\n", " os.makedirs(cache_dir, exist_ok=True)\n", " data.to_netcdf(cache_file, engine='netcdf4')\n", " size_gb = os.path.getsize(cache_file) / (1024**3)\n", " print(f\" ✅ Cached ({size_gb:.2f} GB)\")\n", " except Exception as e:\n", " print(f\" ⚠️ Cache save failed: {e}\")\n", "\n", " print(f\"\\n{'='*70}\")\n", " print(f\"✅ Dataset ready!\")\n", " print(f\" Scenes : {len(data.time)}\")\n", " print(f\" Variables : {len(data.data_vars)}\")\n", " print(f\" Spatial : {data.dims.get('x',0)} × {data.dims.get('y',0)} px @ 10m\")\n", " print(f\"{'='*70}\")\n", " display(data)\n", "\n", " # ===== EXTRACT NDVI FOR TRAINING =====\n", " if 'ndvi_mean' in data.data_vars:\n", " ndvi = data['ndvi_mean']\n", " print(f\"\\n✅ NDVI (mean) shape: {ndvi.shape}\")\n", " elif 'ndvi' in data.data_vars:\n", " ndvi = data['ndvi'].isel(time=0)\n", " print(f\"\\n✅ NDVI (t=0) shape: {ndvi.shape}\")\n", " else:\n", " ndvi = None\n", " print(f\"\\n❌ NDVI not found in dataset\")\n", "\n", "except Exception as e:\n", " print(f\"❌ Error: {e}\")\n", " import traceback\n", " traceback.print_exc()\n", " data = None\n", " ndvi = None\n", "\n", "print(\"=\"*70)\n" ] }, { "cell_type": "code", "execution_count": 6, "id": "d2585562-88aa-4c7d-bf70-1f6affcf65d4", "metadata": { "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "TRAINING DATA SETUP\n", "======================================================================\n", "\n", "[1] Loading training data: train/ST_training data_updated_1130points_new.shp\n", " ❌ Error: train/ST_training data_updated_1130points_new.shp: No such file or directory\n", "\n", "[2] Label mapping:\n", " 0: Lua tom\n", " 1: Lua\n", " 2: CHN\n", " 3: CLN\n", " 4: TS\n", " 5: Song\n", " 6: Dat xay dung\n", " 7: Rung\n", "\n", "======================================================================\n" ] } ], "source": [ "# 🎯 LOAD TRAINING DATA & EXTRACT FEATURES\n", "print(\"=\"*70)\n", "print(\"TRAINING DATA SETUP\")\n", "print(\"=\"*70)\n", "\n", "# Load training points\n", "train_path = \"train/ST_training data_updated_1130points_new.shp\"\n", "print(f\"\\n[1] Loading training data: {train_path}\")\n", "\n", "try:\n", " train = load_train_data(train_path)\n", " print(f\" ✅ Loaded {len(train)} training points\")\n", " print(f\" Columns: {list(train.columns)}\")\n", " train.head()\n", "except Exception as e:\n", " print(f\" ❌ Error: {e}\")\n", " train = None\n", "\n", "# Label mapping\n", "label_mapping = {\n", " \"Lua tom\": \"0\",\n", " \"Lua\": \"1\",\n", " \"CHN\": \"2\",\n", " \"CLN\": \"3\",\n", " \"TS\": \"4\",\n", " \"Song\": \"5\",\n", " \"Dat xay dung\": \"6\",\n", " \"Rung\": \"7\",\n", "}\n", "\n", "print(f\"\\n[2] Label mapping:\")\n", "for label, code in label_mapping.items():\n", " print(f\" {code}: {label}\")\n", "\n", "print(\"\\n\" + \"=\"*70)" ] }, { "cell_type": "code", "execution_count": 7, "id": "2e955884-d4af-422d-a8e6-d436199540e0", "metadata": { "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "LAND USE CLASSIFICATION TRAINING\n", "======================================================================\n", "\n", "🎯 Mục tiêu: Dự đoán phân loại sử dụng đất (8 lớp)\n", " - NDVI/NDWI/NDBI/EVI là INPUT FEATURES\n", " - Sau khi predict xong → có thể hiển thị NDVI map như chỉ số phụ\n", "======================================================================\n", "❌ Missing training data or satellite data\n", "\n", "======================================================================\n", "📝 NOTE: Model này dự đoán PHÂN LOẠI SỬ DỤNG ĐẤT (8 lớp)\n", " NDVI là một trong các features đầu vào, không phải mục tiêu dự đoán\n", " Sau khi predict → có thể hiển thị NDVI map như chỉ số phụ\n", "======================================================================\n", "CPU times: user 328 μs, sys: 40 μs, total: 368 μs\n", "Wall time: 330 μs\n" ] } ], "source": [ "%%time\n", "# 🤖 LAND USE CLASSIFICATION MODEL TRAINING (MỤC TIÊU CHÍNH)\n", "print(\"=\"*70)\n", "print(\"LAND USE CLASSIFICATION TRAINING\")\n", "print(\"=\"*70)\n", "print(\"\\n🎯 Mục tiêu: Dự đoán phân loại sử dụng đất (8 lớp)\")\n", "print(\" - NDVI/NDWI/NDBI/EVI là INPUT FEATURES\")\n", "print(\" - Sau khi predict xong → có thể hiển thị NDVI map như chỉ số phụ\")\n", "print(\"=\"*70)\n", "\n", "if train is not None and data is not None:\n", " print(\"\\n[1] Extracting MULTIPLE features from satellite data...\")\n", " print(\" (Sử dụng nhiều spectral indices để cải thiện accuracy)\")\n", " \n", " try:\n", " # ── FIX 1: Reproject training points to match raster CRS ──────────────\n", " # Shapefile thường ở WGS84 (EPSG:4326, lon/lat ~105-106)\n", " # Raster data ở UTM (EPSG:32648, easting ~500000+)\n", " # Nếu không reproject → .sel() sẽ chọn sai pixel hoàn toàn!\n", " raster_crs = None\n", " try:\n", " # Ưu tiên lấy CRS từ rioxarray\n", " raster_crs = data.rio.crs\n", " except Exception:\n", " pass\n", " if raster_crs is None:\n", " # Fallback: dùng biến native_crs đã định nghĩa ở cell load data\n", " raster_crs = native_crs if 'native_crs' in dir() else 'EPSG:32648'\n", "\n", " train_src_crs = train.crs if train.crs is not None else 'EPSG:4326'\n", " print(f\" Training CRS : {train_src_crs}\")\n", " print(f\" Raster CRS : {raster_crs}\")\n", "\n", " if str(train_src_crs).upper() != str(raster_crs).upper():\n", " train_proj = train.to_crs(raster_crs)\n", " print(f\" ✅ Reprojected training points → {raster_crs}\")\n", " else:\n", " train_proj = train\n", " print(f\" ✅ CRS already match, no reprojection needed\")\n", "\n", " # Extract features at training point locations\n", " X = []\n", " y = []\n", " skipped_nan = 0\n", " skipped_label = 0\n", " skipped_other = 0\n", "\n", " # Available features from data\n", " available_features = ['ndvi_mean', 'ndvi_min', 'ndvi_max', 'ndvi_std', 'ndvi_range',\n", " 'ndwi_mean', 'ndbi_mean', 'evi_mean']\n", "\n", " # Check which features are actually available\n", " features_to_use = [f for f in available_features if f in data.data_vars]\n", "\n", " if not features_to_use:\n", " print(\" ❌ No spectral features found in dataset!\")\n", " print(\" Available variables:\", list(data.data_vars))\n", " model = None\n", " else:\n", " print(f\" Using {len(features_to_use)} features: {features_to_use}\")\n", "\n", " for idx, point in train_proj.iterrows():\n", " try:\n", " # ── FIX 2: Dùng tọa độ đã reproject ──────────────────────\n", " px, py = point.geometry.x, point.geometry.y\n", "\n", " # Extract all available features at this point\n", " feature_vec = []\n", " for feat_name in features_to_use:\n", " feat_val = float(data[feat_name].sel(\n", " x=px, y=py, method='nearest'\n", " ).values)\n", " feature_vec.append(feat_val)\n", "\n", " # Get label\n", " try:\n", " label = label_mapping[point.Hientrang]\n", " except KeyError:\n", " skipped_label += 1\n", " continue\n", "\n", " # ── FIX 3: np.isnan phải nhận numpy array, không phải list ─\n", " feature_arr = np.array(feature_vec, dtype=np.float32)\n", " if np.isnan(feature_arr).any():\n", " skipped_nan += 1\n", " continue\n", "\n", " X.append(feature_vec)\n", " y.append(int(label))\n", "\n", " except Exception as e:\n", " skipped_other += 1\n", " continue\n", "\n", " print(f\"\\n Points extracted : {len(X)}\")\n", " print(f\" Skipped (NaN) : {skipped_nan}\")\n", " print(f\" Skipped (label) : {skipped_label}\")\n", " print(f\" Skipped (other) : {skipped_other}\")\n", "\n", " if len(X) > 0:\n", " X = np.array(X)\n", " y = np.array(y)\n", " print(f\" ✅ {len(X)} samples × {X.shape[1]} features\")\n", "\n", " # Show feature statistics\n", " print(f\"\\n Feature statistics:\")\n", " for i, feat_name in enumerate(features_to_use):\n", " print(f\" {feat_name:15s}: mean={X[:,i].mean():.3f}, std={X[:,i].std():.3f}\")\n", "\n", " # Split data\n", " print(f\"\\n[2] Splitting data (80-20)...\")\n", " from sklearn.model_selection import train_test_split\n", " X_train, X_test, y_train, y_test = train_test_split(\n", " X, y, test_size=0.2, random_state=42, stratify=y\n", " )\n", " print(f\" Train: {len(X_train)}, Test: {len(X_test)}\")\n", "\n", " # Show class distribution\n", " unique, counts = np.unique(y_train, return_counts=True)\n", " print(f\"\\n Class distribution in training set:\")\n", " for cls, count in zip(unique, counts):\n", " cls_name = [k for k, v in label_mapping.items() if v == str(cls)][0]\n", " print(f\" {cls}: {cls_name:15s} - {count:4d} samples ({count/len(y_train)*100:.1f}%)\")\n", "\n", " # Train model\n", " print(f\"\\n[3] Training Random Forest for LAND USE CLASSIFICATION...\")\n", " from sklearn.ensemble import RandomForestClassifier\n", " from sklearn.metrics import accuracy_score, classification_report\n", "\n", " model = RandomForestClassifier(\n", " n_estimators=200,\n", " max_depth=30,\n", " min_samples_split=5,\n", " random_state=42,\n", " n_jobs=-1,\n", " verbose=1\n", " )\n", " model.fit(X_train, y_train)\n", "\n", " # Evaluate\n", " y_pred = model.predict(X_test)\n", " accuracy = accuracy_score(y_test, y_pred)\n", "\n", " print(f\"\\n ✅ Model trained!\")\n", " print(f\" Training accuracy: {model.score(X_train, y_train)*100:.2f}%\")\n", " print(f\" Testing accuracy : {accuracy*100:.2f}%\")\n", "\n", " # Show feature importance\n", " print(f\"\\n Feature importance:\")\n", " importances = model.feature_importances_\n", " indices = np.argsort(importances)[::-1]\n", " for i, idx_fi in enumerate(indices):\n", " print(f\" {i+1}. {features_to_use[idx_fi]:15s}: {importances[idx_fi]:.4f}\")\n", "\n", " # Classification report\n", " print(f\"\\n[4] Classification Report:\")\n", " class_names = [k for k, v in sorted(label_mapping.items(), key=lambda x: x[1])]\n", " print(classification_report(y_test, y_pred, target_names=class_names, zero_division=0))\n", "\n", " else:\n", " print(f\" ❌ No valid samples extracted — kiểm tra CRS và tọa độ!\")\n", " model = None\n", "\n", " except Exception as e:\n", " print(f\" ❌ Error: {e}\")\n", " import traceback\n", " traceback.print_exc()\n", " model = None\n", "else:\n", " print(\"❌ Missing training data or satellite data\")\n", " model = None\n", "\n", "print(\"\\n\" + \"=\"*70)\n", "print(\"📝 NOTE: Model này dự đoán PHÂN LOẠI SỬ DỤNG ĐẤT (8 lớp)\")\n", "print(\" NDVI là một trong các features đầu vào, không phải mục tiêu dự đoán\")\n", "print(\" Sau khi predict → có thể hiển thị NDVI map như chỉ số phụ\")\n", "print(\"=\"*70)\n" ] }, { "cell_type": "code", "execution_count": 8, "id": "f1a14379-ed6e-4897-9ca4-2669743fab40", "metadata": { "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "MODEL SAVING\n", "======================================================================\n", "❌ No model to save\n", "======================================================================\n" ] } ], "source": [ "# 💾 SAVE MODEL WITH METADATA\n", "print(\"=\"*70)\n", "print(\"MODEL SAVING\")\n", "print(\"=\"*70)\n", "\n", "if model is not None:\n", " print(\"\\n🔄 Saving trained LAND USE CLASSIFICATION model with metadata...\")\n", " try:\n", " from datetime import datetime\n", " \n", " # Prepare metadata for ModelManager\n", " metadata = {\n", " \"timestamp\": datetime.now().isoformat(),\n", " \"data_source\": \"Local S3 ODC (Open Data Cube)\",\n", " \"collections\": [\"sentinel-2-l2a\"],\n", " \"features\": features_to_use, # All features used\n", " \"feature_mode\": \"extended\", # Using extended aggregate features\n", " \"training_samples\": len(X_train),\n", " \"testing_samples\": len(X_test),\n", " \"test_size\": 0.2,\n", " \"train_accuracy\": float(model.score(X_train, y_train)),\n", " \"test_accuracy\": float(accuracy),\n", " \"model_type\": \"random_forest\",\n", " \"device\": \"cpu\",\n", " \"n_estimators\": 200,\n", " \"max_depth\": 30,\n", " \"learning_rate\": None,\n", " \"cnn_epochs\": None,\n", " \"n_features\": X_train.shape[1],\n", " \"n_classes\": len(np.unique(y)),\n", " \"class_names\": list(label_mapping.keys()),\n", " \"classification_report\": classification_report(y_test, y_pred, \n", " target_names=class_names, \n", " output_dict=True,\n", " zero_division=0),\n", " \"bbox\": None,\n", " \"time_range\": f\"{date_range[0]}/{date_range[1]}\",\n", " \"resolution\": 10,\n", " \"notes\": \"LAND USE CLASSIFICATION model trained from 01.train_ODC.ipynb. Predicts 8 land use classes using multiple spectral indices. NDVI is one of the input features, not the prediction target.\"\n", " }\n", " \n", " # Save model with metadata using updated save_model function\n", " save_model(\"model_land_use_odc.joblib\", model, metadata=metadata, label_encoder=None)\n", " \n", " print(\"✅ Model saved to model_train/model_land_use_odc.joblib\")\n", " print(f\" - Purpose: Land Use Classification (8 classes)\")\n", " print(f\" - Features: {len(features_to_use)} ({', '.join(features_to_use[:3])}...)\")\n", " print(f\" - Train Accuracy: {metadata['train_accuracy']*100:.2f}%\")\n", " print(f\" - Test Accuracy: {metadata['test_accuracy']*100:.2f}%\")\n", " print(f\" - Classes: {metadata['n_classes']}\")\n", " print(f\"\\n📝 NDVI là một trong các features, không phải prediction target\")\n", " print(f\" Sau khi predict → có thể tính NDVI map riêng để hiển thị\")\n", " except Exception as e:\n", " print(f\"❌ Error saving model: {e}\")\n", " import traceback\n", " traceback.print_exc()\n", "else:\n", " print(\"❌ No model to save\")\n", "\n", "print(\"=\"*70)" ] }, { "cell_type": "markdown", "id": "4a8579f4", "metadata": {}, "source": [ "# 📖 Hướng dẫn sử dụng Model\n", "\n", "## Mục đích của Model\n", "\n", "Model này được train để **DỰ ĐOÁN PHÂN LOẠI SỬ DỤNG ĐẤT** với 8 lớp:\n", "\n", "1. **Lua tom** (0) - Lúa tôm\n", "2. **Lua** (1) - Lúa\n", "3. **CHN** (2) - Cây hàng năm\n", "4. **CLN** (3) - Cây lâu năm \n", "5. **TS** (4) - Thủy sản\n", "6. **Song** (5) - Sông\n", "7. **Dat xay dung** (6) - Đất xây dựng\n", "8. **Rung** (7) - Rừng\n", "\n", "## Features đầu vào\n", "\n", "Model sử dụng **nhiều spectral indices** làm features:\n", "- NDVI (mean, min, max, std, range)\n", "- NDWI (mean)\n", "- NDBI (mean)\n", "- EVI (mean)\n", "\n", "## NDVI là gì trong hệ thống này?\n", "\n", "⚠️ **QUAN TRỌNG**: NDVI **KHÔNG PHẢI** là mục tiêu dự đoán!\n", "\n", "- **NDVI là INPUT FEATURE**: Một trong các chỉ số dùng để train model\n", "- **Mục tiêu dự đoán**: Phân loại sử dụng đất (8 lớp)\n", "- **NDVI map**: Có thể hiển thị NDVI map như chỉ số phụ sau khi predict xong\n", "\n", "## Workflow Prediction\n", "\n", "```python\n", "# 1. Load model\n", "model, label_encoder, metadata = model_manager.load_model(\"model_land_use_odc.joblib\")\n", "\n", "# 2. Extract features từ satellite data\n", "features = extract_features(satellite_data) # NDVI, NDWI, NDBI, EVI\n", "\n", "# 3. Predict land use classification\n", "land_use_prediction = model.predict(features)\n", "# → Kết quả: Mảng với giá trị 0-7 (8 lớp sử dụng đất)\n", "\n", "# 4. (Optional) Tính NDVI map riêng để hiển thị\n", "ndvi_map = (NIR - Red) / (NIR + Red)\n", "# → NDVI map chỉ để visualize, không phải prediction target\n", "```\n", "\n", "## So sánh với approach cũ\n", "\n", "| Approach | Features | Target | NDVI Role |\n", "|----------|----------|--------|-----------|\n", "| ❌ Cũ (sai) | Chỉ NDVI | 8 lớp đất | Input duy nhất |\n", "| ✅ Mới (đúng) | NDVI + NDWI + NDBI + EVI | 8 lớp đất | Một trong nhiều features |\n", "\n", "## Test Model\n", "\n", "```python\n", "# Test với website\n", "# 1. Upload model_land_use_odc.joblib lên server\n", "# 2. Chọn model trong prediction interface\n", "# 3. Chọn vùng và thời gian\n", "# 4. System sẽ tự động:\n", "# - Extract features (NDVI, NDWI, NDBI, EVI)\n", "# - Predict land use classification\n", "# - (Optional) Generate NDVI visualization map\n", "```" ] }, { "cell_type": "code", "execution_count": null, "id": "33dd516d-9824-499e-96b9-5cd9224c194c", "metadata": { "tags": [] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "======================================================================\n", "CLEANUP\n", "======================================================================\n", "\n", "🔄 Closing Dask client and cluster...\n" ] } ], "source": [ "# 🛑 CLEANUP\n", "print(\"=\"*70)\n", "print(\"CLEANUP\")\n", "print(\"=\"*70)\n", "\n", "print(\"\\n🔄 Closing Dask client and cluster...\")\n", "try:\n", " client.close()\n", " cluster.close()\n", " print(\"✅ Cleanup complete\")\n", "except Exception as e:\n", " print(f\"⚠️ Error during cleanup: {e}\")\n", "\n", "print(\"\\n\" + \"=\"*70)\n", "print(\"✅ PIPELINE COMPLETE\")\n", "print(\"=\"*70)" ] } ], "metadata": { "kernelspec": { "display_name": "env_01", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.19" } }, "nbformat": 4, "nbformat_minor": 5 }