diff --git a/apps/cli/executables/pexable/deliver/delivery/finder.py b/apps/cli/executables/pexable/deliver/delivery/finder.py
index d604037ae6cd59314f30bd32a816ff43c841ade8..37f59bec466ceea1a786197c8f66be15d0fe7a7d 100644
--- a/apps/cli/executables/pexable/deliver/delivery/finder.py
+++ b/apps/cli/executables/pexable/deliver/delivery/finder.py
@@ -131,7 +131,7 @@ class RestoreProductFinder(ProductFinder):
     def parse_metadata(self) -> ProductMetadata:
         metadata_file = json.loads((self.dir / "metadata.json").read_bytes())
         project_metadata = metadata_file["projectMetadata"]
-        casa_log_path = list(self.dir.glob("*/working/casa-*.log"))
+        casa_log_path = list(self.dir.glob("./working/casa-*.log"))
         assert len(casa_log_path) == 1
         casa_log_name = casa_log_path[0].name
         start_timestamp_match = re.match(r"^casa-(?P<timestamp>[0-9]+-[0-9]+).log$", casa_log_name)
@@ -139,7 +139,7 @@ class RestoreProductFinder(ProductFinder):
         start_timestamp = pendulum.from_format(start_timestamp_match.group("timestamp"), "YYYYMMDD-HHmmss")
         start_mjd = convert_datetime_to_mjd(start_timestamp)
         return ProductMetadata(
-            project_metadata["telescope"], project_metadata["project_code"], "restored_cms", None, None, str(start_mjd)
+            project_metadata["telescope"], project_metadata["projectCode"], "restored_cms", None, None, str(start_mjd)
         )
 
     @property
diff --git a/apps/cli/executables/pexable/deliver/delivery/products.py b/apps/cli/executables/pexable/deliver/delivery/products.py
index 152bde9efefb64cc41350ed97fd53a45f0256d65..1e2bb6e227a0e1a94b4a3339d27610ea490e881d 100644
--- a/apps/cli/executables/pexable/deliver/delivery/products.py
+++ b/apps/cli/executables/pexable/deliver/delivery/products.py
@@ -17,6 +17,7 @@
 # along with Workspaces.  If not, see <https://www.gnu.org/licenses/>.
 import pathlib
 import re
+from dataclasses import dataclass
 from typing import Tuple, Union
 
 import chevron
@@ -25,6 +26,7 @@ from .deliverer import Destination
 from .destinations.interfaces import ProductMetadataIF, SpooledProduct
 
 
+@dataclass
 class ProductMetadata(ProductMetadataIF):
     """
     Represents the metadata about a given product.
diff --git a/apps/cli/executables/pexable/deliver/test/test_products.py b/apps/cli/executables/pexable/deliver/test/test_products.py
index 0d26b2c7b30d7a69c2c738ddea3ee5f370e7f944..d5d9b4c832890cd5660600ca03c5ad31f38b5034 100644
--- a/apps/cli/executables/pexable/deliver/test/test_products.py
+++ b/apps/cli/executables/pexable/deliver/test/test_products.py
@@ -24,8 +24,11 @@ from delivery.destinations.interfaces import (
     Destination,
     DestinationTempFile,
 )
+from delivery.finder import RestoreProductFinder
 from delivery.products import Calibration, ProductMetadata, RestoreProduct
 
+TEST_RESTORE_METADATA = ProductMetadata("EVLA", "17B-403", "restored_cms", None, None, "60468.6349189817")
+
 
 class FakeDestination(Destination):
     def __init__(self):
@@ -81,7 +84,6 @@ def test_web_calibration(resource_path_root):
 
 
 def test_restore(resource_path_root):
-    TEST_RESTORE_METADATA = ProductMetadata("EVLA", "17B-403", "restore", None, None, "60468.635023148265")
     restore = RestoreProduct(resource_path_root / "restores" / "tmpfpjeptku", TEST_RESTORE_METADATA)
 
     # OK now let's make sure that we're delivering properly
@@ -128,3 +130,10 @@ def test_restore(resource_path_root):
         assert file in expected_files or any(
             file.startswith(expected_dir) for expected_dir in expected_dirs_to_file_counts.keys()
         )
+
+
+def test_restore_product_finder_parse_metadata(resource_path_root):
+    expected_metadata = TEST_RESTORE_METADATA
+    finder = RestoreProductFinder(resource_path_root / "restores" / "tmpfpjeptku")
+    actual_metadata = finder.parse_metadata()
+    assert actual_metadata == expected_metadata
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/metadata.json b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/metadata.json
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c550a629b0d7de4a5601b08778125cc2c20da040 100644
--- a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/metadata.json
+++ b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/metadata.json
@@ -0,0 +1,18 @@
+{
+    "systemId": "163677",
+    "fileSetIds": ["17B-403.sb34574962.eb34577590_000.58035.544146898144", "17B-403_2017_10_09_T16_25_18.256.tar"],
+    "creationTime": "2024-06-07T15:13:05",
+    "workflowName": "restore_cms",
+    "providedFiles": "['PPR.xml']",
+    "productLocator": "uid://evla/execblock/4faf6c86-e326-4a40-846e-c8ed61a9a6bf",
+    "projectMetadata": {
+        "title": "Monitoring of the Extremely High Energy Neutrino IceCube-170922A Error Field ",
+        "observer": "Gregory Sivakoff",
+        "startTime": "58035.544171875",
+        "telescope": "EVLA",
+        "projectCode": "17B-403"
+    },
+    "calProductLocator": "uid://evla/calibration/1af77b76-193f-45ee-aae9-2abf5bc3a1c0",
+    "destinationDirectory": "/lustre/aoc/cluster/pipeline/dsoc-dev/workspaces/spool/tmpfpjeptku",
+    "casaHome": "/home/casa/packages/pipeline/production"
+}
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0i
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0i
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0i
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.f0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.f0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.f0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.lock
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.dat
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.dat
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.dat
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f1
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f1
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f1
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f10 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f10
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f10
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f10
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f11 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f11
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f11
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f11
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f12 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f12
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f12
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f12
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f13 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f13
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f13
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f13
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f14 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f14
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f14
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f14
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f15 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f15
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f15
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f15
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f16 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f16
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f16
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f16
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17_TSM1
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17_TSM1
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17_TSM1
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f18 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f18
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f18
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f18
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19_TSM0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19_TSM0
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19_TSM0
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19_TSM0
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f2 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f2
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f2
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f2
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20_TSM1
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20_TSM1
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20_TSM1
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21_TSM1
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21_TSM1
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21_TSM1
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22_TSM1
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22_TSM1
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22_TSM1
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23_TSM1
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23_TSM1
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23_TSM1
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f3 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f3
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f3
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f3
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f4 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f4
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f4
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f4
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f5 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f5
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f5
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f5
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f6 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f6
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f6
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f6
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f7 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f7
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f7
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f7
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f8 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f8
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f8
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f8
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f9 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f9
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f9
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f9
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.info
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.info
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.info
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.lock
similarity index 100%
rename from apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.lock
rename to apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.lock