[object Object]

← back to Reid Witlin Onboarding

Build immutable Reid Witlin recovery manifest

1541f4d8b0046a345c590208e21be7183d2d91e7 · 2026-09-02 22:24:41 -0700 · Steve Abrams

Files touched

Diff

commit 1541f4d8b0046a345c590208e21be7183d2d91e7
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Wed Sep 2 22:24:41 2026 -0700

    Build immutable Reid Witlin recovery manifest
---
 build_recovery_manifest.py                         |  183 +
 inspect_handle_conflicts.py                        |   19 +
 verification/recovery-e2e-proof.json               |   30 +
 .../recovery-manifests/20260903T052301Z.json       | 5056 ++++++++++++++++++++
 .../recovery-manifests/20260903T052418Z.json       | 5056 ++++++++++++++++++++
 5 files changed, 10344 insertions(+)

diff --git a/build_recovery_manifest.py b/build_recovery_manifest.py
new file mode 100644
index 0000000..570e0d3
--- /dev/null
+++ b/build_recovery_manifest.py
@@ -0,0 +1,183 @@
+#!/usr/bin/env python3
+"""Build a read-only, immutable manifest for TK-10066 recovery.
+
+This script performs no Shopify or PostgreSQL writes.  It snapshots the live
+Shopify products and the corresponding canonical rows, classifies duplicate
+SKUs, and proposes deterministic fresh SKUs for cross-identity collisions.
+"""
+import collections
+import csv
+import datetime as dt
+import json
+import os
+import re
+import subprocess
+
+import create2
+
+HERE = os.path.dirname(os.path.abspath(__file__))
+OUT_DIR = os.path.join(HERE, "verification", "recovery-manifests")
+VENDOR = "Architectural Fabrics"
+
+PRODUCTS = """
+query($query: String!, $after: String) {
+  products(first: 250, after: $after, query: $query) {
+    nodes {
+      id handle title status vendor createdAt updatedAt
+      variants(first: 10) { nodes { id sku price } }
+    }
+    pageInfo { hasNextPage endCursor }
+  }
+}"""
+
+
+def sql_rows(sql):
+    result = subprocess.run(
+        ["psql", "host=/tmp dbname=dw_unified", "-X", "-qAt", "-F", "\t", "-c", sql],
+        capture_output=True, text=True, check=True,
+    )
+    return [line.split("\t") for line in result.stdout.splitlines() if line]
+
+
+def fetch_products():
+    products, after = [], None
+    while True:
+        data = create2.gql(PRODUCTS, {"query": f"vendor:'{VENDOR}'", "after": after})
+        if data.get("errors"):
+            raise RuntimeError(data["errors"])
+        conn = data["data"]["products"]
+        products.extend(conn["nodes"])
+        if not conn["pageInfo"]["hasNextPage"]:
+            return products
+        after = conn["pageInfo"]["endCursor"]
+
+
+def numeric_suffix(sku):
+    match = re.fullmatch(r"DWKR-(\d+)", sku or "")
+    return int(match.group(1)) if match else -1
+
+
+def main():
+    targets = list(csv.DictReader(open(os.path.join(HERE, "targets_ready_v2.csv"))))
+    target_by_mfr = {r["mfr_sku"].strip().upper(): r for r in targets}
+    products = fetch_products()
+    by_sku = collections.defaultdict(list)
+    for product in products:
+        for variant in product.get("variants", {}).get("nodes", []):
+            sku = variant.get("sku") or ""
+            if sku.startswith("DWKR-"):
+                by_sku[sku].append({
+                    "product_id": product["id"], "variant_id": variant["id"],
+                    "handle": product["handle"], "title": product["title"],
+                    "status": product["status"], "created_at": product["createdAt"],
+                    "updated_at": product["updatedAt"], "price": variant.get("price"),
+                })
+
+    duplicate_skus = sorted(s for s, nodes in by_sku.items() if len(nodes) > 1)
+    bases = sorted({s.removesuffix("-Sample") for s in duplicate_skus})
+    quoted = ",".join("'%s'" % s.replace("'", "''") for s in bases) or "''"
+    catalog = sql_rows(f"""
+      SELECT dw_sku, COALESCE(mfr_sku,''), COALESCE(shopify_product_id,''),
+             COALESCE(shopify_handle,''), id::text
+      FROM rwltd_catalog WHERE dw_sku IN ({quoted}) ORDER BY dw_sku,mfr_sku,id;
+    """)
+    registry = sql_rows(f"""
+      SELECT dw_sku, COALESCE(mfr_sku,''), COALESCE(shopify_product_id,''),
+             COALESCE(shopify_handle,''), id::text
+      FROM dw_sku_registry WHERE dw_sku IN ({quoted}) ORDER BY dw_sku;
+    """)
+    catalog_by_sku = collections.defaultdict(list)
+    for sku, mfr, pid, handle, row_id in catalog:
+        catalog_by_sku[sku].append({"row_id": int(row_id), "mfr_sku": mfr,
+                                    "product_id": pid, "handle": handle})
+    registry_by_sku = {r[0]: {"mfr_sku": r[1], "product_id": r[2],
+                              "handle": r[3], "row_id": int(r[4])} for r in registry}
+
+    all_base_skus = {s.removesuffix("-Sample") for s in by_sku}
+    all_base_skus.update(r[0] for r in sql_rows(
+        "SELECT dw_sku FROM dw_sku_registry WHERE vendor_prefix='DWKR';"))
+    next_number = max(map(numeric_suffix, all_base_skus)) + 1
+    same_identity, cross_identity = [], []
+    for variant_sku in duplicate_skus:
+        base = variant_sku.removesuffix("-Sample")
+        rows = catalog_by_sku[base]
+        identities = sorted({r["mfr_sku"].strip().upper() for r in rows if r["mfr_sku"].strip()})
+        shopify = by_sku[variant_sku]
+        registry_owner = registry_by_sku.get(base)
+        if len(identities) <= 1:
+            retain_pid = next((r["product_id"] for r in rows if r["product_id"]), "")
+            retain_gid = retain_pid if retain_pid.startswith("gid://") else (
+                f"gid://shopify/Product/{retain_pid}" if retain_pid else "")
+            same_identity.append({
+                "sku": variant_sku, "mfr_skus": identities, "catalog_rows": rows,
+                "shopify_products": shopify, "retain_product_id": retain_gid,
+                "archive_product_ids": [p["product_id"] for p in shopify
+                                        if p["product_id"] != retain_gid],
+            })
+            continue
+
+        # The collision was introduced by Pool B minting into SKUs already held
+        # by Pool A.  Only the first 12 pre-existing owners had registry rows;
+        # for the remaining 43, the immutable batch provenance is authoritative.
+        move_candidates = [r for r in rows
+                           if target_by_mfr.get(r["mfr_sku"].strip().upper(), {}).get("pool") == "B-new-gap"]
+        if len(move_candidates) != 1:
+            raise RuntimeError(f"Cannot identify exactly one Pool-B mover for {base}")
+        move_row = move_candidates[0]
+        retain_row = next((r for r in rows if r is not move_row), None)
+        owner_mfr = (registry_owner or retain_row or {}).get("mfr_sku", "").strip().upper()
+        if not owner_mfr or not move_row["product_id"] or not retain_row:
+            raise RuntimeError(f"Cannot deterministically assign original owner for {base}")
+        move_gid = move_row["product_id"] if move_row["product_id"].startswith("gid://") else \
+            f"gid://shopify/Product/{move_row['product_id']}"
+        move_product = next((p for p in shopify if p["product_id"] == move_gid), None)
+        if not move_product:
+            raise RuntimeError(f"Catalog product link not present in Shopify duplicate set for {base}")
+        fresh = f"DWKR-{next_number:06d}"
+        next_number += 1
+        cross_identity.append({
+            "old_sku": base, "new_sku": fresh, "owner_source":
+                "registry" if registry_owner else "pool-provenance",
+            "registry_owner": registry_owner, "retain_identity": retain_row,
+            "move_identity": move_row, "move_product": move_product,
+            "catalog_rows": rows, "shopify_products": shopify,
+        })
+
+    handle_repairs = []
+    for handle in ("chilhowie-alaska-architectural-fabrics",
+                   "haymarket-obsidian-architectural-fabrics"):
+        target = next((r for r in targets if r.get("handle") == handle), None)
+        product = next((p for p in products if p.get("handle") == handle), None)
+        handle_repairs.append({"handle": handle, "target": target, "shopify_product": product})
+
+    now = dt.datetime.now(dt.timezone.utc)
+    manifest = {
+        "schema": "tk-10066-recovery-manifest/v1", "generated_at": now.isoformat(),
+        "mode": "READ_ONLY", "vendor": VENDOR, "shopify_product_count": len(products),
+        "duplicate_sku_count": len(duplicate_skus),
+        "same_identity_count": len(same_identity), "cross_identity_count": len(cross_identity),
+        "same_identity": same_identity, "cross_identity": cross_identity,
+        "handle_repairs": handle_repairs,
+        "assertions": {
+            "expected_89_duplicates": len(duplicate_skus) == 89,
+            "expected_34_same_identity": len(same_identity) == 34,
+            "expected_55_cross_identity": len(cross_identity) == 55,
+            "all_archive_targets_are_draft": all(
+                p["status"] == "DRAFT" for item in same_identity
+                for p in item["shopify_products"] if p["product_id"] in item["archive_product_ids"]),
+            "fresh_skus_unique": len({x["new_sku"] for x in cross_identity}) == len(cross_identity),
+            "handle_repairs_resolved": all(x["target"] and x["shopify_product"] for x in handle_repairs),
+        },
+    }
+    if not all(manifest["assertions"].values()):
+        raise RuntimeError(json.dumps(manifest["assertions"], sort_keys=True))
+    os.makedirs(OUT_DIR, exist_ok=True)
+    path = os.path.join(OUT_DIR, now.strftime("%Y%m%dT%H%M%SZ") + ".json")
+    with open(path, "x") as fh:
+        json.dump(manifest, fh, indent=2, sort_keys=True)
+        fh.write("\n")
+    print(json.dumps({"manifest": path, **manifest["assertions"]}, indent=2))
+
+
+if __name__ == "__main__":
+    main()
diff --git a/inspect_handle_conflicts.py b/inspect_handle_conflicts.py
new file mode 100644
index 0000000..ea7ef1c
--- /dev/null
+++ b/inspect_handle_conflicts.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+"""Read-only inspection of the two final productSet handle conflicts."""
+import json
+import create2
+
+QUERY = """
+query($handle: String!) {
+  productByHandle(handle: $handle) {
+    id handle title status vendor
+    variants(first: 5) { nodes { sku } }
+  }
+}
+"""
+
+handles = [
+    "chilhowie-alaska-architectural-fabrics",
+    "haymarket-obsidian-architectural-fabrics",
+]
+print(json.dumps([create2.gql(QUERY, {"handle": h}) for h in handles], indent=2))
diff --git a/verification/recovery-e2e-proof.json b/verification/recovery-e2e-proof.json
new file mode 100644
index 0000000..f1a5b52
--- /dev/null
+++ b/verification/recovery-e2e-proof.json
@@ -0,0 +1,30 @@
+{
+  "intent": "Prepare a fail-closed, read-only recovery manifest for TK-10066 without performing gated Shopify or canonical writes.",
+  "risk_tier": "R4-preflight",
+  "environment": "live Shopify read API plus local canonical dw_unified read replica",
+  "timestamp": "2026-09-03T05:24:18Z",
+  "entry_state": "All Reid Witlin writers stopped; recovery remains gated; products remain DRAFT.",
+  "actions": [
+    "Compiled build_recovery_manifest.py",
+    "Fetched the complete live Architectural Fabrics vendor product set read-only",
+    "Read matching rwltd_catalog and dw_sku_registry rows",
+    "Generated two immutable manifests 77 seconds apart"
+  ],
+  "assertions": {
+    "duplicate_sku_count_is_89": "PASS",
+    "same_identity_count_is_34": "PASS",
+    "cross_identity_count_is_55": "PASS",
+    "all_archive_targets_are_draft": "PASS",
+    "all_55_fresh_skus_are_unique": "PASS",
+    "both_handle_link_repairs_resolve": "PASS",
+    "two_read_state_is_stable_ignoring_generated_at": "PASS",
+    "shopify_or_database_mutation": "SKIP - prohibited until Steve approves the recovery memo"
+  },
+  "evidence": [
+    "verification/recovery-manifests/20260903T052301Z.json",
+    "verification/recovery-manifests/20260903T052418Z.json"
+  ],
+  "negative_behavior": "The first run failed closed at DWKR-191406 because no registry owner existed. The tool was corrected to require exactly one B-new-gap mover and one pre-existing Pool-A owner; ambiguous ownership raises without writing a manifest.",
+  "side_effects": "Two local immutable JSON evidence files only; zero Shopify and zero PostgreSQL writes.",
+  "verdict": "PARTIAL - recovery preflight is verified; live recovery remains approval-gated."
+}
diff --git a/verification/recovery-manifests/20260903T052301Z.json b/verification/recovery-manifests/20260903T052301Z.json
new file mode 100644
index 0000000..b211905
--- /dev/null
+++ b/verification/recovery-manifests/20260903T052301Z.json
@@ -0,0 +1,5056 @@
+{
+  "assertions": {
+    "all_archive_targets_are_draft": true,
+    "expected_34_same_identity": true,
+    "expected_55_cross_identity": true,
+    "expected_89_duplicates": true,
+    "fresh_skus_unique": true,
+    "handle_repairs_resolved": true
+  },
+  "cross_identity": [
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-ageless-arrowheads",
+          "product_id": "gid://shopify/Product/7942340804659",
+          "row_id": 2551
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-1",
+          "product_id": "gid://shopify/Product/7942329204787",
+          "row_id": 2853
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-ageless-arrowheads",
+        "product_id": "gid://shopify/Product/7942340804659",
+        "row_id": 2551
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:53Z",
+        "handle": "by-hand-panels-ageless-arrowheads-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340804659",
+        "status": "DRAFT",
+        "title": "By Hand Panels Ageless Arrowheads",
+        "updated_at": "2026-09-02T23:22:25Z",
+        "variant_id": "gid://shopify/ProductVariant/44814411956275"
+      },
+      "new_sku": "DWKR-191619",
+      "old_sku": "DWKR-191394",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-1",
+        "product_id": "",
+        "row_id": 18074
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-1",
+        "product_id": "gid://shopify/Product/7942329204787",
+        "row_id": 2853
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:18Z",
+          "handle": "dream-another-dream-1-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329204787",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 1",
+          "updated_at": "2026-09-02T23:15:53Z",
+          "variant_id": "gid://shopify/ProductVariant/44814399897651"
+        },
+        {
+          "created_at": "2026-09-02T23:21:53Z",
+          "handle": "by-hand-panels-ageless-arrowheads-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340804659",
+          "status": "DRAFT",
+          "title": "By Hand Panels Ageless Arrowheads",
+          "updated_at": "2026-09-02T23:22:25Z",
+          "variant_id": "gid://shopify/ProductVariant/44814411956275"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-ambient-atmosphere",
+          "product_id": "gid://shopify/Product/7942340870195",
+          "row_id": 2552
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-2",
+          "product_id": "gid://shopify/Product/7942329466931",
+          "row_id": 2854
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-ambient-atmosphere",
+        "product_id": "gid://shopify/Product/7942340870195",
+        "row_id": 2552
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:54Z",
+        "handle": "by-hand-panels-ambient-atmosphere-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340870195",
+        "status": "DRAFT",
+        "title": "By Hand Panels Ambient Atmosphere",
+        "updated_at": "2026-09-02T23:22:10Z",
+        "variant_id": "gid://shopify/ProductVariant/44814411989043"
+      },
+      "new_sku": "DWKR-191620",
+      "old_sku": "DWKR-191395",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-2",
+        "product_id": "",
+        "row_id": 18075
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-2",
+        "product_id": "gid://shopify/Product/7942329466931",
+        "row_id": 2854
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:23Z",
+          "handle": "dream-another-dream-2-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329466931",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 2",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400159795"
+        },
+        {
+          "created_at": "2026-09-02T23:21:54Z",
+          "handle": "by-hand-panels-ambient-atmosphere-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340870195",
+          "status": "DRAFT",
+          "title": "By Hand Panels Ambient Atmosphere",
+          "updated_at": "2026-09-02T23:22:10Z",
+          "variant_id": "gid://shopify/ProductVariant/44814411989043"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-amorous-arrangements",
+          "product_id": "gid://shopify/Product/7942340935731",
+          "row_id": 2553
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-3",
+          "product_id": "gid://shopify/Product/7942329532467",
+          "row_id": 2855
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-amorous-arrangements",
+        "product_id": "gid://shopify/Product/7942340935731",
+        "row_id": 2553
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:55Z",
+        "handle": "by-hand-panels-amorous-arrangements-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340935731",
+        "status": "DRAFT",
+        "title": "By Hand Panels Amorous Arrangements",
+        "updated_at": "2026-09-02T23:22:14Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412218419"
+      },
+      "new_sku": "DWKR-191621",
+      "old_sku": "DWKR-191396",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-3",
+        "product_id": "",
+        "row_id": 18076
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-3",
+        "product_id": "gid://shopify/Product/7942329532467",
+        "row_id": 2855
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:24Z",
+          "handle": "dream-another-dream-3-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329532467",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 3",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400225331"
+        },
+        {
+          "created_at": "2026-09-02T23:21:55Z",
+          "handle": "by-hand-panels-amorous-arrangements-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340935731",
+          "status": "DRAFT",
+          "title": "By Hand Panels Amorous Arrangements",
+          "updated_at": "2026-09-02T23:22:14Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412218419"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-angelic-autumn",
+          "product_id": "gid://shopify/Product/7942340968499",
+          "row_id": 2554
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-4",
+          "product_id": "gid://shopify/Product/7942329598003",
+          "row_id": 2856
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-angelic-autumn",
+        "product_id": "gid://shopify/Product/7942340968499",
+        "row_id": 2554
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:57Z",
+        "handle": "by-hand-panels-angelic-autumn-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340968499",
+        "status": "DRAFT",
+        "title": "By Hand Panels Angelic Autumn",
+        "updated_at": "2026-09-02T23:22:28Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412251187"
+      },
+      "new_sku": "DWKR-191622",
+      "old_sku": "DWKR-191397",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-4",
+        "product_id": "",
+        "row_id": 18077
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-4",
+        "product_id": "gid://shopify/Product/7942329598003",
+        "row_id": 2856
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:25Z",
+          "handle": "dream-another-dream-4-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329598003",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 4",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400290867"
+        },
+        {
+          "created_at": "2026-09-02T23:21:57Z",
+          "handle": "by-hand-panels-angelic-autumn-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340968499",
+          "status": "DRAFT",
+          "title": "By Hand Panels Angelic Autumn",
+          "updated_at": "2026-09-02T23:22:28Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412251187"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-blissful-branches",
+          "product_id": "gid://shopify/Product/7942341001267",
+          "row_id": 2555
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-5",
+          "product_id": "gid://shopify/Product/7942329663539",
+          "row_id": 2857
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-blissful-branches",
+        "product_id": "gid://shopify/Product/7942341001267",
+        "row_id": 2555
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:58Z",
+        "handle": "by-hand-panels-blissful-branches-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341001267",
+        "status": "DRAFT",
+        "title": "By Hand Panels Blissful Branches",
+        "updated_at": "2026-09-02T23:22:06Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412283955"
+      },
+      "new_sku": "DWKR-191623",
+      "old_sku": "DWKR-191398",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-5",
+        "product_id": "",
+        "row_id": 18078
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-5",
+        "product_id": "gid://shopify/Product/7942329663539",
+        "row_id": 2857
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:26Z",
+          "handle": "dream-another-dream-5-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329663539",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 5",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400356403"
+        },
+        {
+          "created_at": "2026-09-02T23:21:58Z",
+          "handle": "by-hand-panels-blissful-branches-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341001267",
+          "status": "DRAFT",
+          "title": "By Hand Panels Blissful Branches",
+          "updated_at": "2026-09-02T23:22:06Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412283955"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-blossoms-of-beauty",
+          "product_id": "gid://shopify/Product/7942341034035",
+          "row_id": 2556
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-6",
+          "product_id": "gid://shopify/Product/7942329729075",
+          "row_id": 2858
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-blossoms-of-beauty",
+        "product_id": "gid://shopify/Product/7942341034035",
+        "row_id": 2556
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:59Z",
+        "handle": "by-hand-panels-blossoms-of-beauty-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341034035",
+        "status": "DRAFT",
+        "title": "By Hand Panels Blossoms Of Beauty",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412316723"
+      },
+      "new_sku": "DWKR-191624",
+      "old_sku": "DWKR-191399",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-6",
+        "product_id": "",
+        "row_id": 18079
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-6",
+        "product_id": "gid://shopify/Product/7942329729075",
+        "row_id": 2858
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:27Z",
+          "handle": "dream-another-dream-6-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329729075",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 6",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400421939"
+        },
+        {
+          "created_at": "2026-09-02T23:21:59Z",
+          "handle": "by-hand-panels-blossoms-of-beauty-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341034035",
+          "status": "DRAFT",
+          "title": "By Hand Panels Blossoms Of Beauty",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412316723"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-bracing-birds",
+          "product_id": "gid://shopify/Product/7942341132339",
+          "row_id": 2557
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-7",
+          "product_id": "gid://shopify/Product/7942329794611",
+          "row_id": 2859
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-bracing-birds",
+        "product_id": "gid://shopify/Product/7942341132339",
+        "row_id": 2557
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:01Z",
+        "handle": "by-hand-panels-bracing-birds-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341132339",
+        "status": "DRAFT",
+        "title": "By Hand Panels Bracing Birds",
+        "updated_at": "2026-09-02T23:22:17Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412415027"
+      },
+      "new_sku": "DWKR-191625",
+      "old_sku": "DWKR-191400",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-7",
+        "product_id": "",
+        "row_id": 18080
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-7",
+        "product_id": "gid://shopify/Product/7942329794611",
+        "row_id": 2859
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:29Z",
+          "handle": "dream-another-dream-7-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329794611",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 7",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400454707"
+        },
+        {
+          "created_at": "2026-09-02T23:22:01Z",
+          "handle": "by-hand-panels-bracing-birds-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341132339",
+          "status": "DRAFT",
+          "title": "By Hand Panels Bracing Birds",
+          "updated_at": "2026-09-02T23:22:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412415027"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-breathless-bamboo",
+          "product_id": "gid://shopify/Product/7942341197875",
+          "row_id": 2558
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-8",
+          "product_id": "gid://shopify/Product/7942329827379",
+          "row_id": 2860
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-breathless-bamboo",
+        "product_id": "gid://shopify/Product/7942341197875",
+        "row_id": 2558
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:02Z",
+        "handle": "by-hand-panels-breathless-bamboo-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341197875",
+        "status": "DRAFT",
+        "title": "By Hand Panels Breathless Bamboo",
+        "updated_at": "2026-09-02T23:22:43Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412480563"
+      },
+      "new_sku": "DWKR-191626",
+      "old_sku": "DWKR-191401",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-8",
+        "product_id": "",
+        "row_id": 18081
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-8",
+        "product_id": "gid://shopify/Product/7942329827379",
+        "row_id": 2860
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:30Z",
+          "handle": "dream-another-dream-8-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329827379",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 8",
+          "updated_at": "2026-09-02T23:15:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400520243"
+        },
+        {
+          "created_at": "2026-09-02T23:22:02Z",
+          "handle": "by-hand-panels-breathless-bamboo-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341197875",
+          "status": "DRAFT",
+          "title": "By Hand Panels Breathless Bamboo",
+          "updated_at": "2026-09-02T23:22:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412480563"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-captivating-coral",
+          "product_id": "gid://shopify/Product/7942341230643",
+          "row_id": 2559
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-9",
+          "product_id": "gid://shopify/Product/7942329892915",
+          "row_id": 2861
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-captivating-coral",
+        "product_id": "gid://shopify/Product/7942341230643",
+        "row_id": 2559
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:03Z",
+        "handle": "by-hand-panels-captivating-coral-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341230643",
+        "status": "DRAFT",
+        "title": "By Hand Panels Captivating Coral",
+        "updated_at": "2026-09-02T23:22:17Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412513331"
+      },
+      "new_sku": "DWKR-191627",
+      "old_sku": "DWKR-191402",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-9",
+        "product_id": "",
+        "row_id": 18082
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-9",
+        "product_id": "gid://shopify/Product/7942329892915",
+        "row_id": 2861
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:31Z",
+          "handle": "dream-another-dream-9-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329892915",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 9",
+          "updated_at": "2026-09-02T23:15:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400585779"
+        },
+        {
+          "created_at": "2026-09-02T23:22:03Z",
+          "handle": "by-hand-panels-captivating-coral-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341230643",
+          "status": "DRAFT",
+          "title": "By Hand Panels Captivating Coral",
+          "updated_at": "2026-09-02T23:22:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412513331"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-careless-clouds",
+          "product_id": "gid://shopify/Product/7942341263411",
+          "row_id": 2560
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-10",
+          "product_id": "gid://shopify/Product/7942329270323",
+          "row_id": 2862
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-careless-clouds",
+        "product_id": "gid://shopify/Product/7942341263411",
+        "row_id": 2560
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:04Z",
+        "handle": "by-hand-panels-careless-clouds-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341263411",
+        "status": "DRAFT",
+        "title": "By Hand Panels Careless Clouds",
+        "updated_at": "2026-09-02T23:22:23Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412546099"
+      },
+      "new_sku": "DWKR-191628",
+      "old_sku": "DWKR-191403",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-10",
+        "product_id": "",
+        "row_id": 18083
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-10",
+        "product_id": "gid://shopify/Product/7942329270323",
+        "row_id": 2862
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:19Z",
+          "handle": "dream-another-dream-10-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329270323",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 10",
+          "updated_at": "2026-09-02T23:15:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814399963187"
+        },
+        {
+          "created_at": "2026-09-02T23:22:04Z",
+          "handle": "by-hand-panels-careless-clouds-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341263411",
+          "status": "DRAFT",
+          "title": "By Hand Panels Careless Clouds",
+          "updated_at": "2026-09-02T23:22:23Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412546099"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-casual-carnations",
+          "product_id": "gid://shopify/Product/7942341296179",
+          "row_id": 2561
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-11",
+          "product_id": "gid://shopify/Product/7942329335859",
+          "row_id": 2863
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-casual-carnations",
+        "product_id": "gid://shopify/Product/7942341296179",
+        "row_id": 2561
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:05Z",
+        "handle": "by-hand-panels-casual-carnations-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341296179",
+        "status": "DRAFT",
+        "title": "By Hand Panels Casual Carnations",
+        "updated_at": "2026-09-02T23:22:18Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412578867"
+      },
+      "new_sku": "DWKR-191629",
+      "old_sku": "DWKR-191404",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-11",
+        "product_id": "",
+        "row_id": 18084
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-11",
+        "product_id": "gid://shopify/Product/7942329335859",
+        "row_id": 2863
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:20Z",
+          "handle": "dream-another-dream-11-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329335859",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 11",
+          "updated_at": "2026-09-02T23:15:28Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400028723"
+        },
+        {
+          "created_at": "2026-09-02T23:22:05Z",
+          "handle": "by-hand-panels-casual-carnations-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341296179",
+          "status": "DRAFT",
+          "title": "By Hand Panels Casual Carnations",
+          "updated_at": "2026-09-02T23:22:18Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412578867"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-courageous-conifer",
+          "product_id": "gid://shopify/Product/7942341328947",
+          "row_id": 2562
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-12",
+          "product_id": "gid://shopify/Product/7942329401395",
+          "row_id": 2864
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-courageous-conifer",
+        "product_id": "gid://shopify/Product/7942341328947",
+        "row_id": 2562
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:06Z",
+        "handle": "by-hand-panels-courageous-conifer-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341328947",
+        "status": "DRAFT",
+        "title": "By Hand Panels Courageous Conifer",
+        "updated_at": "2026-09-02T23:22:18Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412611635"
+      },
+      "new_sku": "DWKR-191630",
+      "old_sku": "DWKR-191405",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-12",
+        "product_id": "",
+        "row_id": 18085
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-12",
+        "product_id": "gid://shopify/Product/7942329401395",
+        "row_id": 2864
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:21Z",
+          "handle": "dream-another-dream-12-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329401395",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 12",
+          "updated_at": "2026-09-02T23:15:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400094259"
+        },
+        {
+          "created_at": "2026-09-02T23:22:06Z",
+          "handle": "by-hand-panels-courageous-conifer-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341328947",
+          "status": "DRAFT",
+          "title": "By Hand Panels Courageous Conifer",
+          "updated_at": "2026-09-02T23:22:18Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412611635"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-dapper-daisy",
+          "product_id": "gid://shopify/Product/7942341394483",
+          "row_id": 2563
+        },
+        {
+          "handle": "by-hand-smooth",
+          "mfr_sku": "by-hand-smooth-default-title",
+          "product_id": "gid://shopify/Product/7942327828531",
+          "row_id": 2537
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-dapper-daisy",
+        "product_id": "gid://shopify/Product/7942341394483",
+        "row_id": 2563
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:08Z",
+        "handle": "by-hand-panels-dapper-daisy-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341394483",
+        "status": "DRAFT",
+        "title": "By Hand Panels Dapper Daisy",
+        "updated_at": "2026-09-02T23:22:21Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412677171"
+      },
+      "new_sku": "DWKR-191631",
+      "old_sku": "DWKR-191406",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "by-hand-smooth",
+        "mfr_sku": "by-hand-smooth-default-title",
+        "product_id": "gid://shopify/Product/7942327828531",
+        "row_id": 2537
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:14:31Z",
+          "handle": "by-hand-smooth-default-title-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942327828531",
+          "status": "DRAFT",
+          "title": "By Hand Smooth Default Title",
+          "updated_at": "2026-09-02T23:14:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814397866035"
+        },
+        {
+          "created_at": "2026-09-02T23:22:08Z",
+          "handle": "by-hand-panels-dapper-daisy-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341394483",
+          "status": "DRAFT",
+          "title": "By Hand Panels Dapper Daisy",
+          "updated_at": "2026-09-02T23:22:21Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412677171"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-dazzling-diamonds",
+          "product_id": "gid://shopify/Product/7942341427251",
+          "row_id": 2564
+        },
+        {
+          "handle": "divine",
+          "mfr_sku": "divine-blue-tweed",
+          "product_id": "gid://shopify/Product/7942329008179",
+          "row_id": 2703
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-dazzling-diamonds",
+        "product_id": "gid://shopify/Product/7942341427251",
+        "row_id": 2564
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:09Z",
+        "handle": "by-hand-panels-dazzling-diamonds-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341427251",
+        "status": "DRAFT",
+        "title": "By Hand Panels Dazzling Diamonds",
+        "updated_at": "2026-09-02T23:23:24Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412709939"
+      },
+      "new_sku": "DWKR-191632",
+      "old_sku": "DWKR-191407",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "divine",
+        "mfr_sku": "divine-blue-tweed",
+        "product_id": "gid://shopify/Product/7942329008179",
+        "row_id": 2703
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:13Z",
+          "handle": "divine-blue-tweed-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329008179",
+          "status": "DRAFT",
+          "title": "DIVINE Blue Tweed",
+          "updated_at": "2026-09-02T23:15:25Z",
+          "variant_id": "gid://shopify/ProductVariant/44814399701043"
+        },
+        {
+          "created_at": "2026-09-02T23:22:09Z",
+          "handle": "by-hand-panels-dazzling-diamonds-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341427251",
+          "status": "DRAFT",
+          "title": "By Hand Panels Dazzling Diamonds",
+          "updated_at": "2026-09-02T23:23:24Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412709939"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-definitive-dandelion",
+          "product_id": "gid://shopify/Product/7942341492787",
+          "row_id": 2565
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-adobe",
+          "product_id": "gid://shopify/Product/7942330613811",
+          "row_id": 2486
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-definitive-dandelion",
+        "product_id": "gid://shopify/Product/7942341492787",
+        "row_id": 2565
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:10Z",
+        "handle": "by-hand-panels-definitive-dandelion-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341492787",
+        "status": "DRAFT",
+        "title": "By Hand Panels Definitive Dandelion",
+        "updated_at": "2026-09-02T23:22:18Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412775475"
+      },
+      "new_sku": "DWKR-191633",
+      "old_sku": "DWKR-191408",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-adobe",
+        "product_id": "gid://shopify/Product/7942330613811",
+        "row_id": 2486
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:45Z",
+          "handle": "funkadelic-adobe-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330613811",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Adobe",
+          "updated_at": "2026-09-02T23:15:54Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401273907"
+        },
+        {
+          "created_at": "2026-09-02T23:22:10Z",
+          "handle": "by-hand-panels-definitive-dandelion-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341492787",
+          "status": "DRAFT",
+          "title": "By Hand Panels Definitive Dandelion",
+          "updated_at": "2026-09-02T23:22:18Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412775475"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-divine-desert",
+          "product_id": "gid://shopify/Product/7942341558323",
+          "row_id": 2566
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-fawn",
+          "product_id": "gid://shopify/Product/7942330646579",
+          "row_id": 2489
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-divine-desert",
+        "product_id": "gid://shopify/Product/7942341558323",
+        "row_id": 2566
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:11Z",
+        "handle": "by-hand-panels-divine-desert-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341558323",
+        "status": "DRAFT",
+        "title": "By Hand Panels Divine Desert",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412841011"
+      },
+      "new_sku": "DWKR-191634",
+      "old_sku": "DWKR-191409",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-fawn",
+        "product_id": "gid://shopify/Product/7942330646579",
+        "row_id": 2489
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:46Z",
+          "handle": "funkadelic-fawn-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330646579",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Fawn",
+          "updated_at": "2026-09-02T23:16:03Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401339443"
+        },
+        {
+          "created_at": "2026-09-02T23:22:11Z",
+          "handle": "by-hand-panels-divine-desert-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341558323",
+          "status": "DRAFT",
+          "title": "By Hand Panels Divine Desert",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412841011"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-effluent-environment",
+          "product_id": "gid://shopify/Product/7942341591091",
+          "row_id": 2567
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-mallard",
+          "product_id": "gid://shopify/Product/7942330712115",
+          "row_id": 2487
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-effluent-environment",
+        "product_id": "gid://shopify/Product/7942341591091",
+        "row_id": 2567
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:12Z",
+        "handle": "by-hand-panels-effluent-environment-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341591091",
+        "status": "DRAFT",
+        "title": "By Hand Panels Effluent Environment",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412873779"
+      },
+      "new_sku": "DWKR-191635",
+      "old_sku": "DWKR-191410",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-mallard",
+        "product_id": "gid://shopify/Product/7942330712115",
+        "row_id": 2487
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:47Z",
+          "handle": "funkadelic-mallard-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330712115",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Mallard",
+          "updated_at": "2026-09-02T23:15:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401404979"
+        },
+        {
+          "created_at": "2026-09-02T23:22:12Z",
+          "handle": "by-hand-panels-effluent-environment-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341591091",
+          "status": "DRAFT",
+          "title": "By Hand Panels Effluent Environment",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412873779"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-endless-evergreen",
+          "product_id": "gid://shopify/Product/7942341656627",
+          "row_id": 2568
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-olive",
+          "product_id": "gid://shopify/Product/7942330777651",
+          "row_id": 2488
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-endless-evergreen",
+        "product_id": "gid://shopify/Product/7942341656627",
+        "row_id": 2568
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:14Z",
+        "handle": "by-hand-panels-endless-evergreen-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341656627",
+        "status": "DRAFT",
+        "title": "By Hand Panels Endless Evergreen",
+        "updated_at": "2026-09-02T23:22:25Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412939315"
+      },
+      "new_sku": "DWKR-191636",
+      "old_sku": "DWKR-191411",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-olive",
+        "product_id": "gid://shopify/Product/7942330777651",
+        "row_id": 2488
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:48Z",
+          "handle": "funkadelic-olive-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330777651",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Olive",
+          "updated_at": "2026-09-02T23:15:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401470515"
+        },
+        {
+          "created_at": "2026-09-02T23:22:14Z",
+          "handle": "by-hand-panels-endless-evergreen-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341656627",
+          "status": "DRAFT",
+          "title": "By Hand Panels Endless Evergreen",
+          "updated_at": "2026-09-02T23:22:25Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412939315"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-exterior-essence",
+          "product_id": "gid://shopify/Product/7942341689395",
+          "row_id": 2569
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-blueberry",
+          "product_id": "gid://shopify/Product/7942331334707",
+          "row_id": 2491
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-exterior-essence",
+        "product_id": "gid://shopify/Product/7942341689395",
+        "row_id": 2569
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:15Z",
+        "handle": "by-hand-panels-exterior-essence-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341689395",
+        "status": "DRAFT",
+        "title": "By Hand Panels Exterior Essence",
+        "updated_at": "2026-09-02T23:22:48Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412972083"
+      },
+      "new_sku": "DWKR-191637",
+      "old_sku": "DWKR-191412",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-blueberry",
+        "product_id": "gid://shopify/Product/7942331334707",
+        "row_id": 2491
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:59Z",
+          "handle": "gypsy-soul-blueberry-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331334707",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Blueberry",
+          "updated_at": "2026-09-02T23:16:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402027571"
+        },
+        {
+          "created_at": "2026-09-02T23:22:15Z",
+          "handle": "by-hand-panels-exterior-essence-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341689395",
+          "status": "DRAFT",
+          "title": "By Hand Panels Exterior Essence",
+          "updated_at": "2026-09-02T23:22:48Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412972083"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-faithful-forestry",
+          "product_id": "gid://shopify/Product/7942341722163",
+          "row_id": 2570
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-cappuccino",
+          "product_id": "gid://shopify/Product/7942331400243",
+          "row_id": 2493
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-faithful-forestry",
+        "product_id": "gid://shopify/Product/7942341722163",
+        "row_id": 2570
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:16Z",
+        "handle": "by-hand-panels-faithful-forestry-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341722163",
+        "status": "DRAFT",
+        "title": "By Hand Panels Faithful Forestry",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413004851"
+      },
+      "new_sku": "DWKR-191638",
+      "old_sku": "DWKR-191413",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-cappuccino",
+        "product_id": "gid://shopify/Product/7942331400243",
+        "row_id": 2493
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:00Z",
+          "handle": "gypsy-soul-cappuccino-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331400243",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Cappuccino",
+          "updated_at": "2026-09-02T23:16:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402093107"
+        },
+        {
+          "created_at": "2026-09-02T23:22:16Z",
+          "handle": "by-hand-panels-faithful-forestry-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341722163",
+          "status": "DRAFT",
+          "title": "By Hand Panels Faithful Forestry",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413004851"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-flawless-floral",
+          "product_id": "gid://shopify/Product/7942341754931",
+          "row_id": 2571
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-latte",
+          "product_id": "gid://shopify/Product/7942331465779",
+          "row_id": 2494
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-flawless-floral",
+        "product_id": "gid://shopify/Product/7942341754931",
+        "row_id": 2571
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:17Z",
+        "handle": "by-hand-panels-flawless-floral-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341754931",
+        "status": "DRAFT",
+        "title": "By Hand Panels Flawless Floral",
+        "updated_at": "2026-09-02T23:22:31Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413037619"
+      },
+      "new_sku": "DWKR-191639",
+      "old_sku": "DWKR-191414",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-latte",
+        "product_id": "gid://shopify/Product/7942331465779",
+        "row_id": 2494
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:02Z",
+          "handle": "gypsy-soul-latte-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331465779",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Latte",
+          "updated_at": "2026-09-02T23:16:16Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402158643"
+        },
+        {
+          "created_at": "2026-09-02T23:22:17Z",
+          "handle": "by-hand-panels-flawless-floral-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341754931",
+          "status": "DRAFT",
+          "title": "By Hand Panels Flawless Floral",
+          "updated_at": "2026-09-02T23:22:31Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413037619"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-flowers-feathers",
+          "product_id": "gid://shopify/Product/7942341787699",
+          "row_id": 2572
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-linen",
+          "product_id": "gid://shopify/Product/7942331531315",
+          "row_id": 2495
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-flowers-feathers",
+        "product_id": "gid://shopify/Product/7942341787699",
+        "row_id": 2572
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:18Z",
+        "handle": "by-hand-panels-flowers-feathers-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341787699",
+        "status": "DRAFT",
+        "title": "By Hand Panels Flowers Feathers",
+        "updated_at": "2026-09-02T23:23:22Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413070387"
+      },
+      "new_sku": "DWKR-191640",
+      "old_sku": "DWKR-191415",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-linen",
+        "product_id": "gid://shopify/Product/7942331531315",
+        "row_id": 2495
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:03Z",
+          "handle": "gypsy-soul-linen-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331531315",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Linen",
+          "updated_at": "2026-09-02T23:16:15Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402224179"
+        },
+        {
+          "created_at": "2026-09-02T23:22:18Z",
+          "handle": "by-hand-panels-flowers-feathers-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341787699",
+          "status": "DRAFT",
+          "title": "By Hand Panels Flowers Feathers",
+          "updated_at": "2026-09-02T23:23:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413070387"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-forever-flora",
+          "product_id": "gid://shopify/Product/7942341853235",
+          "row_id": 2573
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-loden",
+          "product_id": "gid://shopify/Product/7942331596851",
+          "row_id": 2492
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-forever-flora",
+        "product_id": "gid://shopify/Product/7942341853235",
+        "row_id": 2573
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:20Z",
+        "handle": "by-hand-panels-forever-flora-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341853235",
+        "status": "DRAFT",
+        "title": "By Hand Panels Forever Flora",
+        "updated_at": "2026-09-02T23:22:29Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413135923"
+      },
+      "new_sku": "DWKR-191641",
+      "old_sku": "DWKR-191416",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-loden",
+        "product_id": "gid://shopify/Product/7942331596851",
+        "row_id": 2492
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:04Z",
+          "handle": "gypsy-soul-loden-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331596851",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Loden",
+          "updated_at": "2026-09-02T23:16:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402289715"
+        },
+        {
+          "created_at": "2026-09-02T23:22:20Z",
+          "handle": "by-hand-panels-forever-flora-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341853235",
+          "status": "DRAFT",
+          "title": "By Hand Panels Forever Flora",
+          "updated_at": "2026-09-02T23:22:29Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413135923"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-formidable-foliage",
+          "product_id": "gid://shopify/Product/7942341886003",
+          "row_id": 2574
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-madder",
+          "product_id": "gid://shopify/Product/7942331662387",
+          "row_id": 2496
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-formidable-foliage",
+        "product_id": "gid://shopify/Product/7942341886003",
+        "row_id": 2574
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:21Z",
+        "handle": "by-hand-panels-formidable-foliage-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341886003",
+        "status": "DRAFT",
+        "title": "By Hand Panels Formidable Foliage",
+        "updated_at": "2026-09-02T23:22:37Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413168691"
+      },
+      "new_sku": "DWKR-191642",
+      "old_sku": "DWKR-191417",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-madder",
+        "product_id": "gid://shopify/Product/7942331662387",
+        "row_id": 2496
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:05Z",
+          "handle": "gypsy-soul-madder-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331662387",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Madder",
+          "updated_at": "2026-09-02T23:16:24Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402355251"
+        },
+        {
+          "created_at": "2026-09-02T23:22:21Z",
+          "handle": "by-hand-panels-formidable-foliage-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341886003",
+          "status": "DRAFT",
+          "title": "By Hand Panels Formidable Foliage",
+          "updated_at": "2026-09-02T23:22:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413168691"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-gilded-grove",
+          "product_id": "gid://shopify/Product/7942341918771",
+          "row_id": 2575
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-aegean",
+          "product_id": "gid://shopify/Product/7942331793459",
+          "row_id": 2680
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-gilded-grove",
+        "product_id": "gid://shopify/Product/7942341918771",
+        "row_id": 2575
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:22Z",
+        "handle": "by-hand-panels-gilded-grove-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341918771",
+        "status": "DRAFT",
+        "title": "By Hand Panels Gilded Grove",
+        "updated_at": "2026-09-02T23:23:20Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413201459"
+      },
+      "new_sku": "DWKR-191643",
+      "old_sku": "DWKR-191418",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-aegean",
+        "product_id": "gid://shopify/Product/7942331793459",
+        "row_id": 2680
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:08Z",
+          "handle": "i-can-t-even-aegean-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331793459",
+          "status": "DRAFT",
+          "title": "I Can't Even Aegean",
+          "updated_at": "2026-09-02T23:16:16Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402486323"
+        },
+        {
+          "created_at": "2026-09-02T23:22:22Z",
+          "handle": "by-hand-panels-gilded-grove-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341918771",
+          "status": "DRAFT",
+          "title": "By Hand Panels Gilded Grove",
+          "updated_at": "2026-09-02T23:23:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413201459"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-glistening-garden",
+          "product_id": "gid://shopify/Product/7942341951539",
+          "row_id": 2576
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-blossom",
+          "product_id": "gid://shopify/Product/7942331858995",
+          "row_id": 2681
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-glistening-garden",
+        "product_id": "gid://shopify/Product/7942341951539",
+        "row_id": 2576
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:23Z",
+        "handle": "by-hand-panels-glistening-garden-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341951539",
+        "status": "DRAFT",
+        "title": "By Hand Panels Glistening Garden",
+        "updated_at": "2026-09-02T23:22:45Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413234227"
+      },
+      "new_sku": "DWKR-191644",
+      "old_sku": "DWKR-191419",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-blossom",
+        "product_id": "gid://shopify/Product/7942331858995",
+        "row_id": 2681
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:09Z",
+          "handle": "i-can-t-even-blossom-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331858995",
+          "status": "DRAFT",
+          "title": "I Can't Even Blossom",
+          "updated_at": "2026-09-02T23:16:16Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402519091"
+        },
+        {
+          "created_at": "2026-09-02T23:22:23Z",
+          "handle": "by-hand-panels-glistening-garden-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341951539",
+          "status": "DRAFT",
+          "title": "By Hand Panels Glistening Garden",
+          "updated_at": "2026-09-02T23:22:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413234227"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-graceful-gaia",
+          "product_id": "gid://shopify/Product/7942342017075",
+          "row_id": 2577
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-crimson",
+          "product_id": "gid://shopify/Product/7942331891763",
+          "row_id": 2682
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-graceful-gaia",
+        "product_id": "gid://shopify/Product/7942342017075",
+        "row_id": 2577
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:25Z",
+        "handle": "by-hand-panels-graceful-gaia-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342017075",
+        "status": "DRAFT",
+        "title": "By Hand Panels Graceful Gaia",
+        "updated_at": "2026-09-02T23:22:32Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413299763"
+      },
+      "new_sku": "DWKR-191645",
+      "old_sku": "DWKR-191420",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-crimson",
+        "product_id": "gid://shopify/Product/7942331891763",
+        "row_id": 2682
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:10Z",
+          "handle": "i-can-t-even-crimson-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331891763",
+          "status": "DRAFT",
+          "title": "I Can't Even Crimson",
+          "updated_at": "2026-09-02T23:16:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402584627"
+        },
+        {
+          "created_at": "2026-09-02T23:22:25Z",
+          "handle": "by-hand-panels-graceful-gaia-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342017075",
+          "status": "DRAFT",
+          "title": "By Hand Panels Graceful Gaia",
+          "updated_at": "2026-09-02T23:22:32Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413299763"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-harmonic-habitat",
+          "product_id": "gid://shopify/Product/7942342049843",
+          "row_id": 2578
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-custard",
+          "product_id": "gid://shopify/Product/7942331957299",
+          "row_id": 2683
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-harmonic-habitat",
+        "product_id": "gid://shopify/Product/7942342049843",
+        "row_id": 2578
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:26Z",
+        "handle": "by-hand-panels-harmonic-habitat-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342049843",
+        "status": "DRAFT",
+        "title": "By Hand Panels Harmonic Habitat",
+        "updated_at": "2026-09-02T23:22:42Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413332531"
+      },
+      "new_sku": "DWKR-191646",
+      "old_sku": "DWKR-191421",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-custard",
+        "product_id": "gid://shopify/Product/7942331957299",
+        "row_id": 2683
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:11Z",
+          "handle": "i-can-t-even-custard-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331957299",
+          "status": "DRAFT",
+          "title": "I Can't Even Custard",
+          "updated_at": "2026-09-02T23:16:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402650163"
+        },
+        {
+          "created_at": "2026-09-02T23:22:26Z",
+          "handle": "by-hand-panels-harmonic-habitat-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342049843",
+          "status": "DRAFT",
+          "title": "By Hand Panels Harmonic Habitat",
+          "updated_at": "2026-09-02T23:22:42Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413332531"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-harmonized-haze",
+          "product_id": "gid://shopify/Product/7942342082611",
+          "row_id": 2579
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-fern",
+          "product_id": "gid://shopify/Product/7942332022835",
+          "row_id": 2684
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-harmonized-haze",
+        "product_id": "gid://shopify/Product/7942342082611",
+        "row_id": 2579
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:27Z",
+        "handle": "by-hand-panels-harmonized-haze-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342082611",
+        "status": "DRAFT",
+        "title": "By Hand Panels Harmonized Haze",
+        "updated_at": "2026-09-02T23:22:40Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413365299"
+      },
+      "new_sku": "DWKR-191647",
+      "old_sku": "DWKR-191422",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-fern",
+        "product_id": "gid://shopify/Product/7942332022835",
+        "row_id": 2684
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:12Z",
+          "handle": "i-can-t-even-fern-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332022835",
+          "status": "DRAFT",
+          "title": "I Can't Even Fern",
+          "updated_at": "2026-09-02T23:16:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402715699"
+        },
+        {
+          "created_at": "2026-09-02T23:22:27Z",
+          "handle": "by-hand-panels-harmonized-haze-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342082611",
+          "status": "DRAFT",
+          "title": "By Hand Panels Harmonized Haze",
+          "updated_at": "2026-09-02T23:22:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413365299"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-inflorescence",
+          "product_id": "gid://shopify/Product/7942342115379",
+          "row_id": 2580
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-flax",
+          "product_id": "gid://shopify/Product/7942332088371",
+          "row_id": 2685
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-inflorescence",
+        "product_id": "gid://shopify/Product/7942342115379",
+        "row_id": 2580
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:28Z",
+        "handle": "by-hand-panels-inflorescence-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342115379",
+        "status": "DRAFT",
+        "title": "By Hand Panels Inflorescence",
+        "updated_at": "2026-09-02T23:22:37Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413398067"
+      },
+      "new_sku": "DWKR-191648",
+      "old_sku": "DWKR-191423",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-flax",
+        "product_id": "gid://shopify/Product/7942332088371",
+        "row_id": 2685
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:13Z",
+          "handle": "i-can-t-even-flax-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332088371",
+          "status": "DRAFT",
+          "title": "I Can't Even Flax",
+          "updated_at": "2026-09-02T23:16:26Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402781235"
+        },
+        {
+          "created_at": "2026-09-02T23:22:28Z",
+          "handle": "by-hand-panels-inflorescence-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342115379",
+          "status": "DRAFT",
+          "title": "By Hand Panels Inflorescence",
+          "updated_at": "2026-09-02T23:22:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413398067"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-lavish-layers",
+          "product_id": "gid://shopify/Product/7942342148147",
+          "row_id": 2581
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-forsythia",
+          "product_id": "gid://shopify/Product/7942332153907",
+          "row_id": 2686
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-lavish-layers",
+        "product_id": "gid://shopify/Product/7942342148147",
+        "row_id": 2581
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:29Z",
+        "handle": "by-hand-panels-lavish-layers-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342148147",
+        "status": "DRAFT",
+        "title": "By Hand Panels Lavish Layers",
+        "updated_at": "2026-09-02T23:22:37Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413430835"
+      },
+      "new_sku": "DWKR-191649",
+      "old_sku": "DWKR-191424",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-forsythia",
+        "product_id": "gid://shopify/Product/7942332153907",
+        "row_id": 2686
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:14Z",
+          "handle": "i-can-t-even-forsythia-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332153907",
+          "status": "DRAFT",
+          "title": "I Can't Even Forsythia",
+          "updated_at": "2026-09-02T23:16:26Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402846771"
+        },
+        {
+          "created_at": "2026-09-02T23:22:29Z",
+          "handle": "by-hand-panels-lavish-layers-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342148147",
+          "status": "DRAFT",
+          "title": "By Hand Panels Lavish Layers",
+          "updated_at": "2026-09-02T23:22:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413430835"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-literary-leaves",
+          "product_id": "gid://shopify/Product/7942342180915",
+          "row_id": 2582
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-haze",
+          "product_id": "gid://shopify/Product/7942332219443",
+          "row_id": 2687
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-literary-leaves",
+        "product_id": "gid://shopify/Product/7942342180915",
+        "row_id": 2582
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:30Z",
+        "handle": "by-hand-panels-literary-leaves-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342180915",
+        "status": "DRAFT",
+        "title": "By Hand Panels Literary Leaves",
+        "updated_at": "2026-09-02T23:22:53Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413463603"
+      },
+      "new_sku": "DWKR-191650",
+      "old_sku": "DWKR-191425",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-haze",
+        "product_id": "gid://shopify/Product/7942332219443",
+        "row_id": 2687
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:16Z",
+          "handle": "i-can-t-even-haze-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332219443",
+          "status": "DRAFT",
+          "title": "I Can't Even Haze",
+          "updated_at": "2026-09-02T23:16:31Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402912307"
+        },
+        {
+          "created_at": "2026-09-02T23:22:30Z",
+          "handle": "by-hand-panels-literary-leaves-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342180915",
+          "status": "DRAFT",
+          "title": "By Hand Panels Literary Leaves",
+          "updated_at": "2026-09-02T23:22:53Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413463603"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-majestic-mystery",
+          "product_id": "gid://shopify/Product/7942342213683",
+          "row_id": 2583
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-hemp",
+          "product_id": "gid://shopify/Product/7942332252211",
+          "row_id": 2688
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-majestic-mystery",
+        "product_id": "gid://shopify/Product/7942342213683",
+        "row_id": 2583
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:32Z",
+        "handle": "by-hand-panels-majestic-mystery-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342213683",
+        "status": "DRAFT",
+        "title": "By Hand Panels Majestic Mystery",
+        "updated_at": "2026-09-02T23:22:52Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413496371"
+      },
+      "new_sku": "DWKR-191651",
+      "old_sku": "DWKR-191426",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-hemp",
+        "product_id": "gid://shopify/Product/7942332252211",
+        "row_id": 2688
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:17Z",
+          "handle": "i-can-t-even-hemp-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332252211",
+          "status": "DRAFT",
+          "title": "I Can't Even Hemp",
+          "updated_at": "2026-09-02T23:16:29Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402945075"
+        },
+        {
+          "created_at": "2026-09-02T23:22:32Z",
+          "handle": "by-hand-panels-majestic-mystery-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342213683",
+          "status": "DRAFT",
+          "title": "By Hand Panels Majestic Mystery",
+          "updated_at": "2026-09-02T23:22:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413496371"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-material-monarch",
+          "product_id": "gid://shopify/Product/7942342246451",
+          "row_id": 2584
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-orchid",
+          "product_id": "gid://shopify/Product/7942332350515",
+          "row_id": 2689
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-material-monarch",
+        "product_id": "gid://shopify/Product/7942342246451",
+        "row_id": 2584
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:33Z",
+        "handle": "by-hand-panels-material-monarch-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342246451",
+        "status": "DRAFT",
+        "title": "By Hand Panels Material Monarch",
+        "updated_at": "2026-09-02T23:22:54Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413529139"
+      },
+      "new_sku": "DWKR-191652",
+      "old_sku": "DWKR-191427",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-orchid",
+        "product_id": "gid://shopify/Product/7942332350515",
+        "row_id": 2689
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:18Z",
+          "handle": "i-can-t-even-orchid-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332350515",
+          "status": "DRAFT",
+          "title": "I Can't Even Orchid",
+          "updated_at": "2026-09-02T23:16:28Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403010611"
+        },
+        {
+          "created_at": "2026-09-02T23:22:33Z",
+          "handle": "by-hand-panels-material-monarch-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342246451",
+          "status": "DRAFT",
+          "title": "By Hand Panels Material Monarch",
+          "updated_at": "2026-09-02T23:22:54Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413529139"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-motionless-maple",
+          "product_id": "gid://shopify/Product/7942342279219",
+          "row_id": 2585
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-slate",
+          "product_id": "gid://shopify/Product/7942332416051",
+          "row_id": 2690
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-motionless-maple",
+        "product_id": "gid://shopify/Product/7942342279219",
+        "row_id": 2585
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:34Z",
+        "handle": "by-hand-panels-motionless-maple-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342279219",
+        "status": "DRAFT",
+        "title": "By Hand Panels Motionless Maple",
+        "updated_at": "2026-09-02T23:23:22Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413561907"
+      },
+      "new_sku": "DWKR-191653",
+      "old_sku": "DWKR-191428",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-slate",
+        "product_id": "gid://shopify/Product/7942332416051",
+        "row_id": 2690
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:19Z",
+          "handle": "i-can-t-even-slate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332416051",
+          "status": "DRAFT",
+          "title": "I Can't Even Slate",
+          "updated_at": "2026-09-02T23:16:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403108915"
+        },
+        {
+          "created_at": "2026-09-02T23:22:34Z",
+          "handle": "by-hand-panels-motionless-maple-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342279219",
+          "status": "DRAFT",
+          "title": "By Hand Panels Motionless Maple",
+          "updated_at": "2026-09-02T23:23:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413561907"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-nourished-nature",
+          "product_id": "gid://shopify/Product/7942342311987",
+          "row_id": 2586
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-snow",
+          "product_id": "gid://shopify/Product/7942332481587",
+          "row_id": 2691
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-nourished-nature",
+        "product_id": "gid://shopify/Product/7942342311987",
+        "row_id": 2586
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:35Z",
+        "handle": "by-hand-panels-nourished-nature-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342311987",
+        "status": "DRAFT",
+        "title": "By Hand Panels Nourished Nature",
+        "updated_at": "2026-09-02T23:22:51Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413594675"
+      },
+      "new_sku": "DWKR-191654",
+      "old_sku": "DWKR-191429",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-snow",
+        "product_id": "gid://shopify/Product/7942332481587",
+        "row_id": 2691
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:20Z",
+          "handle": "i-can-t-even-snow-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332481587",
+          "status": "DRAFT",
+          "title": "I Can't Even Snow",
+          "updated_at": "2026-09-02T23:16:29Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403174451"
+        },
+        {
+          "created_at": "2026-09-02T23:22:35Z",
+          "handle": "by-hand-panels-nourished-nature-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342311987",
+          "status": "DRAFT",
+          "title": "By Hand Panels Nourished Nature",
+          "updated_at": "2026-09-02T23:22:51Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413594675"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-omniscient-oak",
+          "product_id": "gid://shopify/Product/7942342344755",
+          "row_id": 2587
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-stone",
+          "product_id": "gid://shopify/Product/7942332579891",
+          "row_id": 2692
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-omniscient-oak",
+        "product_id": "gid://shopify/Product/7942342344755",
+        "row_id": 2587
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:37Z",
+        "handle": "by-hand-panels-omniscient-oak-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342344755",
+        "status": "DRAFT",
+        "title": "By Hand Panels Omniscient Oak",
+        "updated_at": "2026-09-02T23:22:43Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413627443"
+      },
+      "new_sku": "DWKR-191655",
+      "old_sku": "DWKR-191430",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-stone",
+        "product_id": "gid://shopify/Product/7942332579891",
+        "row_id": 2692
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:21Z",
+          "handle": "i-can-t-even-stone-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332579891",
+          "status": "DRAFT",
+          "title": "I Can't Even Stone",
+          "updated_at": "2026-09-02T23:16:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403272755"
+        },
+        {
+          "created_at": "2026-09-02T23:22:37Z",
+          "handle": "by-hand-panels-omniscient-oak-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342344755",
+          "status": "DRAFT",
+          "title": "By Hand Panels Omniscient Oak",
+          "updated_at": "2026-09-02T23:22:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413627443"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-optimistic-outdoors",
+          "product_id": "gid://shopify/Product/7942342377523",
+          "row_id": 2588
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-storm",
+          "product_id": "gid://shopify/Product/7942332645427",
+          "row_id": 2693
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-optimistic-outdoors",
+        "product_id": "gid://shopify/Product/7942342377523",
+        "row_id": 2588
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:38Z",
+        "handle": "by-hand-panels-optimistic-outdoors-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342377523",
+        "status": "DRAFT",
+        "title": "By Hand Panels Optimistic Outdoors",
+        "updated_at": "2026-09-02T23:22:49Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413660211"
+      },
+      "new_sku": "DWKR-191656",
+      "old_sku": "DWKR-191431",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-storm",
+        "product_id": "gid://shopify/Product/7942332645427",
+        "row_id": 2693
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:22Z",
+          "handle": "i-can-t-even-storm-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332645427",
+          "status": "DRAFT",
+          "title": "I Can't Even Storm",
+          "updated_at": "2026-09-02T23:16:39Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403338291"
+        },
+        {
+          "created_at": "2026-09-02T23:22:38Z",
+          "handle": "by-hand-panels-optimistic-outdoors-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342377523",
+          "status": "DRAFT",
+          "title": "By Hand Panels Optimistic Outdoors",
+          "updated_at": "2026-09-02T23:22:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413660211"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-opulent-orchid",
+          "product_id": "gid://shopify/Product/7942342410291",
+          "row_id": 2589
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-beige",
+          "product_id": "gid://shopify/Product/7942332743731",
+          "row_id": 2822
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-opulent-orchid",
+        "product_id": "gid://shopify/Product/7942342410291",
+        "row_id": 2589
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:39Z",
+        "handle": "by-hand-panels-opulent-orchid-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342410291",
+        "status": "DRAFT",
+        "title": "By Hand Panels Opulent Orchid",
+        "updated_at": "2026-09-02T23:22:52Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413692979"
+      },
+      "new_sku": "DWKR-191657",
+      "old_sku": "DWKR-191432",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-beige",
+        "product_id": "gid://shopify/Product/7942332743731",
+        "row_id": 2822
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:24Z",
+          "handle": "i-m-crushed-beige-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332743731",
+          "status": "DRAFT",
+          "title": "I'm Crushed Beige",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403436595"
+        },
+        {
+          "created_at": "2026-09-02T23:22:39Z",
+          "handle": "by-hand-panels-opulent-orchid-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342410291",
+          "status": "DRAFT",
+          "title": "By Hand Panels Opulent Orchid",
+          "updated_at": "2026-09-02T23:22:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413692979"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-passionate-palms",
+          "product_id": "gid://shopify/Product/7942342443059",
+          "row_id": 2590
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-blanco",
+          "product_id": "gid://shopify/Product/7942332842035",
+          "row_id": 2823
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-passionate-palms",
+        "product_id": "gid://shopify/Product/7942342443059",
+        "row_id": 2590
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:40Z",
+        "handle": "by-hand-panels-passionate-palms-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342443059",
+        "status": "DRAFT",
+        "title": "By Hand Panels Passionate Palms",
+        "updated_at": "2026-09-02T23:22:46Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413725747"
+      },
+      "new_sku": "DWKR-191658",
+      "old_sku": "DWKR-191433",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-blanco",
+        "product_id": "gid://shopify/Product/7942332842035",
+        "row_id": 2823
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:25Z",
+          "handle": "i-m-crushed-blanco-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332842035",
+          "status": "DRAFT",
+          "title": "I'm Crushed Blanco",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403534899"
+        },
+        {
+          "created_at": "2026-09-02T23:22:40Z",
+          "handle": "by-hand-panels-passionate-palms-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342443059",
+          "status": "DRAFT",
+          "title": "By Hand Panels Passionate Palms",
+          "updated_at": "2026-09-02T23:22:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413725747"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-peaceful-pagoda",
+          "product_id": "gid://shopify/Product/7942342475827",
+          "row_id": 2591
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-bronze",
+          "product_id": "gid://shopify/Product/7942332940339",
+          "row_id": 2824
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-peaceful-pagoda",
+        "product_id": "gid://shopify/Product/7942342475827",
+        "row_id": 2591
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:41Z",
+        "handle": "by-hand-panels-peaceful-pagoda-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342475827",
+        "status": "DRAFT",
+        "title": "By Hand Panels Peaceful Pagoda",
+        "updated_at": "2026-09-02T23:22:55Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413758515"
+      },
+      "new_sku": "DWKR-191659",
+      "old_sku": "DWKR-191434",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-bronze",
+        "product_id": "gid://shopify/Product/7942332940339",
+        "row_id": 2824
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:26Z",
+          "handle": "i-m-crushed-bronze-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332940339",
+          "status": "DRAFT",
+          "title": "I'm Crushed Bronze",
+          "updated_at": "2026-09-02T23:16:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403633203"
+        },
+        {
+          "created_at": "2026-09-02T23:22:41Z",
+          "handle": "by-hand-panels-peaceful-pagoda-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342475827",
+          "status": "DRAFT",
+          "title": "By Hand Panels Peaceful Pagoda",
+          "updated_at": "2026-09-02T23:22:55Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413758515"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-pines-and-passion",
+          "product_id": "gid://shopify/Product/7942342508595",
+          "row_id": 2592
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-chocolate",
+          "product_id": "gid://shopify/Product/7942333038643",
+          "row_id": 2821
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-pines-and-passion",
+        "product_id": "gid://shopify/Product/7942342508595",
+        "row_id": 2592
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:42Z",
+        "handle": "by-hand-panels-pines-and-passion-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342508595",
+        "status": "DRAFT",
+        "title": "By Hand Panels Pines And Passion",
+        "updated_at": "2026-09-02T23:22:59Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413791283"
+      },
+      "new_sku": "DWKR-191660",
+      "old_sku": "DWKR-191435",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-chocolate",
+        "product_id": "gid://shopify/Product/7942333038643",
+        "row_id": 2821
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:27Z",
+          "handle": "i-m-crushed-chocolate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333038643",
+          "status": "DRAFT",
+          "title": "I'm Crushed Chocolate",
+          "updated_at": "2026-09-02T23:16:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403665971"
+        },
+        {
+          "created_at": "2026-09-02T23:22:42Z",
+          "handle": "by-hand-panels-pines-and-passion-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342508595",
+          "status": "DRAFT",
+          "title": "By Hand Panels Pines And Passion",
+          "updated_at": "2026-09-02T23:22:59Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413791283"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-priceless-pedals",
+          "product_id": "gid://shopify/Product/7942342574131",
+          "row_id": 2593
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-dove",
+          "product_id": "gid://shopify/Product/7942333071411",
+          "row_id": 2825
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-priceless-pedals",
+        "product_id": "gid://shopify/Product/7942342574131",
+        "row_id": 2593
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:43Z",
+        "handle": "by-hand-panels-priceless-pedals-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342574131",
+        "status": "DRAFT",
+        "title": "By Hand Panels Priceless Pedals",
+        "updated_at": "2026-09-02T23:22:52Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413856819"
+      },
+      "new_sku": "DWKR-191661",
+      "old_sku": "DWKR-191436",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-dove",
+        "product_id": "gid://shopify/Product/7942333071411",
+        "row_id": 2825
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:29Z",
+          "handle": "i-m-crushed-dove-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333071411",
+          "status": "DRAFT",
+          "title": "I'm Crushed Dove",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403764275"
+        },
+        {
+          "created_at": "2026-09-02T23:22:43Z",
+          "handle": "by-hand-panels-priceless-pedals-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342574131",
+          "status": "DRAFT",
+          "title": "By Hand Panels Priceless Pedals",
+          "updated_at": "2026-09-02T23:22:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413856819"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-radiant-rain-drops",
+          "product_id": "gid://shopify/Product/7942342606899",
+          "row_id": 2594
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-lemon",
+          "product_id": "gid://shopify/Product/7942333169715",
+          "row_id": 2826
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-radiant-rain-drops",
+        "product_id": "gid://shopify/Product/7942342606899",
+        "row_id": 2594
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:45Z",
+        "handle": "by-hand-panels-radiant-rain-drops-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342606899",
+        "status": "DRAFT",
+        "title": "By Hand Panels Radiant Rain Drops",
+        "updated_at": "2026-09-02T23:22:58Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413889587"
+      },
+      "new_sku": "DWKR-191662",
+      "old_sku": "DWKR-191437",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-lemon",
+        "product_id": "gid://shopify/Product/7942333169715",
+        "row_id": 2826
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:30Z",
+          "handle": "i-m-crushed-lemon-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333169715",
+          "status": "DRAFT",
+          "title": "I'm Crushed Lemon",
+          "updated_at": "2026-09-02T23:16:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403862579"
+        },
+        {
+          "created_at": "2026-09-02T23:22:45Z",
+          "handle": "by-hand-panels-radiant-rain-drops-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342606899",
+          "status": "DRAFT",
+          "title": "By Hand Panels Radiant Rain Drops",
+          "updated_at": "2026-09-02T23:22:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413889587"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-sacred-scales",
+          "product_id": "gid://shopify/Product/7942342639667",
+          "row_id": 2595
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-mercury",
+          "product_id": "gid://shopify/Product/7942333268019",
+          "row_id": 2827
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-sacred-scales",
+        "product_id": "gid://shopify/Product/7942342639667",
+        "row_id": 2595
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:46Z",
+        "handle": "by-hand-panels-sacred-scales-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342639667",
+        "status": "DRAFT",
+        "title": "By Hand Panels Sacred Scales",
+        "updated_at": "2026-09-02T23:22:59Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413922355"
+      },
+      "new_sku": "DWKR-191663",
+      "old_sku": "DWKR-191438",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-mercury",
+        "product_id": "gid://shopify/Product/7942333268019",
+        "row_id": 2827
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:31Z",
+          "handle": "i-m-crushed-mercury-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333268019",
+          "status": "DRAFT",
+          "title": "I'm Crushed Mercury",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403960883"
+        },
+        {
+          "created_at": "2026-09-02T23:22:46Z",
+          "handle": "by-hand-panels-sacred-scales-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342639667",
+          "status": "DRAFT",
+          "title": "By Hand Panels Sacred Scales",
+          "updated_at": "2026-09-02T23:22:59Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413922355"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-sands-of-time",
+          "product_id": "gid://shopify/Product/7942342672435",
+          "row_id": 2596
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-pewter",
+          "product_id": "gid://shopify/Product/7942333366323",
+          "row_id": 2828
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-sands-of-time",
+        "product_id": "gid://shopify/Product/7942342672435",
+        "row_id": 2596
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:47Z",
+        "handle": "by-hand-panels-sands-of-time-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342672435",
+        "status": "DRAFT",
+        "title": "By Hand Panels Sands Of Time",
+        "updated_at": "2026-09-02T23:22:54Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413955123"
+      },
+      "new_sku": "DWKR-191664",
+      "old_sku": "DWKR-191439",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-pewter",
+        "product_id": "gid://shopify/Product/7942333366323",
+        "row_id": 2828
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:32Z",
+          "handle": "i-m-crushed-pewter-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333366323",
+          "status": "DRAFT",
+          "title": "I'm Crushed Pewter",
+          "updated_at": "2026-09-02T23:16:48Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404059187"
+        },
+        {
+          "created_at": "2026-09-02T23:22:47Z",
+          "handle": "by-hand-panels-sands-of-time-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342672435",
+          "status": "DRAFT",
+          "title": "By Hand Panels Sands Of Time",
+          "updated_at": "2026-09-02T23:22:54Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413955123"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-scenic-sanctuary",
+          "product_id": "gid://shopify/Product/7942342705203",
+          "row_id": 2597
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-slate",
+          "product_id": "gid://shopify/Product/7942333464627",
+          "row_id": 2829
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-scenic-sanctuary",
+        "product_id": "gid://shopify/Product/7942342705203",
+        "row_id": 2597
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:48Z",
+        "handle": "by-hand-panels-scenic-sanctuary-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342705203",
+        "status": "DRAFT",
+        "title": "By Hand Panels Scenic Sanctuary",
+        "updated_at": "2026-09-02T23:22:57Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413987891"
+      },
+      "new_sku": "DWKR-191665",
+      "old_sku": "DWKR-191440",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-slate",
+        "product_id": "gid://shopify/Product/7942333464627",
+        "row_id": 2829
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:33Z",
+          "handle": "i-m-crushed-slate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333464627",
+          "status": "DRAFT",
+          "title": "I'm Crushed Slate",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404157491"
+        },
+        {
+          "created_at": "2026-09-02T23:22:48Z",
+          "handle": "by-hand-panels-scenic-sanctuary-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342705203",
+          "status": "DRAFT",
+          "title": "By Hand Panels Scenic Sanctuary",
+          "updated_at": "2026-09-02T23:22:57Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413987891"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-soothing-surroundings",
+          "product_id": "gid://shopify/Product/7942342737971",
+          "row_id": 2598
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-taupe",
+          "product_id": "gid://shopify/Product/7942333562931",
+          "row_id": 2830
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-soothing-surroundings",
+        "product_id": "gid://shopify/Product/7942342737971",
+        "row_id": 2598
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:49Z",
+        "handle": "by-hand-panels-soothing-surroundings-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342737971",
+        "status": "DRAFT",
+        "title": "By Hand Panels Soothing Surroundings",
+        "updated_at": "2026-09-02T23:23:03Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414020659"
+      },
+      "new_sku": "DWKR-191666",
+      "old_sku": "DWKR-191441",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-taupe",
+        "product_id": "gid://shopify/Product/7942333562931",
+        "row_id": 2830
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:34Z",
+          "handle": "i-m-crushed-taupe-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333562931",
+          "status": "DRAFT",
+          "title": "I'm Crushed Taupe",
+          "updated_at": "2026-09-02T23:16:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404255795"
+        },
+        {
+          "created_at": "2026-09-02T23:22:49Z",
+          "handle": "by-hand-panels-soothing-surroundings-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342737971",
+          "status": "DRAFT",
+          "title": "By Hand Panels Soothing Surroundings",
+          "updated_at": "2026-09-02T23:23:03Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414020659"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-stars-and-spindles",
+          "product_id": "gid://shopify/Product/7942342770739",
+          "row_id": 2599
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-2",
+          "product_id": "gid://shopify/Product/7942334808115",
+          "row_id": 2538
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-stars-and-spindles",
+        "product_id": "gid://shopify/Product/7942342770739",
+        "row_id": 2599
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:51Z",
+        "handle": "by-hand-panels-stars-and-spindles-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342770739",
+        "status": "DRAFT",
+        "title": "By Hand Panels Stars And Spindles",
+        "updated_at": "2026-09-02T23:23:07Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414053427"
+      },
+      "new_sku": "DWKR-191667",
+      "old_sku": "DWKR-191442",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-2",
+        "product_id": "gid://shopify/Product/7942334808115",
+        "row_id": 2538
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:51Z",
+          "handle": "knotty-2-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334808115",
+          "status": "DRAFT",
+          "title": "Knotty 2",
+          "updated_at": "2026-09-02T23:17:05Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405861427"
+        },
+        {
+          "created_at": "2026-09-02T23:22:51Z",
+          "handle": "by-hand-panels-stars-and-spindles-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342770739",
+          "status": "DRAFT",
+          "title": "By Hand Panels Stars And Spindles",
+          "updated_at": "2026-09-02T23:23:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414053427"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-stranded-storm",
+          "product_id": "gid://shopify/Product/7942342803507",
+          "row_id": 2600
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-3",
+          "product_id": "gid://shopify/Product/7942334906419",
+          "row_id": 2539
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-stranded-storm",
+        "product_id": "gid://shopify/Product/7942342803507",
+        "row_id": 2600
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:52Z",
+        "handle": "by-hand-panels-stranded-storm-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342803507",
+        "status": "DRAFT",
+        "title": "By Hand Panels Stranded Storm",
+        "updated_at": "2026-09-02T23:23:07Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414086195"
+      },
+      "new_sku": "DWKR-191668",
+      "old_sku": "DWKR-191443",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-3",
+        "product_id": "gid://shopify/Product/7942334906419",
+        "row_id": 2539
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:52Z",
+          "handle": "knotty-3-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334906419",
+          "status": "DRAFT",
+          "title": "Knotty 3",
+          "updated_at": "2026-09-02T23:17:05Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405959731"
+        },
+        {
+          "created_at": "2026-09-02T23:22:52Z",
+          "handle": "by-hand-panels-stranded-storm-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342803507",
+          "status": "DRAFT",
+          "title": "By Hand Panels Stranded Storm",
+          "updated_at": "2026-09-02T23:23:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414086195"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-stray-stems",
+          "product_id": "gid://shopify/Product/7942342836275",
+          "row_id": 2601
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-4",
+          "product_id": "gid://shopify/Product/7942335004723",
+          "row_id": 2540
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-stray-stems",
+        "product_id": "gid://shopify/Product/7942342836275",
+        "row_id": 2601
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:53Z",
+        "handle": "by-hand-panels-stray-stems-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342836275",
+        "status": "DRAFT",
+        "title": "By Hand Panels Stray Stems",
+        "updated_at": "2026-09-02T23:23:04Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414118963"
+      },
+      "new_sku": "DWKR-191669",
+      "old_sku": "DWKR-191444",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-4",
+        "product_id": "gid://shopify/Product/7942335004723",
+        "row_id": 2540
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:53Z",
+          "handle": "knotty-4-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335004723",
+          "status": "DRAFT",
+          "title": "Knotty 4",
+          "updated_at": "2026-09-02T23:17:08Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406025267"
+        },
+        {
+          "created_at": "2026-09-02T23:22:53Z",
+          "handle": "by-hand-panels-stray-stems-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342836275",
+          "status": "DRAFT",
+          "title": "By Hand Panels Stray Stems",
+          "updated_at": "2026-09-02T23:23:04Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414118963"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-streams-of-sincerity",
+          "product_id": "gid://shopify/Product/7942342869043",
+          "row_id": 2602
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-5",
+          "product_id": "gid://shopify/Product/7942335037491",
+          "row_id": 2541
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-streams-of-sincerity",
+        "product_id": "gid://shopify/Product/7942342869043",
+        "row_id": 2602
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:54Z",
+        "handle": "by-hand-panels-streams-of-sincerity-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342869043",
+        "status": "DRAFT",
+        "title": "By Hand Panels Streams Of Sincerity",
+        "updated_at": "2026-09-02T23:23:02Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414151731"
+      },
+      "new_sku": "DWKR-191670",
+      "old_sku": "DWKR-191445",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-5",
+        "product_id": "gid://shopify/Product/7942335037491",
+        "row_id": 2541
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:55Z",
+          "handle": "knotty-5-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335037491",
+          "status": "DRAFT",
+          "title": "Knotty 5",
+          "updated_at": "2026-09-02T23:17:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406123571"
+        },
+        {
+          "created_at": "2026-09-02T23:22:54Z",
+          "handle": "by-hand-panels-streams-of-sincerity-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342869043",
+          "status": "DRAFT",
+          "title": "By Hand Panels Streams Of Sincerity",
+          "updated_at": "2026-09-02T23:23:02Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414151731"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-tantalizing-trees",
+          "product_id": "gid://shopify/Product/7942342901811",
+          "row_id": 2603
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-7",
+          "product_id": "gid://shopify/Product/7942335135795",
+          "row_id": 2542
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-tantalizing-trees",
+        "product_id": "gid://shopify/Product/7942342901811",
+        "row_id": 2603
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:55Z",
+        "handle": "by-hand-panels-tantalizing-trees-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342901811",
+        "status": "DRAFT",
+        "title": "By Hand Panels Tantalizing Trees",
+        "updated_at": "2026-09-02T23:23:13Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414184499"
+      },
+      "new_sku": "DWKR-191671",
+      "old_sku": "DWKR-191446",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-7",
+        "product_id": "gid://shopify/Product/7942335135795",
+        "row_id": 2542
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:56Z",
+          "handle": "knotty-7-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335135795",
+          "status": "DRAFT",
+          "title": "Knotty 7",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406221875"
+        },
+        {
+          "created_at": "2026-09-02T23:22:55Z",
+          "handle": "by-hand-panels-tantalizing-trees-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342901811",
+          "status": "DRAFT",
+          "title": "By Hand Panels Tantalizing Trees",
+          "updated_at": "2026-09-02T23:23:13Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414184499"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-tender-tulipa",
+          "product_id": "gid://shopify/Product/7942342934579",
+          "row_id": 2604
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-9",
+          "product_id": "gid://shopify/Product/7942335234099",
+          "row_id": 2543
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-tender-tulipa",
+        "product_id": "gid://shopify/Product/7942342934579",
+        "row_id": 2604
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:56Z",
+        "handle": "by-hand-panels-tender-tulipa-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342934579",
+        "status": "DRAFT",
+        "title": "By Hand Panels Tender Tulipa",
+        "updated_at": "2026-09-02T23:23:09Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414217267"
+      },
+      "new_sku": "DWKR-191672",
+      "old_sku": "DWKR-191447",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-9",
+        "product_id": "gid://shopify/Product/7942335234099",
+        "row_id": 2543
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:57Z",
+          "handle": "knotty-9-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335234099",
+          "status": "DRAFT",
+          "title": "Knotty 9",
+          "updated_at": "2026-09-02T23:17:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406320179"
+        },
+        {
+          "created_at": "2026-09-02T23:22:56Z",
+          "handle": "by-hand-panels-tender-tulipa-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342934579",
+          "status": "DRAFT",
+          "title": "By Hand Panels Tender Tulipa",
+          "updated_at": "2026-09-02T23:23:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414217267"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-valiant-vapor",
+          "product_id": "gid://shopify/Product/7942342967347",
+          "row_id": 2605
+        },
+        {
+          "handle": "mind-bending",
+          "mfr_sku": "mind-bending-blue",
+          "product_id": "gid://shopify/Product/7942336249907",
+          "row_id": 2466
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-valiant-vapor",
+        "product_id": "gid://shopify/Product/7942342967347",
+        "row_id": 2605
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:57Z",
+        "handle": "by-hand-panels-valiant-vapor-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342967347",
+        "status": "DRAFT",
+        "title": "By Hand Panels Valiant Vapor",
+        "updated_at": "2026-09-02T23:23:09Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414250035"
+      },
+      "new_sku": "DWKR-191673",
+      "old_sku": "DWKR-191448",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "mind-bending",
+        "mfr_sku": "mind-bending-blue",
+        "product_id": "gid://shopify/Product/7942336249907",
+        "row_id": 2466
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:10Z",
+          "handle": "mind-bending-blue-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336249907",
+          "status": "DRAFT",
+          "title": "MIND BENDING Blue",
+          "updated_at": "2026-09-02T23:17:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407335987"
+        },
+        {
+          "created_at": "2026-09-02T23:22:57Z",
+          "handle": "by-hand-panels-valiant-vapor-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342967347",
+          "status": "DRAFT",
+          "title": "By Hand Panels Valiant Vapor",
+          "updated_at": "2026-09-02T23:23:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414250035"
+        }
+      ]
+    }
+  ],
+  "cross_identity_count": 55,
+  "duplicate_sku_count": 89,
+  "generated_at": "2026-09-03T05:23:01.317552+00:00",
+  "handle_repairs": [
+    {
+      "handle": "chilhowie-alaska-architectural-fabrics",
+      "shopify_product": {
+        "createdAt": "2026-09-02T23:07:50Z",
+        "handle": "chilhowie-alaska-architectural-fabrics",
+        "id": "gid://shopify/Product/7942325927987",
+        "status": "DRAFT",
+        "title": "Chilhowie Alaska",
+        "updatedAt": "2026-09-02T23:08:07Z",
+        "variants": {
+          "nodes": [
+            {
+              "id": "gid://shopify/ProductVariant/44814394196019",
+              "price": "4.25",
+              "sku": "DWKR-190830-Sample"
+            }
+          ]
+        },
+        "vendor": "Architectural Fabrics"
+      },
+      "target": {
+        "abrasion": "100,000",
+        "care": "W",
+        "colorway": "Alaska",
+        "content": "100% POLYVINYL",
+        "finish": "Permablok",
+        "fire_rating": "NFPA 260, CAL 117, UFAC I",
+        "handle": "chilhowie-alaska-architectural-fabrics",
+        "image_confidence": "prefix",
+        "image_url": "https://cdn.shopify.com/s/files/1/0598/5468/4248/files/ala.jpg?v=1726685761",
+        "mfr_sku": "revere-alaska",
+        "origin": "Columbia",
+        "pattern": "Revere",
+        "pool": "A-reconfirmed-old",
+        "price": "4.25",
+        "product_type": "Wallcovering",
+        "repeat": "N/A",
+        "sku": "DWKR-190830",
+        "style": "Transitional",
+        "tags": "Alaska | Architectural Fabrics | Chilhowie | Chilhowie Collection | Commercial | Commercial Wallcovering | Fabric | Made in Columbia | Showroom Line | Transitional | display_variant | quotes",
+        "title": "Chilhowie Alaska",
+        "town": "Chilhowie",
+        "vendor": "Architectural Fabrics",
+        "width": "54\""
+      }
+    },
+    {
+      "handle": "haymarket-obsidian-architectural-fabrics",
+      "shopify_product": {
+        "createdAt": "2026-09-02T23:17:10Z",
+        "handle": "haymarket-obsidian-architectural-fabrics",
+        "id": "gid://shopify/Product/7942336282675",
+        "status": "DRAFT",
+        "title": "Haymarket Obsidian",
+        "updatedAt": "2026-09-02T23:17:20Z",
+        "variants": {
+          "nodes": [
+            {
+              "id": "gid://shopify/ProductVariant/44814407368755",
+              "price": "4.25",
+              "sku": "DWKR-190420-Sample"
+            }
+          ]
+        },
+        "vendor": "Architectural Fabrics"
+      },
+      "target": {
+        "abrasion": "100,000",
+        "care": "WS",
+        "colorway": "Obsidian",
+        "content": "100% POLYESTER",
+        "finish": "Optional",
+        "fire_rating": "UFAC CLASS 1, NFPA 260, CAL 117-2013, BS5852",
+        "handle": "haymarket-obsidian-architectural-fabrics",
+        "image_confidence": "exact",
+        "image_url": "https://cdn.shopify.com/s/files/1/0598/5468/4248/files/OBSIDIAN-300x300.jpg?v=1726702030",
+        "mfr_sku": "strie-vibez-obsidian",
+        "origin": "Turkey",
+        "pattern": "Strie Vibez",
+        "pool": "A-reconfirmed-old",
+        "price": "4.25",
+        "product_type": "Fabric",
+        "repeat": "N/A",
+        "sku": "DWKR-190420",
+        "style": "Luxe",
+        "tags": "Architectural Fabrics | Commercial | Fabric | Haymarket | Haymarket Collection | Luxe | Made in Turkey | Obsidian | Showroom Line | display_variant | quotes",
+        "title": "Haymarket Obsidian",
+        "town": "Haymarket",
+        "vendor": "Architectural Fabrics",
+        "width": "54\""
+      }
+    }
+  ],
+  "mode": "READ_ONLY",
+  "same_identity": [
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335561779"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-chocolate",
+          "product_id": "gid://shopify/Product/7942335594547",
+          "row_id": 413
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-CHOCOLATE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335594547",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:01Z",
+          "handle": "haymarket-chocolate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335561779",
+          "status": "DRAFT",
+          "title": "Haymarket Chocolate",
+          "updated_at": "2026-09-02T23:17:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406647859"
+        },
+        {
+          "created_at": "2026-09-02T23:17:01Z",
+          "handle": "haymarket-chocolate-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335594547",
+          "status": "DRAFT",
+          "title": "Haymarket Chocolate",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406713395"
+        }
+      ],
+      "sku": "DWKR-190413-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335660083"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-copper",
+          "product_id": "gid://shopify/Product/7942335725619",
+          "row_id": 414
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-COPPER"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335725619",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:03Z",
+          "handle": "haymarket-copper-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335660083",
+          "status": "DRAFT",
+          "title": "Haymarket Copper",
+          "updated_at": "2026-09-02T23:17:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406778931"
+        },
+        {
+          "created_at": "2026-09-02T23:17:03Z",
+          "handle": "haymarket-copper-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335725619",
+          "status": "DRAFT",
+          "title": "Haymarket Copper",
+          "updated_at": "2026-09-02T23:17:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406811699"
+        }
+      ],
+      "sku": "DWKR-190414-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335791155"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-ecru",
+          "product_id": "gid://shopify/Product/7942335823923",
+          "row_id": 415
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-ECRU"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335823923",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:04Z",
+          "handle": "haymarket-ecru-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335791155",
+          "status": "DRAFT",
+          "title": "Haymarket Ecru",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406877235"
+        },
+        {
+          "created_at": "2026-09-02T23:17:04Z",
+          "handle": "haymarket-ecru-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335823923",
+          "status": "DRAFT",
+          "title": "Haymarket Ecru",
+          "updated_at": "2026-09-02T23:17:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406910003"
+        }
+      ],
+      "sku": "DWKR-190415-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335889459"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-golden",
+          "product_id": "gid://shopify/Product/7942335922227",
+          "row_id": 416
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-GOLDEN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335922227",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:05Z",
+          "handle": "haymarket-golden-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335889459",
+          "status": "DRAFT",
+          "title": "Haymarket Golden",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406975539"
+        },
+        {
+          "created_at": "2026-09-02T23:17:06Z",
+          "handle": "haymarket-golden-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335922227",
+          "status": "DRAFT",
+          "title": "Haymarket Golden",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407008307"
+        }
+      ],
+      "sku": "DWKR-190416-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335987763"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-leaf",
+          "product_id": "gid://shopify/Product/7942336020531",
+          "row_id": 417
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-LEAF"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942336020531",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:07Z",
+          "handle": "haymarket-leaf-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335987763",
+          "status": "DRAFT",
+          "title": "Haymarket Leaf",
+          "updated_at": "2026-09-02T23:17:15Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407073843"
+        },
+        {
+          "created_at": "2026-09-02T23:17:07Z",
+          "handle": "haymarket-leaf-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336020531",
+          "status": "DRAFT",
+          "title": "Haymarket Leaf",
+          "updated_at": "2026-09-02T23:17:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407106611"
+        }
+      ],
+      "sku": "DWKR-190417-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942336151603"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-navy",
+          "product_id": "gid://shopify/Product/7942336184371",
+          "row_id": 419
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-NAVY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942336184371",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:09Z",
+          "handle": "haymarket-navy-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336151603",
+          "status": "DRAFT",
+          "title": "Haymarket Navy",
+          "updated_at": "2026-09-02T23:17:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407237683"
+        },
+        {
+          "created_at": "2026-09-02T23:17:09Z",
+          "handle": "haymarket-navy-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336184371",
+          "status": "DRAFT",
+          "title": "Haymarket Navy",
+          "updated_at": "2026-09-02T23:17:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407270451"
+        }
+      ],
+      "sku": "DWKR-190419-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334677043"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-azure",
+          "product_id": "gid://shopify/Product/7942334742579",
+          "row_id": 426
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-AZURE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334742579",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:50Z",
+          "handle": "halifax-azure-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334677043",
+          "status": "DRAFT",
+          "title": "Halifax Azure",
+          "updated_at": "2026-09-02T23:17:11Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405763123"
+        },
+        {
+          "created_at": "2026-09-02T23:16:50Z",
+          "handle": "halifax-azure-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334742579",
+          "status": "DRAFT",
+          "title": "Halifax Azure",
+          "updated_at": "2026-09-02T23:17:13Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405828659"
+        }
+      ],
+      "sku": "DWKR-190426-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334840883"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-charcoal",
+          "product_id": "gid://shopify/Product/7942334873651",
+          "row_id": 428
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-CHARCOAL"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334873651",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:52Z",
+          "handle": "halifax-charcoal-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334840883",
+          "status": "DRAFT",
+          "title": "Halifax Charcoal",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405926963"
+        },
+        {
+          "created_at": "2026-09-02T23:16:52Z",
+          "handle": "halifax-charcoal-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334873651",
+          "status": "DRAFT",
+          "title": "Halifax Charcoal",
+          "updated_at": "2026-09-02T23:17:01Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405992499"
+        }
+      ],
+      "sku": "DWKR-190428-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334939187"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-jazz",
+          "product_id": "gid://shopify/Product/7942334971955",
+          "row_id": 429
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-JAZZ"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334971955",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:53Z",
+          "handle": "halifax-jazz-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334939187",
+          "status": "DRAFT",
+          "title": "Halifax Jazz",
+          "updated_at": "2026-09-02T23:17:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406058035"
+        },
+        {
+          "created_at": "2026-09-02T23:16:53Z",
+          "handle": "halifax-jazz-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334971955",
+          "status": "DRAFT",
+          "title": "Halifax Jazz",
+          "updated_at": "2026-09-02T23:17:10Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406090803"
+        }
+      ],
+      "sku": "DWKR-190429-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335103027"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-lagoon",
+          "product_id": "gid://shopify/Product/7942335070259",
+          "row_id": 430
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-LAGOON"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335070259",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:55Z",
+          "handle": "halifax-lagoon-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335070259",
+          "status": "DRAFT",
+          "title": "Halifax Lagoon",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406189107"
+        },
+        {
+          "created_at": "2026-09-02T23:16:55Z",
+          "handle": "halifax-lagoon-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335103027",
+          "status": "DRAFT",
+          "title": "Halifax Lagoon",
+          "updated_at": "2026-09-02T23:17:15Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406156339"
+        }
+      ],
+      "sku": "DWKR-190430-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335168563"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-mink",
+          "product_id": "gid://shopify/Product/7942335201331",
+          "row_id": 431
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-MINK"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335201331",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:56Z",
+          "handle": "halifax-mink-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335168563",
+          "status": "DRAFT",
+          "title": "Halifax Mink",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406254643"
+        },
+        {
+          "created_at": "2026-09-02T23:16:56Z",
+          "handle": "halifax-mink-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335201331",
+          "status": "DRAFT",
+          "title": "Halifax Mink",
+          "updated_at": "2026-09-02T23:17:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406287411"
+        }
+      ],
+      "sku": "DWKR-190431-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335266867"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-oxford",
+          "product_id": "gid://shopify/Product/7942335299635",
+          "row_id": 432
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-OXFORD"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335299635",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:57Z",
+          "handle": "halifax-oxford-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335266867",
+          "status": "DRAFT",
+          "title": "Halifax Oxford",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406352947"
+        },
+        {
+          "created_at": "2026-09-02T23:16:58Z",
+          "handle": "halifax-oxford-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335299635",
+          "status": "DRAFT",
+          "title": "Halifax Oxford",
+          "updated_at": "2026-09-02T23:17:08Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406385715"
+        }
+      ],
+      "sku": "DWKR-190432-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335365171"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-salsa",
+          "product_id": "gid://shopify/Product/7942335397939",
+          "row_id": 433
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-SALSA"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335397939",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:59Z",
+          "handle": "halifax-salsa-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335365171",
+          "status": "DRAFT",
+          "title": "Halifax Salsa",
+          "updated_at": "2026-09-02T23:17:13Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406451251"
+        },
+        {
+          "created_at": "2026-09-02T23:16:59Z",
+          "handle": "halifax-salsa-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335397939",
+          "status": "DRAFT",
+          "title": "Halifax Salsa",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406484019"
+        }
+      ],
+      "sku": "DWKR-190433-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335463475"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-spice",
+          "product_id": "gid://shopify/Product/7942335496243",
+          "row_id": 434
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-SPICE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335496243",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:00Z",
+          "handle": "halifax-spice-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335463475",
+          "status": "DRAFT",
+          "title": "Halifax Spice",
+          "updated_at": "2026-09-02T23:17:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406549555"
+        },
+        {
+          "created_at": "2026-09-02T23:17:00Z",
+          "handle": "halifax-spice-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335496243",
+          "status": "DRAFT",
+          "title": "Halifax Spice",
+          "updated_at": "2026-09-02T23:17:12Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406582323"
+        }
+      ],
+      "sku": "DWKR-190434-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333005875"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-bark",
+          "product_id": "gid://shopify/Product/7942332973107",
+          "row_id": 435
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-BARK"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332973107",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:27Z",
+          "handle": "gretna-bark-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332973107",
+          "status": "DRAFT",
+          "title": "Gretna Bark",
+          "updated_at": "2026-09-02T23:16:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403698739"
+        },
+        {
+          "created_at": "2026-09-02T23:16:27Z",
+          "handle": "gretna-bark-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333005875",
+          "status": "DRAFT",
+          "title": "Gretna Bark",
+          "updated_at": "2026-09-02T23:17:05Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403731507"
+        }
+      ],
+      "sku": "DWKR-190435-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333104179"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-canyon",
+          "product_id": "gid://shopify/Product/7942333136947",
+          "row_id": 436
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-CANYON"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333136947",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:29Z",
+          "handle": "gretna-canyon-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333104179",
+          "status": "DRAFT",
+          "title": "Gretna Canyon",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403797043"
+        },
+        {
+          "created_at": "2026-09-02T23:16:29Z",
+          "handle": "gretna-canyon-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333136947",
+          "status": "DRAFT",
+          "title": "Gretna Canyon",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403829811"
+        }
+      ],
+      "sku": "DWKR-190436-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333235251"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-ebony",
+          "product_id": "gid://shopify/Product/7942333202483",
+          "row_id": 437
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-EBONY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333202483",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:30Z",
+          "handle": "gretna-ebony-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333202483",
+          "status": "DRAFT",
+          "title": "Gretna Ebony",
+          "updated_at": "2026-09-02T23:16:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403895347"
+        },
+        {
+          "created_at": "2026-09-02T23:16:30Z",
+          "handle": "gretna-ebony-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333235251",
+          "status": "DRAFT",
+          "title": "Gretna Ebony",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403928115"
+        }
+      ],
+      "sku": "DWKR-190437-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333300787"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-granite",
+          "product_id": "gid://shopify/Product/7942333333555",
+          "row_id": 438
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-GRANITE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333333555",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:31Z",
+          "handle": "gretna-granite-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333300787",
+          "status": "DRAFT",
+          "title": "Gretna Granite",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403993651"
+        },
+        {
+          "created_at": "2026-09-02T23:16:32Z",
+          "handle": "gretna-granite-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333333555",
+          "status": "DRAFT",
+          "title": "Gretna Granite",
+          "updated_at": "2026-09-02T23:16:51Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404026419"
+        }
+      ],
+      "sku": "DWKR-190438-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333399091"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-pacific",
+          "product_id": "gid://shopify/Product/7942333431859",
+          "row_id": 439
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-PACIFIC"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333431859",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:33Z",
+          "handle": "gretna-pacific-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333399091",
+          "status": "DRAFT",
+          "title": "Gretna Pacific",
+          "updated_at": "2026-09-02T23:16:48Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404091955"
+        },
+        {
+          "created_at": "2026-09-02T23:16:33Z",
+          "handle": "gretna-pacific-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333431859",
+          "status": "DRAFT",
+          "title": "Gretna Pacific",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404124723"
+        }
+      ],
+      "sku": "DWKR-190439-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333497395"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-rustic",
+          "product_id": "gid://shopify/Product/7942333530163",
+          "row_id": 440
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-RUSTIC"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333530163",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:34Z",
+          "handle": "gretna-rustic-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333497395",
+          "status": "DRAFT",
+          "title": "Gretna Rustic",
+          "updated_at": "2026-09-02T23:16:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404190259"
+        },
+        {
+          "created_at": "2026-09-02T23:16:34Z",
+          "handle": "gretna-rustic-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333530163",
+          "status": "DRAFT",
+          "title": "Gretna Rustic",
+          "updated_at": "2026-09-02T23:17:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404223027"
+        }
+      ],
+      "sku": "DWKR-190440-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333595699"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-sapphire",
+          "product_id": "gid://shopify/Product/7942333628467",
+          "row_id": 441
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-SAPPHIRE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333628467",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:35Z",
+          "handle": "gretna-sapphire-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333595699",
+          "status": "DRAFT",
+          "title": "Gretna Sapphire",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404288563"
+        },
+        {
+          "created_at": "2026-09-02T23:16:36Z",
+          "handle": "gretna-sapphire-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333628467",
+          "status": "DRAFT",
+          "title": "Gretna Sapphire",
+          "updated_at": "2026-09-02T23:16:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404354099"
+        }
+      ],
+      "sku": "DWKR-190441-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333694003"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-storm",
+          "product_id": "gid://shopify/Product/7942333759539",
+          "row_id": 442
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-STORM"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333759539",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:37Z",
+          "handle": "gretna-storm-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333694003",
+          "status": "DRAFT",
+          "title": "Gretna Storm",
+          "updated_at": "2026-09-02T23:17:00Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404812851"
+        },
+        {
+          "created_at": "2026-09-02T23:16:37Z",
+          "handle": "gretna-storm-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333759539",
+          "status": "DRAFT",
+          "title": "Gretna Storm",
+          "updated_at": "2026-09-02T23:16:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404845619"
+        }
+      ],
+      "sku": "DWKR-190442-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333825075"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-straw",
+          "product_id": "gid://shopify/Product/7942333857843",
+          "row_id": 443
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-STRAW"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333857843",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:38Z",
+          "handle": "gretna-straw-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333825075",
+          "status": "DRAFT",
+          "title": "Gretna Straw",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404911155"
+        },
+        {
+          "created_at": "2026-09-02T23:16:38Z",
+          "handle": "gretna-straw-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333857843",
+          "status": "DRAFT",
+          "title": "Gretna Straw",
+          "updated_at": "2026-09-02T23:16:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404943923"
+        }
+      ],
+      "sku": "DWKR-190443-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333923379"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-thyme",
+          "product_id": "gid://shopify/Product/7942333956147",
+          "row_id": 444
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-THYME"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333956147",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:40Z",
+          "handle": "gretna-thyme-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333923379",
+          "status": "DRAFT",
+          "title": "Gretna Thyme",
+          "updated_at": "2026-09-02T23:16:51Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405009459"
+        },
+        {
+          "created_at": "2026-09-02T23:16:40Z",
+          "handle": "gretna-thyme-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333956147",
+          "status": "DRAFT",
+          "title": "Gretna Thyme",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405042227"
+        }
+      ],
+      "sku": "DWKR-190444-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334021683"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-brown",
+          "product_id": "gid://shopify/Product/7942334054451",
+          "row_id": 801
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-BROWN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334054451",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:41Z",
+          "handle": "grundy-brown-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334021683",
+          "status": "DRAFT",
+          "title": "Grundy Brown",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405107763"
+        },
+        {
+          "created_at": "2026-09-02T23:16:41Z",
+          "handle": "grundy-brown-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334054451",
+          "status": "DRAFT",
+          "title": "Grundy Brown",
+          "updated_at": "2026-09-02T23:16:59Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405140531"
+        }
+      ],
+      "sku": "DWKR-190801-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334152755"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-cottonwood",
+          "product_id": "gid://shopify/Product/7942334119987",
+          "row_id": 802
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-COTTONWOOD"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334119987",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:42Z",
+          "handle": "grundy-cottonwood-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334119987",
+          "status": "DRAFT",
+          "title": "Grundy Cottonwood",
+          "updated_at": "2026-09-02T23:16:55Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405206067"
+        },
+        {
+          "created_at": "2026-09-02T23:16:42Z",
+          "handle": "grundy-cottonwood-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334152755",
+          "status": "DRAFT",
+          "title": "Grundy Cottonwood",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405238835"
+        }
+      ],
+      "sku": "DWKR-190802-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334218291"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-coyote",
+          "product_id": "gid://shopify/Product/7942334251059",
+          "row_id": 803
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-COYOTE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334251059",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:44Z",
+          "handle": "grundy-coyote-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334218291",
+          "status": "DRAFT",
+          "title": "Grundy Coyote",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405304371"
+        },
+        {
+          "created_at": "2026-09-02T23:16:44Z",
+          "handle": "grundy-coyote-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334251059",
+          "status": "DRAFT",
+          "title": "Grundy Coyote",
+          "updated_at": "2026-09-02T23:16:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405337139"
+        }
+      ],
+      "sku": "DWKR-190803-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334316595"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-flint",
+          "product_id": "gid://shopify/Product/7942334349363",
+          "row_id": 804
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-FLINT"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334349363",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:45Z",
+          "handle": "grundy-flint-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334316595",
+          "status": "DRAFT",
+          "title": "Grundy Flint",
+          "updated_at": "2026-09-02T23:16:57Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405402675"
+        },
+        {
+          "created_at": "2026-09-02T23:16:45Z",
+          "handle": "grundy-flint-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334349363",
+          "status": "DRAFT",
+          "title": "Grundy Flint",
+          "updated_at": "2026-09-02T23:16:53Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405435443"
+        }
+      ],
+      "sku": "DWKR-190804-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334414899"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-marengo",
+          "product_id": "gid://shopify/Product/7942334447667",
+          "row_id": 805
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-MARENGO"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334447667",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:46Z",
+          "handle": "grundy-marengo-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334414899",
+          "status": "DRAFT",
+          "title": "Grundy Marengo",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405500979"
+        },
+        {
+          "created_at": "2026-09-02T23:16:46Z",
+          "handle": "grundy-marengo-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334447667",
+          "status": "DRAFT",
+          "title": "Grundy Marengo",
+          "updated_at": "2026-09-02T23:16:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405533747"
+        }
+      ],
+      "sku": "DWKR-190805-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334578739"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-tan",
+          "product_id": "gid://shopify/Product/7942334611507",
+          "row_id": 808
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-TAN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334611507",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:48Z",
+          "handle": "grundy-tan-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334578739",
+          "status": "DRAFT",
+          "title": "Grundy Tan",
+          "updated_at": "2026-09-02T23:17:10Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405664819"
+        },
+        {
+          "created_at": "2026-09-02T23:16:49Z",
+          "handle": "grundy-tan-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334611507",
+          "status": "DRAFT",
+          "title": "Grundy Tan",
+          "updated_at": "2026-09-02T23:16:55Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405697587"
+        }
+      ],
+      "sku": "DWKR-190808-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332514355"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-fawn",
+          "product_id": "gid://shopify/Product/7942332547123",
+          "row_id": 1077
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-FAWN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332547123",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:21Z",
+          "handle": "gordonsville-fawn-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332514355",
+          "status": "DRAFT",
+          "title": "Gordonsville Fawn",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403207219"
+        },
+        {
+          "created_at": "2026-09-02T23:16:21Z",
+          "handle": "gordonsville-fawn-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332547123",
+          "status": "DRAFT",
+          "title": "Gordonsville Fawn",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403239987"
+        }
+      ],
+      "sku": "DWKR-191077-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332612659"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-grey",
+          "product_id": "gid://shopify/Product/7942332678195",
+          "row_id": 1078
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-GREY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332678195",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:22Z",
+          "handle": "gordonsville-grey-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332612659",
+          "status": "DRAFT",
+          "title": "Gordonsville Grey",
+          "updated_at": "2026-09-02T23:16:39Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403305523"
+        },
+        {
+          "created_at": "2026-09-02T23:16:22Z",
+          "handle": "gordonsville-grey-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332678195",
+          "status": "DRAFT",
+          "title": "Gordonsville Grey",
+          "updated_at": "2026-09-02T23:16:39Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403371059"
+        }
+      ],
+      "sku": "DWKR-191078-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332710963"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-ivory",
+          "product_id": "gid://shopify/Product/7942332776499",
+          "row_id": 1079
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-IVORY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332776499",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:24Z",
+          "handle": "gordonsville-ivory-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332710963",
+          "status": "DRAFT",
+          "title": "Gordonsville Ivory",
+          "updated_at": "2026-09-02T23:16:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403403827"
+        },
+        {
+          "created_at": "2026-09-02T23:16:24Z",
+          "handle": "gordonsville-ivory-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332776499",
+          "status": "DRAFT",
+          "title": "Gordonsville Ivory",
+          "updated_at": "2026-09-02T23:16:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403469363"
+        }
+      ],
+      "sku": "DWKR-191079-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332874803"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-white",
+          "product_id": "gid://shopify/Product/7942332907571",
+          "row_id": 1081
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-WHITE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332907571",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:26Z",
+          "handle": "gordonsville-white-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332874803",
+          "status": "DRAFT",
+          "title": "Gordonsville White",
+          "updated_at": "2026-09-02T23:16:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403567667"
+        },
+        {
+          "created_at": "2026-09-02T23:16:26Z",
+          "handle": "gordonsville-white-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332907571",
+          "status": "DRAFT",
+          "title": "Gordonsville White",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403600435"
+        }
+      ],
+      "sku": "DWKR-191081-Sample"
+    }
+  ],
+  "same_identity_count": 34,
+  "schema": "tk-10066-recovery-manifest/v1",
+  "shopify_product_count": 1522,
+  "vendor": "Architectural Fabrics"
+}
diff --git a/verification/recovery-manifests/20260903T052418Z.json b/verification/recovery-manifests/20260903T052418Z.json
new file mode 100644
index 0000000..ca2c8aa
--- /dev/null
+++ b/verification/recovery-manifests/20260903T052418Z.json
@@ -0,0 +1,5056 @@
+{
+  "assertions": {
+    "all_archive_targets_are_draft": true,
+    "expected_34_same_identity": true,
+    "expected_55_cross_identity": true,
+    "expected_89_duplicates": true,
+    "fresh_skus_unique": true,
+    "handle_repairs_resolved": true
+  },
+  "cross_identity": [
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-ageless-arrowheads",
+          "product_id": "gid://shopify/Product/7942340804659",
+          "row_id": 2551
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-1",
+          "product_id": "gid://shopify/Product/7942329204787",
+          "row_id": 2853
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-ageless-arrowheads",
+        "product_id": "gid://shopify/Product/7942340804659",
+        "row_id": 2551
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:53Z",
+        "handle": "by-hand-panels-ageless-arrowheads-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340804659",
+        "status": "DRAFT",
+        "title": "By Hand Panels Ageless Arrowheads",
+        "updated_at": "2026-09-02T23:22:25Z",
+        "variant_id": "gid://shopify/ProductVariant/44814411956275"
+      },
+      "new_sku": "DWKR-191619",
+      "old_sku": "DWKR-191394",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-1",
+        "product_id": "",
+        "row_id": 18074
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-1",
+        "product_id": "gid://shopify/Product/7942329204787",
+        "row_id": 2853
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:18Z",
+          "handle": "dream-another-dream-1-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329204787",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 1",
+          "updated_at": "2026-09-02T23:15:53Z",
+          "variant_id": "gid://shopify/ProductVariant/44814399897651"
+        },
+        {
+          "created_at": "2026-09-02T23:21:53Z",
+          "handle": "by-hand-panels-ageless-arrowheads-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340804659",
+          "status": "DRAFT",
+          "title": "By Hand Panels Ageless Arrowheads",
+          "updated_at": "2026-09-02T23:22:25Z",
+          "variant_id": "gid://shopify/ProductVariant/44814411956275"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-ambient-atmosphere",
+          "product_id": "gid://shopify/Product/7942340870195",
+          "row_id": 2552
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-2",
+          "product_id": "gid://shopify/Product/7942329466931",
+          "row_id": 2854
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-ambient-atmosphere",
+        "product_id": "gid://shopify/Product/7942340870195",
+        "row_id": 2552
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:54Z",
+        "handle": "by-hand-panels-ambient-atmosphere-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340870195",
+        "status": "DRAFT",
+        "title": "By Hand Panels Ambient Atmosphere",
+        "updated_at": "2026-09-02T23:22:10Z",
+        "variant_id": "gid://shopify/ProductVariant/44814411989043"
+      },
+      "new_sku": "DWKR-191620",
+      "old_sku": "DWKR-191395",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-2",
+        "product_id": "",
+        "row_id": 18075
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-2",
+        "product_id": "gid://shopify/Product/7942329466931",
+        "row_id": 2854
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:23Z",
+          "handle": "dream-another-dream-2-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329466931",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 2",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400159795"
+        },
+        {
+          "created_at": "2026-09-02T23:21:54Z",
+          "handle": "by-hand-panels-ambient-atmosphere-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340870195",
+          "status": "DRAFT",
+          "title": "By Hand Panels Ambient Atmosphere",
+          "updated_at": "2026-09-02T23:22:10Z",
+          "variant_id": "gid://shopify/ProductVariant/44814411989043"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-amorous-arrangements",
+          "product_id": "gid://shopify/Product/7942340935731",
+          "row_id": 2553
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-3",
+          "product_id": "gid://shopify/Product/7942329532467",
+          "row_id": 2855
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-amorous-arrangements",
+        "product_id": "gid://shopify/Product/7942340935731",
+        "row_id": 2553
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:55Z",
+        "handle": "by-hand-panels-amorous-arrangements-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340935731",
+        "status": "DRAFT",
+        "title": "By Hand Panels Amorous Arrangements",
+        "updated_at": "2026-09-02T23:22:14Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412218419"
+      },
+      "new_sku": "DWKR-191621",
+      "old_sku": "DWKR-191396",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-3",
+        "product_id": "",
+        "row_id": 18076
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-3",
+        "product_id": "gid://shopify/Product/7942329532467",
+        "row_id": 2855
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:24Z",
+          "handle": "dream-another-dream-3-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329532467",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 3",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400225331"
+        },
+        {
+          "created_at": "2026-09-02T23:21:55Z",
+          "handle": "by-hand-panels-amorous-arrangements-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340935731",
+          "status": "DRAFT",
+          "title": "By Hand Panels Amorous Arrangements",
+          "updated_at": "2026-09-02T23:22:14Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412218419"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-angelic-autumn",
+          "product_id": "gid://shopify/Product/7942340968499",
+          "row_id": 2554
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-4",
+          "product_id": "gid://shopify/Product/7942329598003",
+          "row_id": 2856
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-angelic-autumn",
+        "product_id": "gid://shopify/Product/7942340968499",
+        "row_id": 2554
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:57Z",
+        "handle": "by-hand-panels-angelic-autumn-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942340968499",
+        "status": "DRAFT",
+        "title": "By Hand Panels Angelic Autumn",
+        "updated_at": "2026-09-02T23:22:28Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412251187"
+      },
+      "new_sku": "DWKR-191622",
+      "old_sku": "DWKR-191397",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-4",
+        "product_id": "",
+        "row_id": 18077
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-4",
+        "product_id": "gid://shopify/Product/7942329598003",
+        "row_id": 2856
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:25Z",
+          "handle": "dream-another-dream-4-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329598003",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 4",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400290867"
+        },
+        {
+          "created_at": "2026-09-02T23:21:57Z",
+          "handle": "by-hand-panels-angelic-autumn-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942340968499",
+          "status": "DRAFT",
+          "title": "By Hand Panels Angelic Autumn",
+          "updated_at": "2026-09-02T23:22:28Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412251187"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-blissful-branches",
+          "product_id": "gid://shopify/Product/7942341001267",
+          "row_id": 2555
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-5",
+          "product_id": "gid://shopify/Product/7942329663539",
+          "row_id": 2857
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-blissful-branches",
+        "product_id": "gid://shopify/Product/7942341001267",
+        "row_id": 2555
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:58Z",
+        "handle": "by-hand-panels-blissful-branches-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341001267",
+        "status": "DRAFT",
+        "title": "By Hand Panels Blissful Branches",
+        "updated_at": "2026-09-02T23:22:06Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412283955"
+      },
+      "new_sku": "DWKR-191623",
+      "old_sku": "DWKR-191398",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-5",
+        "product_id": "",
+        "row_id": 18078
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-5",
+        "product_id": "gid://shopify/Product/7942329663539",
+        "row_id": 2857
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:26Z",
+          "handle": "dream-another-dream-5-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329663539",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 5",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400356403"
+        },
+        {
+          "created_at": "2026-09-02T23:21:58Z",
+          "handle": "by-hand-panels-blissful-branches-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341001267",
+          "status": "DRAFT",
+          "title": "By Hand Panels Blissful Branches",
+          "updated_at": "2026-09-02T23:22:06Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412283955"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-blossoms-of-beauty",
+          "product_id": "gid://shopify/Product/7942341034035",
+          "row_id": 2556
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-6",
+          "product_id": "gid://shopify/Product/7942329729075",
+          "row_id": 2858
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-blossoms-of-beauty",
+        "product_id": "gid://shopify/Product/7942341034035",
+        "row_id": 2556
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:21:59Z",
+        "handle": "by-hand-panels-blossoms-of-beauty-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341034035",
+        "status": "DRAFT",
+        "title": "By Hand Panels Blossoms Of Beauty",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412316723"
+      },
+      "new_sku": "DWKR-191624",
+      "old_sku": "DWKR-191399",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-6",
+        "product_id": "",
+        "row_id": 18079
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-6",
+        "product_id": "gid://shopify/Product/7942329729075",
+        "row_id": 2858
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:27Z",
+          "handle": "dream-another-dream-6-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329729075",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 6",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400421939"
+        },
+        {
+          "created_at": "2026-09-02T23:21:59Z",
+          "handle": "by-hand-panels-blossoms-of-beauty-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341034035",
+          "status": "DRAFT",
+          "title": "By Hand Panels Blossoms Of Beauty",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412316723"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-bracing-birds",
+          "product_id": "gid://shopify/Product/7942341132339",
+          "row_id": 2557
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-7",
+          "product_id": "gid://shopify/Product/7942329794611",
+          "row_id": 2859
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-bracing-birds",
+        "product_id": "gid://shopify/Product/7942341132339",
+        "row_id": 2557
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:01Z",
+        "handle": "by-hand-panels-bracing-birds-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341132339",
+        "status": "DRAFT",
+        "title": "By Hand Panels Bracing Birds",
+        "updated_at": "2026-09-02T23:22:17Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412415027"
+      },
+      "new_sku": "DWKR-191625",
+      "old_sku": "DWKR-191400",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-7",
+        "product_id": "",
+        "row_id": 18080
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-7",
+        "product_id": "gid://shopify/Product/7942329794611",
+        "row_id": 2859
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:29Z",
+          "handle": "dream-another-dream-7-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329794611",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 7",
+          "updated_at": "2026-09-02T23:15:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400454707"
+        },
+        {
+          "created_at": "2026-09-02T23:22:01Z",
+          "handle": "by-hand-panels-bracing-birds-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341132339",
+          "status": "DRAFT",
+          "title": "By Hand Panels Bracing Birds",
+          "updated_at": "2026-09-02T23:22:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412415027"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-breathless-bamboo",
+          "product_id": "gid://shopify/Product/7942341197875",
+          "row_id": 2558
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-8",
+          "product_id": "gid://shopify/Product/7942329827379",
+          "row_id": 2860
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-breathless-bamboo",
+        "product_id": "gid://shopify/Product/7942341197875",
+        "row_id": 2558
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:02Z",
+        "handle": "by-hand-panels-breathless-bamboo-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341197875",
+        "status": "DRAFT",
+        "title": "By Hand Panels Breathless Bamboo",
+        "updated_at": "2026-09-02T23:22:43Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412480563"
+      },
+      "new_sku": "DWKR-191626",
+      "old_sku": "DWKR-191401",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-8",
+        "product_id": "",
+        "row_id": 18081
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-8",
+        "product_id": "gid://shopify/Product/7942329827379",
+        "row_id": 2860
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:30Z",
+          "handle": "dream-another-dream-8-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329827379",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 8",
+          "updated_at": "2026-09-02T23:15:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400520243"
+        },
+        {
+          "created_at": "2026-09-02T23:22:02Z",
+          "handle": "by-hand-panels-breathless-bamboo-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341197875",
+          "status": "DRAFT",
+          "title": "By Hand Panels Breathless Bamboo",
+          "updated_at": "2026-09-02T23:22:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412480563"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-captivating-coral",
+          "product_id": "gid://shopify/Product/7942341230643",
+          "row_id": 2559
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-9",
+          "product_id": "gid://shopify/Product/7942329892915",
+          "row_id": 2861
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-captivating-coral",
+        "product_id": "gid://shopify/Product/7942341230643",
+        "row_id": 2559
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:03Z",
+        "handle": "by-hand-panels-captivating-coral-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341230643",
+        "status": "DRAFT",
+        "title": "By Hand Panels Captivating Coral",
+        "updated_at": "2026-09-02T23:22:17Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412513331"
+      },
+      "new_sku": "DWKR-191627",
+      "old_sku": "DWKR-191402",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-9",
+        "product_id": "",
+        "row_id": 18082
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-9",
+        "product_id": "gid://shopify/Product/7942329892915",
+        "row_id": 2861
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:31Z",
+          "handle": "dream-another-dream-9-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329892915",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 9",
+          "updated_at": "2026-09-02T23:15:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400585779"
+        },
+        {
+          "created_at": "2026-09-02T23:22:03Z",
+          "handle": "by-hand-panels-captivating-coral-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341230643",
+          "status": "DRAFT",
+          "title": "By Hand Panels Captivating Coral",
+          "updated_at": "2026-09-02T23:22:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412513331"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-careless-clouds",
+          "product_id": "gid://shopify/Product/7942341263411",
+          "row_id": 2560
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-10",
+          "product_id": "gid://shopify/Product/7942329270323",
+          "row_id": 2862
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-careless-clouds",
+        "product_id": "gid://shopify/Product/7942341263411",
+        "row_id": 2560
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:04Z",
+        "handle": "by-hand-panels-careless-clouds-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341263411",
+        "status": "DRAFT",
+        "title": "By Hand Panels Careless Clouds",
+        "updated_at": "2026-09-02T23:22:23Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412546099"
+      },
+      "new_sku": "DWKR-191628",
+      "old_sku": "DWKR-191403",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-10",
+        "product_id": "",
+        "row_id": 18083
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-10",
+        "product_id": "gid://shopify/Product/7942329270323",
+        "row_id": 2862
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:19Z",
+          "handle": "dream-another-dream-10-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329270323",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 10",
+          "updated_at": "2026-09-02T23:15:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814399963187"
+        },
+        {
+          "created_at": "2026-09-02T23:22:04Z",
+          "handle": "by-hand-panels-careless-clouds-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341263411",
+          "status": "DRAFT",
+          "title": "By Hand Panels Careless Clouds",
+          "updated_at": "2026-09-02T23:22:23Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412546099"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-casual-carnations",
+          "product_id": "gid://shopify/Product/7942341296179",
+          "row_id": 2561
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-11",
+          "product_id": "gid://shopify/Product/7942329335859",
+          "row_id": 2863
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-casual-carnations",
+        "product_id": "gid://shopify/Product/7942341296179",
+        "row_id": 2561
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:05Z",
+        "handle": "by-hand-panels-casual-carnations-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341296179",
+        "status": "DRAFT",
+        "title": "By Hand Panels Casual Carnations",
+        "updated_at": "2026-09-02T23:22:18Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412578867"
+      },
+      "new_sku": "DWKR-191629",
+      "old_sku": "DWKR-191404",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-11",
+        "product_id": "",
+        "row_id": 18084
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-11",
+        "product_id": "gid://shopify/Product/7942329335859",
+        "row_id": 2863
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:20Z",
+          "handle": "dream-another-dream-11-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329335859",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 11",
+          "updated_at": "2026-09-02T23:15:28Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400028723"
+        },
+        {
+          "created_at": "2026-09-02T23:22:05Z",
+          "handle": "by-hand-panels-casual-carnations-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341296179",
+          "status": "DRAFT",
+          "title": "By Hand Panels Casual Carnations",
+          "updated_at": "2026-09-02T23:22:18Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412578867"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-courageous-conifer",
+          "product_id": "gid://shopify/Product/7942341328947",
+          "row_id": 2562
+        },
+        {
+          "handle": "dream-another-dream",
+          "mfr_sku": "dream-another-dream-12",
+          "product_id": "gid://shopify/Product/7942329401395",
+          "row_id": 2864
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-courageous-conifer",
+        "product_id": "gid://shopify/Product/7942341328947",
+        "row_id": 2562
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:06Z",
+        "handle": "by-hand-panels-courageous-conifer-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341328947",
+        "status": "DRAFT",
+        "title": "By Hand Panels Courageous Conifer",
+        "updated_at": "2026-09-02T23:22:18Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412611635"
+      },
+      "new_sku": "DWKR-191630",
+      "old_sku": "DWKR-191405",
+      "owner_source": "registry",
+      "registry_owner": {
+        "handle": "",
+        "mfr_sku": "dream-another-dream-12",
+        "product_id": "",
+        "row_id": 18085
+      },
+      "retain_identity": {
+        "handle": "dream-another-dream",
+        "mfr_sku": "dream-another-dream-12",
+        "product_id": "gid://shopify/Product/7942329401395",
+        "row_id": 2864
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:21Z",
+          "handle": "dream-another-dream-12-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329401395",
+          "status": "DRAFT",
+          "title": "Dream Another Dream 12",
+          "updated_at": "2026-09-02T23:15:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814400094259"
+        },
+        {
+          "created_at": "2026-09-02T23:22:06Z",
+          "handle": "by-hand-panels-courageous-conifer-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341328947",
+          "status": "DRAFT",
+          "title": "By Hand Panels Courageous Conifer",
+          "updated_at": "2026-09-02T23:22:18Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412611635"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-dapper-daisy",
+          "product_id": "gid://shopify/Product/7942341394483",
+          "row_id": 2563
+        },
+        {
+          "handle": "by-hand-smooth",
+          "mfr_sku": "by-hand-smooth-default-title",
+          "product_id": "gid://shopify/Product/7942327828531",
+          "row_id": 2537
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-dapper-daisy",
+        "product_id": "gid://shopify/Product/7942341394483",
+        "row_id": 2563
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:08Z",
+        "handle": "by-hand-panels-dapper-daisy-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341394483",
+        "status": "DRAFT",
+        "title": "By Hand Panels Dapper Daisy",
+        "updated_at": "2026-09-02T23:22:21Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412677171"
+      },
+      "new_sku": "DWKR-191631",
+      "old_sku": "DWKR-191406",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "by-hand-smooth",
+        "mfr_sku": "by-hand-smooth-default-title",
+        "product_id": "gid://shopify/Product/7942327828531",
+        "row_id": 2537
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:14:31Z",
+          "handle": "by-hand-smooth-default-title-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942327828531",
+          "status": "DRAFT",
+          "title": "By Hand Smooth Default Title",
+          "updated_at": "2026-09-02T23:14:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814397866035"
+        },
+        {
+          "created_at": "2026-09-02T23:22:08Z",
+          "handle": "by-hand-panels-dapper-daisy-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341394483",
+          "status": "DRAFT",
+          "title": "By Hand Panels Dapper Daisy",
+          "updated_at": "2026-09-02T23:22:21Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412677171"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-dazzling-diamonds",
+          "product_id": "gid://shopify/Product/7942341427251",
+          "row_id": 2564
+        },
+        {
+          "handle": "divine",
+          "mfr_sku": "divine-blue-tweed",
+          "product_id": "gid://shopify/Product/7942329008179",
+          "row_id": 2703
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-dazzling-diamonds",
+        "product_id": "gid://shopify/Product/7942341427251",
+        "row_id": 2564
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:09Z",
+        "handle": "by-hand-panels-dazzling-diamonds-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341427251",
+        "status": "DRAFT",
+        "title": "By Hand Panels Dazzling Diamonds",
+        "updated_at": "2026-09-02T23:23:24Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412709939"
+      },
+      "new_sku": "DWKR-191632",
+      "old_sku": "DWKR-191407",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "divine",
+        "mfr_sku": "divine-blue-tweed",
+        "product_id": "gid://shopify/Product/7942329008179",
+        "row_id": 2703
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:13Z",
+          "handle": "divine-blue-tweed-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942329008179",
+          "status": "DRAFT",
+          "title": "DIVINE Blue Tweed",
+          "updated_at": "2026-09-02T23:15:25Z",
+          "variant_id": "gid://shopify/ProductVariant/44814399701043"
+        },
+        {
+          "created_at": "2026-09-02T23:22:09Z",
+          "handle": "by-hand-panels-dazzling-diamonds-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341427251",
+          "status": "DRAFT",
+          "title": "By Hand Panels Dazzling Diamonds",
+          "updated_at": "2026-09-02T23:23:24Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412709939"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-definitive-dandelion",
+          "product_id": "gid://shopify/Product/7942341492787",
+          "row_id": 2565
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-adobe",
+          "product_id": "gid://shopify/Product/7942330613811",
+          "row_id": 2486
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-definitive-dandelion",
+        "product_id": "gid://shopify/Product/7942341492787",
+        "row_id": 2565
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:10Z",
+        "handle": "by-hand-panels-definitive-dandelion-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341492787",
+        "status": "DRAFT",
+        "title": "By Hand Panels Definitive Dandelion",
+        "updated_at": "2026-09-02T23:22:18Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412775475"
+      },
+      "new_sku": "DWKR-191633",
+      "old_sku": "DWKR-191408",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-adobe",
+        "product_id": "gid://shopify/Product/7942330613811",
+        "row_id": 2486
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:45Z",
+          "handle": "funkadelic-adobe-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330613811",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Adobe",
+          "updated_at": "2026-09-02T23:15:54Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401273907"
+        },
+        {
+          "created_at": "2026-09-02T23:22:10Z",
+          "handle": "by-hand-panels-definitive-dandelion-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341492787",
+          "status": "DRAFT",
+          "title": "By Hand Panels Definitive Dandelion",
+          "updated_at": "2026-09-02T23:22:18Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412775475"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-divine-desert",
+          "product_id": "gid://shopify/Product/7942341558323",
+          "row_id": 2566
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-fawn",
+          "product_id": "gid://shopify/Product/7942330646579",
+          "row_id": 2489
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-divine-desert",
+        "product_id": "gid://shopify/Product/7942341558323",
+        "row_id": 2566
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:11Z",
+        "handle": "by-hand-panels-divine-desert-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341558323",
+        "status": "DRAFT",
+        "title": "By Hand Panels Divine Desert",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412841011"
+      },
+      "new_sku": "DWKR-191634",
+      "old_sku": "DWKR-191409",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-fawn",
+        "product_id": "gid://shopify/Product/7942330646579",
+        "row_id": 2489
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:46Z",
+          "handle": "funkadelic-fawn-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330646579",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Fawn",
+          "updated_at": "2026-09-02T23:16:03Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401339443"
+        },
+        {
+          "created_at": "2026-09-02T23:22:11Z",
+          "handle": "by-hand-panels-divine-desert-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341558323",
+          "status": "DRAFT",
+          "title": "By Hand Panels Divine Desert",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412841011"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-effluent-environment",
+          "product_id": "gid://shopify/Product/7942341591091",
+          "row_id": 2567
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-mallard",
+          "product_id": "gid://shopify/Product/7942330712115",
+          "row_id": 2487
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-effluent-environment",
+        "product_id": "gid://shopify/Product/7942341591091",
+        "row_id": 2567
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:12Z",
+        "handle": "by-hand-panels-effluent-environment-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341591091",
+        "status": "DRAFT",
+        "title": "By Hand Panels Effluent Environment",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412873779"
+      },
+      "new_sku": "DWKR-191635",
+      "old_sku": "DWKR-191410",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-mallard",
+        "product_id": "gid://shopify/Product/7942330712115",
+        "row_id": 2487
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:47Z",
+          "handle": "funkadelic-mallard-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330712115",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Mallard",
+          "updated_at": "2026-09-02T23:15:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401404979"
+        },
+        {
+          "created_at": "2026-09-02T23:22:12Z",
+          "handle": "by-hand-panels-effluent-environment-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341591091",
+          "status": "DRAFT",
+          "title": "By Hand Panels Effluent Environment",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412873779"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-endless-evergreen",
+          "product_id": "gid://shopify/Product/7942341656627",
+          "row_id": 2568
+        },
+        {
+          "handle": "funkadelic",
+          "mfr_sku": "funkadelic-olive",
+          "product_id": "gid://shopify/Product/7942330777651",
+          "row_id": 2488
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-endless-evergreen",
+        "product_id": "gid://shopify/Product/7942341656627",
+        "row_id": 2568
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:14Z",
+        "handle": "by-hand-panels-endless-evergreen-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341656627",
+        "status": "DRAFT",
+        "title": "By Hand Panels Endless Evergreen",
+        "updated_at": "2026-09-02T23:22:25Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412939315"
+      },
+      "new_sku": "DWKR-191636",
+      "old_sku": "DWKR-191411",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "funkadelic",
+        "mfr_sku": "funkadelic-olive",
+        "product_id": "gid://shopify/Product/7942330777651",
+        "row_id": 2488
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:48Z",
+          "handle": "funkadelic-olive-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942330777651",
+          "status": "DRAFT",
+          "title": "FUNKADELIC Olive",
+          "updated_at": "2026-09-02T23:15:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814401470515"
+        },
+        {
+          "created_at": "2026-09-02T23:22:14Z",
+          "handle": "by-hand-panels-endless-evergreen-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341656627",
+          "status": "DRAFT",
+          "title": "By Hand Panels Endless Evergreen",
+          "updated_at": "2026-09-02T23:22:25Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412939315"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-exterior-essence",
+          "product_id": "gid://shopify/Product/7942341689395",
+          "row_id": 2569
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-blueberry",
+          "product_id": "gid://shopify/Product/7942331334707",
+          "row_id": 2491
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-exterior-essence",
+        "product_id": "gid://shopify/Product/7942341689395",
+        "row_id": 2569
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:15Z",
+        "handle": "by-hand-panels-exterior-essence-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341689395",
+        "status": "DRAFT",
+        "title": "By Hand Panels Exterior Essence",
+        "updated_at": "2026-09-02T23:22:48Z",
+        "variant_id": "gid://shopify/ProductVariant/44814412972083"
+      },
+      "new_sku": "DWKR-191637",
+      "old_sku": "DWKR-191412",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-blueberry",
+        "product_id": "gid://shopify/Product/7942331334707",
+        "row_id": 2491
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:15:59Z",
+          "handle": "gypsy-soul-blueberry-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331334707",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Blueberry",
+          "updated_at": "2026-09-02T23:16:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402027571"
+        },
+        {
+          "created_at": "2026-09-02T23:22:15Z",
+          "handle": "by-hand-panels-exterior-essence-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341689395",
+          "status": "DRAFT",
+          "title": "By Hand Panels Exterior Essence",
+          "updated_at": "2026-09-02T23:22:48Z",
+          "variant_id": "gid://shopify/ProductVariant/44814412972083"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-faithful-forestry",
+          "product_id": "gid://shopify/Product/7942341722163",
+          "row_id": 2570
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-cappuccino",
+          "product_id": "gid://shopify/Product/7942331400243",
+          "row_id": 2493
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-faithful-forestry",
+        "product_id": "gid://shopify/Product/7942341722163",
+        "row_id": 2570
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:16Z",
+        "handle": "by-hand-panels-faithful-forestry-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341722163",
+        "status": "DRAFT",
+        "title": "By Hand Panels Faithful Forestry",
+        "updated_at": "2026-09-02T23:22:27Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413004851"
+      },
+      "new_sku": "DWKR-191638",
+      "old_sku": "DWKR-191413",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-cappuccino",
+        "product_id": "gid://shopify/Product/7942331400243",
+        "row_id": 2493
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:00Z",
+          "handle": "gypsy-soul-cappuccino-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331400243",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Cappuccino",
+          "updated_at": "2026-09-02T23:16:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402093107"
+        },
+        {
+          "created_at": "2026-09-02T23:22:16Z",
+          "handle": "by-hand-panels-faithful-forestry-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341722163",
+          "status": "DRAFT",
+          "title": "By Hand Panels Faithful Forestry",
+          "updated_at": "2026-09-02T23:22:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413004851"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-flawless-floral",
+          "product_id": "gid://shopify/Product/7942341754931",
+          "row_id": 2571
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-latte",
+          "product_id": "gid://shopify/Product/7942331465779",
+          "row_id": 2494
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-flawless-floral",
+        "product_id": "gid://shopify/Product/7942341754931",
+        "row_id": 2571
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:17Z",
+        "handle": "by-hand-panels-flawless-floral-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341754931",
+        "status": "DRAFT",
+        "title": "By Hand Panels Flawless Floral",
+        "updated_at": "2026-09-02T23:22:31Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413037619"
+      },
+      "new_sku": "DWKR-191639",
+      "old_sku": "DWKR-191414",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-latte",
+        "product_id": "gid://shopify/Product/7942331465779",
+        "row_id": 2494
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:02Z",
+          "handle": "gypsy-soul-latte-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331465779",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Latte",
+          "updated_at": "2026-09-02T23:16:16Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402158643"
+        },
+        {
+          "created_at": "2026-09-02T23:22:17Z",
+          "handle": "by-hand-panels-flawless-floral-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341754931",
+          "status": "DRAFT",
+          "title": "By Hand Panels Flawless Floral",
+          "updated_at": "2026-09-02T23:22:31Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413037619"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-flowers-feathers",
+          "product_id": "gid://shopify/Product/7942341787699",
+          "row_id": 2572
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-linen",
+          "product_id": "gid://shopify/Product/7942331531315",
+          "row_id": 2495
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-flowers-feathers",
+        "product_id": "gid://shopify/Product/7942341787699",
+        "row_id": 2572
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:18Z",
+        "handle": "by-hand-panels-flowers-feathers-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341787699",
+        "status": "DRAFT",
+        "title": "By Hand Panels Flowers Feathers",
+        "updated_at": "2026-09-02T23:23:22Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413070387"
+      },
+      "new_sku": "DWKR-191640",
+      "old_sku": "DWKR-191415",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-linen",
+        "product_id": "gid://shopify/Product/7942331531315",
+        "row_id": 2495
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:03Z",
+          "handle": "gypsy-soul-linen-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331531315",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Linen",
+          "updated_at": "2026-09-02T23:16:15Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402224179"
+        },
+        {
+          "created_at": "2026-09-02T23:22:18Z",
+          "handle": "by-hand-panels-flowers-feathers-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341787699",
+          "status": "DRAFT",
+          "title": "By Hand Panels Flowers Feathers",
+          "updated_at": "2026-09-02T23:23:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413070387"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-forever-flora",
+          "product_id": "gid://shopify/Product/7942341853235",
+          "row_id": 2573
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-loden",
+          "product_id": "gid://shopify/Product/7942331596851",
+          "row_id": 2492
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-forever-flora",
+        "product_id": "gid://shopify/Product/7942341853235",
+        "row_id": 2573
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:20Z",
+        "handle": "by-hand-panels-forever-flora-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341853235",
+        "status": "DRAFT",
+        "title": "By Hand Panels Forever Flora",
+        "updated_at": "2026-09-02T23:22:29Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413135923"
+      },
+      "new_sku": "DWKR-191641",
+      "old_sku": "DWKR-191416",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-loden",
+        "product_id": "gid://shopify/Product/7942331596851",
+        "row_id": 2492
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:04Z",
+          "handle": "gypsy-soul-loden-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331596851",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Loden",
+          "updated_at": "2026-09-02T23:16:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402289715"
+        },
+        {
+          "created_at": "2026-09-02T23:22:20Z",
+          "handle": "by-hand-panels-forever-flora-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341853235",
+          "status": "DRAFT",
+          "title": "By Hand Panels Forever Flora",
+          "updated_at": "2026-09-02T23:22:29Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413135923"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-formidable-foliage",
+          "product_id": "gid://shopify/Product/7942341886003",
+          "row_id": 2574
+        },
+        {
+          "handle": "gypsy-soul",
+          "mfr_sku": "gypsy-soul-madder",
+          "product_id": "gid://shopify/Product/7942331662387",
+          "row_id": 2496
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-formidable-foliage",
+        "product_id": "gid://shopify/Product/7942341886003",
+        "row_id": 2574
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:21Z",
+        "handle": "by-hand-panels-formidable-foliage-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341886003",
+        "status": "DRAFT",
+        "title": "By Hand Panels Formidable Foliage",
+        "updated_at": "2026-09-02T23:22:37Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413168691"
+      },
+      "new_sku": "DWKR-191642",
+      "old_sku": "DWKR-191417",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "gypsy-soul",
+        "mfr_sku": "gypsy-soul-madder",
+        "product_id": "gid://shopify/Product/7942331662387",
+        "row_id": 2496
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:05Z",
+          "handle": "gypsy-soul-madder-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331662387",
+          "status": "DRAFT",
+          "title": "GYPSY SOUL Madder",
+          "updated_at": "2026-09-02T23:16:24Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402355251"
+        },
+        {
+          "created_at": "2026-09-02T23:22:21Z",
+          "handle": "by-hand-panels-formidable-foliage-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341886003",
+          "status": "DRAFT",
+          "title": "By Hand Panels Formidable Foliage",
+          "updated_at": "2026-09-02T23:22:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413168691"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-gilded-grove",
+          "product_id": "gid://shopify/Product/7942341918771",
+          "row_id": 2575
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-aegean",
+          "product_id": "gid://shopify/Product/7942331793459",
+          "row_id": 2680
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-gilded-grove",
+        "product_id": "gid://shopify/Product/7942341918771",
+        "row_id": 2575
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:22Z",
+        "handle": "by-hand-panels-gilded-grove-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341918771",
+        "status": "DRAFT",
+        "title": "By Hand Panels Gilded Grove",
+        "updated_at": "2026-09-02T23:23:20Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413201459"
+      },
+      "new_sku": "DWKR-191643",
+      "old_sku": "DWKR-191418",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-aegean",
+        "product_id": "gid://shopify/Product/7942331793459",
+        "row_id": 2680
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:08Z",
+          "handle": "i-can-t-even-aegean-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331793459",
+          "status": "DRAFT",
+          "title": "I Can't Even Aegean",
+          "updated_at": "2026-09-02T23:16:16Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402486323"
+        },
+        {
+          "created_at": "2026-09-02T23:22:22Z",
+          "handle": "by-hand-panels-gilded-grove-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341918771",
+          "status": "DRAFT",
+          "title": "By Hand Panels Gilded Grove",
+          "updated_at": "2026-09-02T23:23:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413201459"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-glistening-garden",
+          "product_id": "gid://shopify/Product/7942341951539",
+          "row_id": 2576
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-blossom",
+          "product_id": "gid://shopify/Product/7942331858995",
+          "row_id": 2681
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-glistening-garden",
+        "product_id": "gid://shopify/Product/7942341951539",
+        "row_id": 2576
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:23Z",
+        "handle": "by-hand-panels-glistening-garden-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942341951539",
+        "status": "DRAFT",
+        "title": "By Hand Panels Glistening Garden",
+        "updated_at": "2026-09-02T23:22:45Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413234227"
+      },
+      "new_sku": "DWKR-191644",
+      "old_sku": "DWKR-191419",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-blossom",
+        "product_id": "gid://shopify/Product/7942331858995",
+        "row_id": 2681
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:09Z",
+          "handle": "i-can-t-even-blossom-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331858995",
+          "status": "DRAFT",
+          "title": "I Can't Even Blossom",
+          "updated_at": "2026-09-02T23:16:16Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402519091"
+        },
+        {
+          "created_at": "2026-09-02T23:22:23Z",
+          "handle": "by-hand-panels-glistening-garden-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942341951539",
+          "status": "DRAFT",
+          "title": "By Hand Panels Glistening Garden",
+          "updated_at": "2026-09-02T23:22:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413234227"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-graceful-gaia",
+          "product_id": "gid://shopify/Product/7942342017075",
+          "row_id": 2577
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-crimson",
+          "product_id": "gid://shopify/Product/7942331891763",
+          "row_id": 2682
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-graceful-gaia",
+        "product_id": "gid://shopify/Product/7942342017075",
+        "row_id": 2577
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:25Z",
+        "handle": "by-hand-panels-graceful-gaia-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342017075",
+        "status": "DRAFT",
+        "title": "By Hand Panels Graceful Gaia",
+        "updated_at": "2026-09-02T23:22:32Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413299763"
+      },
+      "new_sku": "DWKR-191645",
+      "old_sku": "DWKR-191420",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-crimson",
+        "product_id": "gid://shopify/Product/7942331891763",
+        "row_id": 2682
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:10Z",
+          "handle": "i-can-t-even-crimson-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331891763",
+          "status": "DRAFT",
+          "title": "I Can't Even Crimson",
+          "updated_at": "2026-09-02T23:16:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402584627"
+        },
+        {
+          "created_at": "2026-09-02T23:22:25Z",
+          "handle": "by-hand-panels-graceful-gaia-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342017075",
+          "status": "DRAFT",
+          "title": "By Hand Panels Graceful Gaia",
+          "updated_at": "2026-09-02T23:22:32Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413299763"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-harmonic-habitat",
+          "product_id": "gid://shopify/Product/7942342049843",
+          "row_id": 2578
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-custard",
+          "product_id": "gid://shopify/Product/7942331957299",
+          "row_id": 2683
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-harmonic-habitat",
+        "product_id": "gid://shopify/Product/7942342049843",
+        "row_id": 2578
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:26Z",
+        "handle": "by-hand-panels-harmonic-habitat-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342049843",
+        "status": "DRAFT",
+        "title": "By Hand Panels Harmonic Habitat",
+        "updated_at": "2026-09-02T23:22:42Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413332531"
+      },
+      "new_sku": "DWKR-191646",
+      "old_sku": "DWKR-191421",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-custard",
+        "product_id": "gid://shopify/Product/7942331957299",
+        "row_id": 2683
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:11Z",
+          "handle": "i-can-t-even-custard-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942331957299",
+          "status": "DRAFT",
+          "title": "I Can't Even Custard",
+          "updated_at": "2026-09-02T23:16:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402650163"
+        },
+        {
+          "created_at": "2026-09-02T23:22:26Z",
+          "handle": "by-hand-panels-harmonic-habitat-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342049843",
+          "status": "DRAFT",
+          "title": "By Hand Panels Harmonic Habitat",
+          "updated_at": "2026-09-02T23:22:42Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413332531"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-harmonized-haze",
+          "product_id": "gid://shopify/Product/7942342082611",
+          "row_id": 2579
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-fern",
+          "product_id": "gid://shopify/Product/7942332022835",
+          "row_id": 2684
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-harmonized-haze",
+        "product_id": "gid://shopify/Product/7942342082611",
+        "row_id": 2579
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:27Z",
+        "handle": "by-hand-panels-harmonized-haze-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342082611",
+        "status": "DRAFT",
+        "title": "By Hand Panels Harmonized Haze",
+        "updated_at": "2026-09-02T23:22:40Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413365299"
+      },
+      "new_sku": "DWKR-191647",
+      "old_sku": "DWKR-191422",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-fern",
+        "product_id": "gid://shopify/Product/7942332022835",
+        "row_id": 2684
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:12Z",
+          "handle": "i-can-t-even-fern-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332022835",
+          "status": "DRAFT",
+          "title": "I Can't Even Fern",
+          "updated_at": "2026-09-02T23:16:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402715699"
+        },
+        {
+          "created_at": "2026-09-02T23:22:27Z",
+          "handle": "by-hand-panels-harmonized-haze-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342082611",
+          "status": "DRAFT",
+          "title": "By Hand Panels Harmonized Haze",
+          "updated_at": "2026-09-02T23:22:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413365299"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-inflorescence",
+          "product_id": "gid://shopify/Product/7942342115379",
+          "row_id": 2580
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-flax",
+          "product_id": "gid://shopify/Product/7942332088371",
+          "row_id": 2685
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-inflorescence",
+        "product_id": "gid://shopify/Product/7942342115379",
+        "row_id": 2580
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:28Z",
+        "handle": "by-hand-panels-inflorescence-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342115379",
+        "status": "DRAFT",
+        "title": "By Hand Panels Inflorescence",
+        "updated_at": "2026-09-02T23:22:37Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413398067"
+      },
+      "new_sku": "DWKR-191648",
+      "old_sku": "DWKR-191423",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-flax",
+        "product_id": "gid://shopify/Product/7942332088371",
+        "row_id": 2685
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:13Z",
+          "handle": "i-can-t-even-flax-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332088371",
+          "status": "DRAFT",
+          "title": "I Can't Even Flax",
+          "updated_at": "2026-09-02T23:16:26Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402781235"
+        },
+        {
+          "created_at": "2026-09-02T23:22:28Z",
+          "handle": "by-hand-panels-inflorescence-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342115379",
+          "status": "DRAFT",
+          "title": "By Hand Panels Inflorescence",
+          "updated_at": "2026-09-02T23:22:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413398067"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-lavish-layers",
+          "product_id": "gid://shopify/Product/7942342148147",
+          "row_id": 2581
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-forsythia",
+          "product_id": "gid://shopify/Product/7942332153907",
+          "row_id": 2686
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-lavish-layers",
+        "product_id": "gid://shopify/Product/7942342148147",
+        "row_id": 2581
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:29Z",
+        "handle": "by-hand-panels-lavish-layers-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342148147",
+        "status": "DRAFT",
+        "title": "By Hand Panels Lavish Layers",
+        "updated_at": "2026-09-02T23:22:37Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413430835"
+      },
+      "new_sku": "DWKR-191649",
+      "old_sku": "DWKR-191424",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-forsythia",
+        "product_id": "gid://shopify/Product/7942332153907",
+        "row_id": 2686
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:14Z",
+          "handle": "i-can-t-even-forsythia-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332153907",
+          "status": "DRAFT",
+          "title": "I Can't Even Forsythia",
+          "updated_at": "2026-09-02T23:16:26Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402846771"
+        },
+        {
+          "created_at": "2026-09-02T23:22:29Z",
+          "handle": "by-hand-panels-lavish-layers-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342148147",
+          "status": "DRAFT",
+          "title": "By Hand Panels Lavish Layers",
+          "updated_at": "2026-09-02T23:22:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413430835"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-literary-leaves",
+          "product_id": "gid://shopify/Product/7942342180915",
+          "row_id": 2582
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-haze",
+          "product_id": "gid://shopify/Product/7942332219443",
+          "row_id": 2687
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-literary-leaves",
+        "product_id": "gid://shopify/Product/7942342180915",
+        "row_id": 2582
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:30Z",
+        "handle": "by-hand-panels-literary-leaves-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342180915",
+        "status": "DRAFT",
+        "title": "By Hand Panels Literary Leaves",
+        "updated_at": "2026-09-02T23:22:53Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413463603"
+      },
+      "new_sku": "DWKR-191650",
+      "old_sku": "DWKR-191425",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-haze",
+        "product_id": "gid://shopify/Product/7942332219443",
+        "row_id": 2687
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:16Z",
+          "handle": "i-can-t-even-haze-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332219443",
+          "status": "DRAFT",
+          "title": "I Can't Even Haze",
+          "updated_at": "2026-09-02T23:16:31Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402912307"
+        },
+        {
+          "created_at": "2026-09-02T23:22:30Z",
+          "handle": "by-hand-panels-literary-leaves-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342180915",
+          "status": "DRAFT",
+          "title": "By Hand Panels Literary Leaves",
+          "updated_at": "2026-09-02T23:22:53Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413463603"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-majestic-mystery",
+          "product_id": "gid://shopify/Product/7942342213683",
+          "row_id": 2583
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-hemp",
+          "product_id": "gid://shopify/Product/7942332252211",
+          "row_id": 2688
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-majestic-mystery",
+        "product_id": "gid://shopify/Product/7942342213683",
+        "row_id": 2583
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:32Z",
+        "handle": "by-hand-panels-majestic-mystery-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342213683",
+        "status": "DRAFT",
+        "title": "By Hand Panels Majestic Mystery",
+        "updated_at": "2026-09-02T23:22:52Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413496371"
+      },
+      "new_sku": "DWKR-191651",
+      "old_sku": "DWKR-191426",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-hemp",
+        "product_id": "gid://shopify/Product/7942332252211",
+        "row_id": 2688
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:17Z",
+          "handle": "i-can-t-even-hemp-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332252211",
+          "status": "DRAFT",
+          "title": "I Can't Even Hemp",
+          "updated_at": "2026-09-02T23:16:29Z",
+          "variant_id": "gid://shopify/ProductVariant/44814402945075"
+        },
+        {
+          "created_at": "2026-09-02T23:22:32Z",
+          "handle": "by-hand-panels-majestic-mystery-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342213683",
+          "status": "DRAFT",
+          "title": "By Hand Panels Majestic Mystery",
+          "updated_at": "2026-09-02T23:22:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413496371"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-material-monarch",
+          "product_id": "gid://shopify/Product/7942342246451",
+          "row_id": 2584
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-orchid",
+          "product_id": "gid://shopify/Product/7942332350515",
+          "row_id": 2689
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-material-monarch",
+        "product_id": "gid://shopify/Product/7942342246451",
+        "row_id": 2584
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:33Z",
+        "handle": "by-hand-panels-material-monarch-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342246451",
+        "status": "DRAFT",
+        "title": "By Hand Panels Material Monarch",
+        "updated_at": "2026-09-02T23:22:54Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413529139"
+      },
+      "new_sku": "DWKR-191652",
+      "old_sku": "DWKR-191427",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-orchid",
+        "product_id": "gid://shopify/Product/7942332350515",
+        "row_id": 2689
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:18Z",
+          "handle": "i-can-t-even-orchid-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332350515",
+          "status": "DRAFT",
+          "title": "I Can't Even Orchid",
+          "updated_at": "2026-09-02T23:16:28Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403010611"
+        },
+        {
+          "created_at": "2026-09-02T23:22:33Z",
+          "handle": "by-hand-panels-material-monarch-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342246451",
+          "status": "DRAFT",
+          "title": "By Hand Panels Material Monarch",
+          "updated_at": "2026-09-02T23:22:54Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413529139"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-motionless-maple",
+          "product_id": "gid://shopify/Product/7942342279219",
+          "row_id": 2585
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-slate",
+          "product_id": "gid://shopify/Product/7942332416051",
+          "row_id": 2690
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-motionless-maple",
+        "product_id": "gid://shopify/Product/7942342279219",
+        "row_id": 2585
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:34Z",
+        "handle": "by-hand-panels-motionless-maple-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342279219",
+        "status": "DRAFT",
+        "title": "By Hand Panels Motionless Maple",
+        "updated_at": "2026-09-02T23:23:22Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413561907"
+      },
+      "new_sku": "DWKR-191653",
+      "old_sku": "DWKR-191428",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-slate",
+        "product_id": "gid://shopify/Product/7942332416051",
+        "row_id": 2690
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:19Z",
+          "handle": "i-can-t-even-slate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332416051",
+          "status": "DRAFT",
+          "title": "I Can't Even Slate",
+          "updated_at": "2026-09-02T23:16:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403108915"
+        },
+        {
+          "created_at": "2026-09-02T23:22:34Z",
+          "handle": "by-hand-panels-motionless-maple-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342279219",
+          "status": "DRAFT",
+          "title": "By Hand Panels Motionless Maple",
+          "updated_at": "2026-09-02T23:23:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413561907"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-nourished-nature",
+          "product_id": "gid://shopify/Product/7942342311987",
+          "row_id": 2586
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-snow",
+          "product_id": "gid://shopify/Product/7942332481587",
+          "row_id": 2691
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-nourished-nature",
+        "product_id": "gid://shopify/Product/7942342311987",
+        "row_id": 2586
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:35Z",
+        "handle": "by-hand-panels-nourished-nature-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342311987",
+        "status": "DRAFT",
+        "title": "By Hand Panels Nourished Nature",
+        "updated_at": "2026-09-02T23:22:51Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413594675"
+      },
+      "new_sku": "DWKR-191654",
+      "old_sku": "DWKR-191429",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-snow",
+        "product_id": "gid://shopify/Product/7942332481587",
+        "row_id": 2691
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:20Z",
+          "handle": "i-can-t-even-snow-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332481587",
+          "status": "DRAFT",
+          "title": "I Can't Even Snow",
+          "updated_at": "2026-09-02T23:16:29Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403174451"
+        },
+        {
+          "created_at": "2026-09-02T23:22:35Z",
+          "handle": "by-hand-panels-nourished-nature-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342311987",
+          "status": "DRAFT",
+          "title": "By Hand Panels Nourished Nature",
+          "updated_at": "2026-09-02T23:22:51Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413594675"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-omniscient-oak",
+          "product_id": "gid://shopify/Product/7942342344755",
+          "row_id": 2587
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-stone",
+          "product_id": "gid://shopify/Product/7942332579891",
+          "row_id": 2692
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-omniscient-oak",
+        "product_id": "gid://shopify/Product/7942342344755",
+        "row_id": 2587
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:37Z",
+        "handle": "by-hand-panels-omniscient-oak-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342344755",
+        "status": "DRAFT",
+        "title": "By Hand Panels Omniscient Oak",
+        "updated_at": "2026-09-02T23:22:43Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413627443"
+      },
+      "new_sku": "DWKR-191655",
+      "old_sku": "DWKR-191430",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-stone",
+        "product_id": "gid://shopify/Product/7942332579891",
+        "row_id": 2692
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:21Z",
+          "handle": "i-can-t-even-stone-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332579891",
+          "status": "DRAFT",
+          "title": "I Can't Even Stone",
+          "updated_at": "2026-09-02T23:16:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403272755"
+        },
+        {
+          "created_at": "2026-09-02T23:22:37Z",
+          "handle": "by-hand-panels-omniscient-oak-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342344755",
+          "status": "DRAFT",
+          "title": "By Hand Panels Omniscient Oak",
+          "updated_at": "2026-09-02T23:22:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413627443"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-optimistic-outdoors",
+          "product_id": "gid://shopify/Product/7942342377523",
+          "row_id": 2588
+        },
+        {
+          "handle": "i-cant-even",
+          "mfr_sku": "i-can-t-even-storm",
+          "product_id": "gid://shopify/Product/7942332645427",
+          "row_id": 2693
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-optimistic-outdoors",
+        "product_id": "gid://shopify/Product/7942342377523",
+        "row_id": 2588
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:38Z",
+        "handle": "by-hand-panels-optimistic-outdoors-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342377523",
+        "status": "DRAFT",
+        "title": "By Hand Panels Optimistic Outdoors",
+        "updated_at": "2026-09-02T23:22:49Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413660211"
+      },
+      "new_sku": "DWKR-191656",
+      "old_sku": "DWKR-191431",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "i-cant-even",
+        "mfr_sku": "i-can-t-even-storm",
+        "product_id": "gid://shopify/Product/7942332645427",
+        "row_id": 2693
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:22Z",
+          "handle": "i-can-t-even-storm-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332645427",
+          "status": "DRAFT",
+          "title": "I Can't Even Storm",
+          "updated_at": "2026-09-02T23:16:39Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403338291"
+        },
+        {
+          "created_at": "2026-09-02T23:22:38Z",
+          "handle": "by-hand-panels-optimistic-outdoors-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342377523",
+          "status": "DRAFT",
+          "title": "By Hand Panels Optimistic Outdoors",
+          "updated_at": "2026-09-02T23:22:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413660211"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-opulent-orchid",
+          "product_id": "gid://shopify/Product/7942342410291",
+          "row_id": 2589
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-beige",
+          "product_id": "gid://shopify/Product/7942332743731",
+          "row_id": 2822
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-opulent-orchid",
+        "product_id": "gid://shopify/Product/7942342410291",
+        "row_id": 2589
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:39Z",
+        "handle": "by-hand-panels-opulent-orchid-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342410291",
+        "status": "DRAFT",
+        "title": "By Hand Panels Opulent Orchid",
+        "updated_at": "2026-09-02T23:22:52Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413692979"
+      },
+      "new_sku": "DWKR-191657",
+      "old_sku": "DWKR-191432",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-beige",
+        "product_id": "gid://shopify/Product/7942332743731",
+        "row_id": 2822
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:24Z",
+          "handle": "i-m-crushed-beige-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332743731",
+          "status": "DRAFT",
+          "title": "I'm Crushed Beige",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403436595"
+        },
+        {
+          "created_at": "2026-09-02T23:22:39Z",
+          "handle": "by-hand-panels-opulent-orchid-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342410291",
+          "status": "DRAFT",
+          "title": "By Hand Panels Opulent Orchid",
+          "updated_at": "2026-09-02T23:22:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413692979"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-passionate-palms",
+          "product_id": "gid://shopify/Product/7942342443059",
+          "row_id": 2590
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-blanco",
+          "product_id": "gid://shopify/Product/7942332842035",
+          "row_id": 2823
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-passionate-palms",
+        "product_id": "gid://shopify/Product/7942342443059",
+        "row_id": 2590
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:40Z",
+        "handle": "by-hand-panels-passionate-palms-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342443059",
+        "status": "DRAFT",
+        "title": "By Hand Panels Passionate Palms",
+        "updated_at": "2026-09-02T23:22:46Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413725747"
+      },
+      "new_sku": "DWKR-191658",
+      "old_sku": "DWKR-191433",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-blanco",
+        "product_id": "gid://shopify/Product/7942332842035",
+        "row_id": 2823
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:25Z",
+          "handle": "i-m-crushed-blanco-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332842035",
+          "status": "DRAFT",
+          "title": "I'm Crushed Blanco",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403534899"
+        },
+        {
+          "created_at": "2026-09-02T23:22:40Z",
+          "handle": "by-hand-panels-passionate-palms-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342443059",
+          "status": "DRAFT",
+          "title": "By Hand Panels Passionate Palms",
+          "updated_at": "2026-09-02T23:22:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413725747"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-peaceful-pagoda",
+          "product_id": "gid://shopify/Product/7942342475827",
+          "row_id": 2591
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-bronze",
+          "product_id": "gid://shopify/Product/7942332940339",
+          "row_id": 2824
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-peaceful-pagoda",
+        "product_id": "gid://shopify/Product/7942342475827",
+        "row_id": 2591
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:41Z",
+        "handle": "by-hand-panels-peaceful-pagoda-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342475827",
+        "status": "DRAFT",
+        "title": "By Hand Panels Peaceful Pagoda",
+        "updated_at": "2026-09-02T23:22:55Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413758515"
+      },
+      "new_sku": "DWKR-191659",
+      "old_sku": "DWKR-191434",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-bronze",
+        "product_id": "gid://shopify/Product/7942332940339",
+        "row_id": 2824
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:26Z",
+          "handle": "i-m-crushed-bronze-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332940339",
+          "status": "DRAFT",
+          "title": "I'm Crushed Bronze",
+          "updated_at": "2026-09-02T23:16:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403633203"
+        },
+        {
+          "created_at": "2026-09-02T23:22:41Z",
+          "handle": "by-hand-panels-peaceful-pagoda-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342475827",
+          "status": "DRAFT",
+          "title": "By Hand Panels Peaceful Pagoda",
+          "updated_at": "2026-09-02T23:22:55Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413758515"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-pines-and-passion",
+          "product_id": "gid://shopify/Product/7942342508595",
+          "row_id": 2592
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-chocolate",
+          "product_id": "gid://shopify/Product/7942333038643",
+          "row_id": 2821
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-pines-and-passion",
+        "product_id": "gid://shopify/Product/7942342508595",
+        "row_id": 2592
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:42Z",
+        "handle": "by-hand-panels-pines-and-passion-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342508595",
+        "status": "DRAFT",
+        "title": "By Hand Panels Pines And Passion",
+        "updated_at": "2026-09-02T23:22:59Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413791283"
+      },
+      "new_sku": "DWKR-191660",
+      "old_sku": "DWKR-191435",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-chocolate",
+        "product_id": "gid://shopify/Product/7942333038643",
+        "row_id": 2821
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:27Z",
+          "handle": "i-m-crushed-chocolate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333038643",
+          "status": "DRAFT",
+          "title": "I'm Crushed Chocolate",
+          "updated_at": "2026-09-02T23:16:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403665971"
+        },
+        {
+          "created_at": "2026-09-02T23:22:42Z",
+          "handle": "by-hand-panels-pines-and-passion-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342508595",
+          "status": "DRAFT",
+          "title": "By Hand Panels Pines And Passion",
+          "updated_at": "2026-09-02T23:22:59Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413791283"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-priceless-pedals",
+          "product_id": "gid://shopify/Product/7942342574131",
+          "row_id": 2593
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-dove",
+          "product_id": "gid://shopify/Product/7942333071411",
+          "row_id": 2825
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-priceless-pedals",
+        "product_id": "gid://shopify/Product/7942342574131",
+        "row_id": 2593
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:43Z",
+        "handle": "by-hand-panels-priceless-pedals-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342574131",
+        "status": "DRAFT",
+        "title": "By Hand Panels Priceless Pedals",
+        "updated_at": "2026-09-02T23:22:52Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413856819"
+      },
+      "new_sku": "DWKR-191661",
+      "old_sku": "DWKR-191436",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-dove",
+        "product_id": "gid://shopify/Product/7942333071411",
+        "row_id": 2825
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:29Z",
+          "handle": "i-m-crushed-dove-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333071411",
+          "status": "DRAFT",
+          "title": "I'm Crushed Dove",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403764275"
+        },
+        {
+          "created_at": "2026-09-02T23:22:43Z",
+          "handle": "by-hand-panels-priceless-pedals-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342574131",
+          "status": "DRAFT",
+          "title": "By Hand Panels Priceless Pedals",
+          "updated_at": "2026-09-02T23:22:52Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413856819"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-radiant-rain-drops",
+          "product_id": "gid://shopify/Product/7942342606899",
+          "row_id": 2594
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-lemon",
+          "product_id": "gid://shopify/Product/7942333169715",
+          "row_id": 2826
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-radiant-rain-drops",
+        "product_id": "gid://shopify/Product/7942342606899",
+        "row_id": 2594
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:45Z",
+        "handle": "by-hand-panels-radiant-rain-drops-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342606899",
+        "status": "DRAFT",
+        "title": "By Hand Panels Radiant Rain Drops",
+        "updated_at": "2026-09-02T23:22:58Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413889587"
+      },
+      "new_sku": "DWKR-191662",
+      "old_sku": "DWKR-191437",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-lemon",
+        "product_id": "gid://shopify/Product/7942333169715",
+        "row_id": 2826
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:30Z",
+          "handle": "i-m-crushed-lemon-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333169715",
+          "status": "DRAFT",
+          "title": "I'm Crushed Lemon",
+          "updated_at": "2026-09-02T23:16:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403862579"
+        },
+        {
+          "created_at": "2026-09-02T23:22:45Z",
+          "handle": "by-hand-panels-radiant-rain-drops-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342606899",
+          "status": "DRAFT",
+          "title": "By Hand Panels Radiant Rain Drops",
+          "updated_at": "2026-09-02T23:22:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413889587"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-sacred-scales",
+          "product_id": "gid://shopify/Product/7942342639667",
+          "row_id": 2595
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-mercury",
+          "product_id": "gid://shopify/Product/7942333268019",
+          "row_id": 2827
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-sacred-scales",
+        "product_id": "gid://shopify/Product/7942342639667",
+        "row_id": 2595
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:46Z",
+        "handle": "by-hand-panels-sacred-scales-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342639667",
+        "status": "DRAFT",
+        "title": "By Hand Panels Sacred Scales",
+        "updated_at": "2026-09-02T23:22:59Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413922355"
+      },
+      "new_sku": "DWKR-191663",
+      "old_sku": "DWKR-191438",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-mercury",
+        "product_id": "gid://shopify/Product/7942333268019",
+        "row_id": 2827
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:31Z",
+          "handle": "i-m-crushed-mercury-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333268019",
+          "status": "DRAFT",
+          "title": "I'm Crushed Mercury",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403960883"
+        },
+        {
+          "created_at": "2026-09-02T23:22:46Z",
+          "handle": "by-hand-panels-sacred-scales-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342639667",
+          "status": "DRAFT",
+          "title": "By Hand Panels Sacred Scales",
+          "updated_at": "2026-09-02T23:22:59Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413922355"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-sands-of-time",
+          "product_id": "gid://shopify/Product/7942342672435",
+          "row_id": 2596
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-pewter",
+          "product_id": "gid://shopify/Product/7942333366323",
+          "row_id": 2828
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-sands-of-time",
+        "product_id": "gid://shopify/Product/7942342672435",
+        "row_id": 2596
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:47Z",
+        "handle": "by-hand-panels-sands-of-time-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342672435",
+        "status": "DRAFT",
+        "title": "By Hand Panels Sands Of Time",
+        "updated_at": "2026-09-02T23:22:54Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413955123"
+      },
+      "new_sku": "DWKR-191664",
+      "old_sku": "DWKR-191439",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-pewter",
+        "product_id": "gid://shopify/Product/7942333366323",
+        "row_id": 2828
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:32Z",
+          "handle": "i-m-crushed-pewter-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333366323",
+          "status": "DRAFT",
+          "title": "I'm Crushed Pewter",
+          "updated_at": "2026-09-02T23:16:48Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404059187"
+        },
+        {
+          "created_at": "2026-09-02T23:22:47Z",
+          "handle": "by-hand-panels-sands-of-time-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342672435",
+          "status": "DRAFT",
+          "title": "By Hand Panels Sands Of Time",
+          "updated_at": "2026-09-02T23:22:54Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413955123"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-scenic-sanctuary",
+          "product_id": "gid://shopify/Product/7942342705203",
+          "row_id": 2597
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-slate",
+          "product_id": "gid://shopify/Product/7942333464627",
+          "row_id": 2829
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-scenic-sanctuary",
+        "product_id": "gid://shopify/Product/7942342705203",
+        "row_id": 2597
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:48Z",
+        "handle": "by-hand-panels-scenic-sanctuary-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342705203",
+        "status": "DRAFT",
+        "title": "By Hand Panels Scenic Sanctuary",
+        "updated_at": "2026-09-02T23:22:57Z",
+        "variant_id": "gid://shopify/ProductVariant/44814413987891"
+      },
+      "new_sku": "DWKR-191665",
+      "old_sku": "DWKR-191440",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-slate",
+        "product_id": "gid://shopify/Product/7942333464627",
+        "row_id": 2829
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:33Z",
+          "handle": "i-m-crushed-slate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333464627",
+          "status": "DRAFT",
+          "title": "I'm Crushed Slate",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404157491"
+        },
+        {
+          "created_at": "2026-09-02T23:22:48Z",
+          "handle": "by-hand-panels-scenic-sanctuary-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342705203",
+          "status": "DRAFT",
+          "title": "By Hand Panels Scenic Sanctuary",
+          "updated_at": "2026-09-02T23:22:57Z",
+          "variant_id": "gid://shopify/ProductVariant/44814413987891"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-soothing-surroundings",
+          "product_id": "gid://shopify/Product/7942342737971",
+          "row_id": 2598
+        },
+        {
+          "handle": "im-crushed",
+          "mfr_sku": "i-m-crushed-taupe",
+          "product_id": "gid://shopify/Product/7942333562931",
+          "row_id": 2830
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-soothing-surroundings",
+        "product_id": "gid://shopify/Product/7942342737971",
+        "row_id": 2598
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:49Z",
+        "handle": "by-hand-panels-soothing-surroundings-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342737971",
+        "status": "DRAFT",
+        "title": "By Hand Panels Soothing Surroundings",
+        "updated_at": "2026-09-02T23:23:03Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414020659"
+      },
+      "new_sku": "DWKR-191666",
+      "old_sku": "DWKR-191441",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "im-crushed",
+        "mfr_sku": "i-m-crushed-taupe",
+        "product_id": "gid://shopify/Product/7942333562931",
+        "row_id": 2830
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:34Z",
+          "handle": "i-m-crushed-taupe-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333562931",
+          "status": "DRAFT",
+          "title": "I'm Crushed Taupe",
+          "updated_at": "2026-09-02T23:16:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404255795"
+        },
+        {
+          "created_at": "2026-09-02T23:22:49Z",
+          "handle": "by-hand-panels-soothing-surroundings-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342737971",
+          "status": "DRAFT",
+          "title": "By Hand Panels Soothing Surroundings",
+          "updated_at": "2026-09-02T23:23:03Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414020659"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-stars-and-spindles",
+          "product_id": "gid://shopify/Product/7942342770739",
+          "row_id": 2599
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-2",
+          "product_id": "gid://shopify/Product/7942334808115",
+          "row_id": 2538
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-stars-and-spindles",
+        "product_id": "gid://shopify/Product/7942342770739",
+        "row_id": 2599
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:51Z",
+        "handle": "by-hand-panels-stars-and-spindles-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342770739",
+        "status": "DRAFT",
+        "title": "By Hand Panels Stars And Spindles",
+        "updated_at": "2026-09-02T23:23:07Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414053427"
+      },
+      "new_sku": "DWKR-191667",
+      "old_sku": "DWKR-191442",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-2",
+        "product_id": "gid://shopify/Product/7942334808115",
+        "row_id": 2538
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:51Z",
+          "handle": "knotty-2-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334808115",
+          "status": "DRAFT",
+          "title": "Knotty 2",
+          "updated_at": "2026-09-02T23:17:05Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405861427"
+        },
+        {
+          "created_at": "2026-09-02T23:22:51Z",
+          "handle": "by-hand-panels-stars-and-spindles-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342770739",
+          "status": "DRAFT",
+          "title": "By Hand Panels Stars And Spindles",
+          "updated_at": "2026-09-02T23:23:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414053427"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-stranded-storm",
+          "product_id": "gid://shopify/Product/7942342803507",
+          "row_id": 2600
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-3",
+          "product_id": "gid://shopify/Product/7942334906419",
+          "row_id": 2539
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-stranded-storm",
+        "product_id": "gid://shopify/Product/7942342803507",
+        "row_id": 2600
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:52Z",
+        "handle": "by-hand-panels-stranded-storm-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342803507",
+        "status": "DRAFT",
+        "title": "By Hand Panels Stranded Storm",
+        "updated_at": "2026-09-02T23:23:07Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414086195"
+      },
+      "new_sku": "DWKR-191668",
+      "old_sku": "DWKR-191443",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-3",
+        "product_id": "gid://shopify/Product/7942334906419",
+        "row_id": 2539
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:52Z",
+          "handle": "knotty-3-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334906419",
+          "status": "DRAFT",
+          "title": "Knotty 3",
+          "updated_at": "2026-09-02T23:17:05Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405959731"
+        },
+        {
+          "created_at": "2026-09-02T23:22:52Z",
+          "handle": "by-hand-panels-stranded-storm-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342803507",
+          "status": "DRAFT",
+          "title": "By Hand Panels Stranded Storm",
+          "updated_at": "2026-09-02T23:23:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414086195"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-stray-stems",
+          "product_id": "gid://shopify/Product/7942342836275",
+          "row_id": 2601
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-4",
+          "product_id": "gid://shopify/Product/7942335004723",
+          "row_id": 2540
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-stray-stems",
+        "product_id": "gid://shopify/Product/7942342836275",
+        "row_id": 2601
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:53Z",
+        "handle": "by-hand-panels-stray-stems-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342836275",
+        "status": "DRAFT",
+        "title": "By Hand Panels Stray Stems",
+        "updated_at": "2026-09-02T23:23:04Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414118963"
+      },
+      "new_sku": "DWKR-191669",
+      "old_sku": "DWKR-191444",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-4",
+        "product_id": "gid://shopify/Product/7942335004723",
+        "row_id": 2540
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:53Z",
+          "handle": "knotty-4-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335004723",
+          "status": "DRAFT",
+          "title": "Knotty 4",
+          "updated_at": "2026-09-02T23:17:08Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406025267"
+        },
+        {
+          "created_at": "2026-09-02T23:22:53Z",
+          "handle": "by-hand-panels-stray-stems-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342836275",
+          "status": "DRAFT",
+          "title": "By Hand Panels Stray Stems",
+          "updated_at": "2026-09-02T23:23:04Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414118963"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-streams-of-sincerity",
+          "product_id": "gid://shopify/Product/7942342869043",
+          "row_id": 2602
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-5",
+          "product_id": "gid://shopify/Product/7942335037491",
+          "row_id": 2541
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-streams-of-sincerity",
+        "product_id": "gid://shopify/Product/7942342869043",
+        "row_id": 2602
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:54Z",
+        "handle": "by-hand-panels-streams-of-sincerity-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342869043",
+        "status": "DRAFT",
+        "title": "By Hand Panels Streams Of Sincerity",
+        "updated_at": "2026-09-02T23:23:02Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414151731"
+      },
+      "new_sku": "DWKR-191670",
+      "old_sku": "DWKR-191445",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-5",
+        "product_id": "gid://shopify/Product/7942335037491",
+        "row_id": 2541
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:55Z",
+          "handle": "knotty-5-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335037491",
+          "status": "DRAFT",
+          "title": "Knotty 5",
+          "updated_at": "2026-09-02T23:17:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406123571"
+        },
+        {
+          "created_at": "2026-09-02T23:22:54Z",
+          "handle": "by-hand-panels-streams-of-sincerity-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342869043",
+          "status": "DRAFT",
+          "title": "By Hand Panels Streams Of Sincerity",
+          "updated_at": "2026-09-02T23:23:02Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414151731"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-tantalizing-trees",
+          "product_id": "gid://shopify/Product/7942342901811",
+          "row_id": 2603
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-7",
+          "product_id": "gid://shopify/Product/7942335135795",
+          "row_id": 2542
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-tantalizing-trees",
+        "product_id": "gid://shopify/Product/7942342901811",
+        "row_id": 2603
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:55Z",
+        "handle": "by-hand-panels-tantalizing-trees-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342901811",
+        "status": "DRAFT",
+        "title": "By Hand Panels Tantalizing Trees",
+        "updated_at": "2026-09-02T23:23:13Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414184499"
+      },
+      "new_sku": "DWKR-191671",
+      "old_sku": "DWKR-191446",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-7",
+        "product_id": "gid://shopify/Product/7942335135795",
+        "row_id": 2542
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:56Z",
+          "handle": "knotty-7-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335135795",
+          "status": "DRAFT",
+          "title": "Knotty 7",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406221875"
+        },
+        {
+          "created_at": "2026-09-02T23:22:55Z",
+          "handle": "by-hand-panels-tantalizing-trees-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342901811",
+          "status": "DRAFT",
+          "title": "By Hand Panels Tantalizing Trees",
+          "updated_at": "2026-09-02T23:23:13Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414184499"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-tender-tulipa",
+          "product_id": "gid://shopify/Product/7942342934579",
+          "row_id": 2604
+        },
+        {
+          "handle": "kinky-copy",
+          "mfr_sku": "knotty-9",
+          "product_id": "gid://shopify/Product/7942335234099",
+          "row_id": 2543
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-tender-tulipa",
+        "product_id": "gid://shopify/Product/7942342934579",
+        "row_id": 2604
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:56Z",
+        "handle": "by-hand-panels-tender-tulipa-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342934579",
+        "status": "DRAFT",
+        "title": "By Hand Panels Tender Tulipa",
+        "updated_at": "2026-09-02T23:23:09Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414217267"
+      },
+      "new_sku": "DWKR-191672",
+      "old_sku": "DWKR-191447",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "kinky-copy",
+        "mfr_sku": "knotty-9",
+        "product_id": "gid://shopify/Product/7942335234099",
+        "row_id": 2543
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:57Z",
+          "handle": "knotty-9-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335234099",
+          "status": "DRAFT",
+          "title": "Knotty 9",
+          "updated_at": "2026-09-02T23:17:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406320179"
+        },
+        {
+          "created_at": "2026-09-02T23:22:56Z",
+          "handle": "by-hand-panels-tender-tulipa-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342934579",
+          "status": "DRAFT",
+          "title": "By Hand Panels Tender Tulipa",
+          "updated_at": "2026-09-02T23:23:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414217267"
+        }
+      ]
+    },
+    {
+      "catalog_rows": [
+        {
+          "handle": "by-hand-panels",
+          "mfr_sku": "by-hand-panels-valiant-vapor",
+          "product_id": "gid://shopify/Product/7942342967347",
+          "row_id": 2605
+        },
+        {
+          "handle": "mind-bending",
+          "mfr_sku": "mind-bending-blue",
+          "product_id": "gid://shopify/Product/7942336249907",
+          "row_id": 2466
+        }
+      ],
+      "move_identity": {
+        "handle": "by-hand-panels",
+        "mfr_sku": "by-hand-panels-valiant-vapor",
+        "product_id": "gid://shopify/Product/7942342967347",
+        "row_id": 2605
+      },
+      "move_product": {
+        "created_at": "2026-09-02T23:22:57Z",
+        "handle": "by-hand-panels-valiant-vapor-architectural-fabrics",
+        "price": "4.25",
+        "product_id": "gid://shopify/Product/7942342967347",
+        "status": "DRAFT",
+        "title": "By Hand Panels Valiant Vapor",
+        "updated_at": "2026-09-02T23:23:09Z",
+        "variant_id": "gid://shopify/ProductVariant/44814414250035"
+      },
+      "new_sku": "DWKR-191673",
+      "old_sku": "DWKR-191448",
+      "owner_source": "pool-provenance",
+      "registry_owner": null,
+      "retain_identity": {
+        "handle": "mind-bending",
+        "mfr_sku": "mind-bending-blue",
+        "product_id": "gid://shopify/Product/7942336249907",
+        "row_id": 2466
+      },
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:10Z",
+          "handle": "mind-bending-blue-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336249907",
+          "status": "DRAFT",
+          "title": "MIND BENDING Blue",
+          "updated_at": "2026-09-02T23:17:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407335987"
+        },
+        {
+          "created_at": "2026-09-02T23:22:57Z",
+          "handle": "by-hand-panels-valiant-vapor-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942342967347",
+          "status": "DRAFT",
+          "title": "By Hand Panels Valiant Vapor",
+          "updated_at": "2026-09-02T23:23:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814414250035"
+        }
+      ]
+    }
+  ],
+  "cross_identity_count": 55,
+  "duplicate_sku_count": 89,
+  "generated_at": "2026-09-03T05:24:18.008228+00:00",
+  "handle_repairs": [
+    {
+      "handle": "chilhowie-alaska-architectural-fabrics",
+      "shopify_product": {
+        "createdAt": "2026-09-02T23:07:50Z",
+        "handle": "chilhowie-alaska-architectural-fabrics",
+        "id": "gid://shopify/Product/7942325927987",
+        "status": "DRAFT",
+        "title": "Chilhowie Alaska",
+        "updatedAt": "2026-09-02T23:08:07Z",
+        "variants": {
+          "nodes": [
+            {
+              "id": "gid://shopify/ProductVariant/44814394196019",
+              "price": "4.25",
+              "sku": "DWKR-190830-Sample"
+            }
+          ]
+        },
+        "vendor": "Architectural Fabrics"
+      },
+      "target": {
+        "abrasion": "100,000",
+        "care": "W",
+        "colorway": "Alaska",
+        "content": "100% POLYVINYL",
+        "finish": "Permablok",
+        "fire_rating": "NFPA 260, CAL 117, UFAC I",
+        "handle": "chilhowie-alaska-architectural-fabrics",
+        "image_confidence": "prefix",
+        "image_url": "https://cdn.shopify.com/s/files/1/0598/5468/4248/files/ala.jpg?v=1726685761",
+        "mfr_sku": "revere-alaska",
+        "origin": "Columbia",
+        "pattern": "Revere",
+        "pool": "A-reconfirmed-old",
+        "price": "4.25",
+        "product_type": "Wallcovering",
+        "repeat": "N/A",
+        "sku": "DWKR-190830",
+        "style": "Transitional",
+        "tags": "Alaska | Architectural Fabrics | Chilhowie | Chilhowie Collection | Commercial | Commercial Wallcovering | Fabric | Made in Columbia | Showroom Line | Transitional | display_variant | quotes",
+        "title": "Chilhowie Alaska",
+        "town": "Chilhowie",
+        "vendor": "Architectural Fabrics",
+        "width": "54\""
+      }
+    },
+    {
+      "handle": "haymarket-obsidian-architectural-fabrics",
+      "shopify_product": {
+        "createdAt": "2026-09-02T23:17:10Z",
+        "handle": "haymarket-obsidian-architectural-fabrics",
+        "id": "gid://shopify/Product/7942336282675",
+        "status": "DRAFT",
+        "title": "Haymarket Obsidian",
+        "updatedAt": "2026-09-02T23:17:20Z",
+        "variants": {
+          "nodes": [
+            {
+              "id": "gid://shopify/ProductVariant/44814407368755",
+              "price": "4.25",
+              "sku": "DWKR-190420-Sample"
+            }
+          ]
+        },
+        "vendor": "Architectural Fabrics"
+      },
+      "target": {
+        "abrasion": "100,000",
+        "care": "WS",
+        "colorway": "Obsidian",
+        "content": "100% POLYESTER",
+        "finish": "Optional",
+        "fire_rating": "UFAC CLASS 1, NFPA 260, CAL 117-2013, BS5852",
+        "handle": "haymarket-obsidian-architectural-fabrics",
+        "image_confidence": "exact",
+        "image_url": "https://cdn.shopify.com/s/files/1/0598/5468/4248/files/OBSIDIAN-300x300.jpg?v=1726702030",
+        "mfr_sku": "strie-vibez-obsidian",
+        "origin": "Turkey",
+        "pattern": "Strie Vibez",
+        "pool": "A-reconfirmed-old",
+        "price": "4.25",
+        "product_type": "Fabric",
+        "repeat": "N/A",
+        "sku": "DWKR-190420",
+        "style": "Luxe",
+        "tags": "Architectural Fabrics | Commercial | Fabric | Haymarket | Haymarket Collection | Luxe | Made in Turkey | Obsidian | Showroom Line | display_variant | quotes",
+        "title": "Haymarket Obsidian",
+        "town": "Haymarket",
+        "vendor": "Architectural Fabrics",
+        "width": "54\""
+      }
+    }
+  ],
+  "mode": "READ_ONLY",
+  "same_identity": [
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335561779"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-chocolate",
+          "product_id": "gid://shopify/Product/7942335594547",
+          "row_id": 413
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-CHOCOLATE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335594547",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:01Z",
+          "handle": "haymarket-chocolate-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335561779",
+          "status": "DRAFT",
+          "title": "Haymarket Chocolate",
+          "updated_at": "2026-09-02T23:17:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406647859"
+        },
+        {
+          "created_at": "2026-09-02T23:17:01Z",
+          "handle": "haymarket-chocolate-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335594547",
+          "status": "DRAFT",
+          "title": "Haymarket Chocolate",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406713395"
+        }
+      ],
+      "sku": "DWKR-190413-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335660083"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-copper",
+          "product_id": "gid://shopify/Product/7942335725619",
+          "row_id": 414
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-COPPER"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335725619",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:03Z",
+          "handle": "haymarket-copper-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335660083",
+          "status": "DRAFT",
+          "title": "Haymarket Copper",
+          "updated_at": "2026-09-02T23:17:37Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406778931"
+        },
+        {
+          "created_at": "2026-09-02T23:17:03Z",
+          "handle": "haymarket-copper-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335725619",
+          "status": "DRAFT",
+          "title": "Haymarket Copper",
+          "updated_at": "2026-09-02T23:17:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406811699"
+        }
+      ],
+      "sku": "DWKR-190414-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335791155"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-ecru",
+          "product_id": "gid://shopify/Product/7942335823923",
+          "row_id": 415
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-ECRU"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335823923",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:04Z",
+          "handle": "haymarket-ecru-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335791155",
+          "status": "DRAFT",
+          "title": "Haymarket Ecru",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406877235"
+        },
+        {
+          "created_at": "2026-09-02T23:17:04Z",
+          "handle": "haymarket-ecru-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335823923",
+          "status": "DRAFT",
+          "title": "Haymarket Ecru",
+          "updated_at": "2026-09-02T23:17:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406910003"
+        }
+      ],
+      "sku": "DWKR-190415-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335889459"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-golden",
+          "product_id": "gid://shopify/Product/7942335922227",
+          "row_id": 416
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-GOLDEN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335922227",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:05Z",
+          "handle": "haymarket-golden-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335889459",
+          "status": "DRAFT",
+          "title": "Haymarket Golden",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406975539"
+        },
+        {
+          "created_at": "2026-09-02T23:17:06Z",
+          "handle": "haymarket-golden-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335922227",
+          "status": "DRAFT",
+          "title": "Haymarket Golden",
+          "updated_at": "2026-09-02T23:17:17Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407008307"
+        }
+      ],
+      "sku": "DWKR-190416-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335987763"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-leaf",
+          "product_id": "gid://shopify/Product/7942336020531",
+          "row_id": 417
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-LEAF"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942336020531",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:07Z",
+          "handle": "haymarket-leaf-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335987763",
+          "status": "DRAFT",
+          "title": "Haymarket Leaf",
+          "updated_at": "2026-09-02T23:17:15Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407073843"
+        },
+        {
+          "created_at": "2026-09-02T23:17:07Z",
+          "handle": "haymarket-leaf-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336020531",
+          "status": "DRAFT",
+          "title": "Haymarket Leaf",
+          "updated_at": "2026-09-02T23:17:20Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407106611"
+        }
+      ],
+      "sku": "DWKR-190417-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942336151603"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "strie-vibez",
+          "mfr_sku": "strie-vibez-navy",
+          "product_id": "gid://shopify/Product/7942336184371",
+          "row_id": 419
+        }
+      ],
+      "mfr_skus": [
+        "STRIE-VIBEZ-NAVY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942336184371",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:09Z",
+          "handle": "haymarket-navy-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336151603",
+          "status": "DRAFT",
+          "title": "Haymarket Navy",
+          "updated_at": "2026-09-02T23:17:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407237683"
+        },
+        {
+          "created_at": "2026-09-02T23:17:09Z",
+          "handle": "haymarket-navy-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942336184371",
+          "status": "DRAFT",
+          "title": "Haymarket Navy",
+          "updated_at": "2026-09-02T23:17:22Z",
+          "variant_id": "gid://shopify/ProductVariant/44814407270451"
+        }
+      ],
+      "sku": "DWKR-190419-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334677043"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-azure",
+          "product_id": "gid://shopify/Product/7942334742579",
+          "row_id": 426
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-AZURE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334742579",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:50Z",
+          "handle": "halifax-azure-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334677043",
+          "status": "DRAFT",
+          "title": "Halifax Azure",
+          "updated_at": "2026-09-02T23:17:11Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405763123"
+        },
+        {
+          "created_at": "2026-09-02T23:16:50Z",
+          "handle": "halifax-azure-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334742579",
+          "status": "DRAFT",
+          "title": "Halifax Azure",
+          "updated_at": "2026-09-02T23:17:13Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405828659"
+        }
+      ],
+      "sku": "DWKR-190426-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334840883"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-charcoal",
+          "product_id": "gid://shopify/Product/7942334873651",
+          "row_id": 428
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-CHARCOAL"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334873651",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:52Z",
+          "handle": "halifax-charcoal-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334840883",
+          "status": "DRAFT",
+          "title": "Halifax Charcoal",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405926963"
+        },
+        {
+          "created_at": "2026-09-02T23:16:52Z",
+          "handle": "halifax-charcoal-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334873651",
+          "status": "DRAFT",
+          "title": "Halifax Charcoal",
+          "updated_at": "2026-09-02T23:17:01Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405992499"
+        }
+      ],
+      "sku": "DWKR-190428-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334939187"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-jazz",
+          "product_id": "gid://shopify/Product/7942334971955",
+          "row_id": 429
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-JAZZ"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334971955",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:53Z",
+          "handle": "halifax-jazz-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334939187",
+          "status": "DRAFT",
+          "title": "Halifax Jazz",
+          "updated_at": "2026-09-02T23:17:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406058035"
+        },
+        {
+          "created_at": "2026-09-02T23:16:53Z",
+          "handle": "halifax-jazz-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334971955",
+          "status": "DRAFT",
+          "title": "Halifax Jazz",
+          "updated_at": "2026-09-02T23:17:10Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406090803"
+        }
+      ],
+      "sku": "DWKR-190429-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335103027"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-lagoon",
+          "product_id": "gid://shopify/Product/7942335070259",
+          "row_id": 430
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-LAGOON"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335070259",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:55Z",
+          "handle": "halifax-lagoon-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335070259",
+          "status": "DRAFT",
+          "title": "Halifax Lagoon",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406189107"
+        },
+        {
+          "created_at": "2026-09-02T23:16:55Z",
+          "handle": "halifax-lagoon-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335103027",
+          "status": "DRAFT",
+          "title": "Halifax Lagoon",
+          "updated_at": "2026-09-02T23:17:15Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406156339"
+        }
+      ],
+      "sku": "DWKR-190430-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335168563"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-mink",
+          "product_id": "gid://shopify/Product/7942335201331",
+          "row_id": 431
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-MINK"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335201331",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:56Z",
+          "handle": "halifax-mink-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335168563",
+          "status": "DRAFT",
+          "title": "Halifax Mink",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406254643"
+        },
+        {
+          "created_at": "2026-09-02T23:16:56Z",
+          "handle": "halifax-mink-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335201331",
+          "status": "DRAFT",
+          "title": "Halifax Mink",
+          "updated_at": "2026-09-02T23:17:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406287411"
+        }
+      ],
+      "sku": "DWKR-190431-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335266867"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-oxford",
+          "product_id": "gid://shopify/Product/7942335299635",
+          "row_id": 432
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-OXFORD"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335299635",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:57Z",
+          "handle": "halifax-oxford-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335266867",
+          "status": "DRAFT",
+          "title": "Halifax Oxford",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406352947"
+        },
+        {
+          "created_at": "2026-09-02T23:16:58Z",
+          "handle": "halifax-oxford-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335299635",
+          "status": "DRAFT",
+          "title": "Halifax Oxford",
+          "updated_at": "2026-09-02T23:17:08Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406385715"
+        }
+      ],
+      "sku": "DWKR-190432-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335365171"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-salsa",
+          "product_id": "gid://shopify/Product/7942335397939",
+          "row_id": 433
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-SALSA"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335397939",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:59Z",
+          "handle": "halifax-salsa-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335365171",
+          "status": "DRAFT",
+          "title": "Halifax Salsa",
+          "updated_at": "2026-09-02T23:17:13Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406451251"
+        },
+        {
+          "created_at": "2026-09-02T23:16:59Z",
+          "handle": "halifax-salsa-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335397939",
+          "status": "DRAFT",
+          "title": "Halifax Salsa",
+          "updated_at": "2026-09-02T23:17:07Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406484019"
+        }
+      ],
+      "sku": "DWKR-190433-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942335463475"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "streaming",
+          "mfr_sku": "streaming-spice",
+          "product_id": "gid://shopify/Product/7942335496243",
+          "row_id": 434
+        }
+      ],
+      "mfr_skus": [
+        "STREAMING-SPICE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942335496243",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:17:00Z",
+          "handle": "halifax-spice-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335463475",
+          "status": "DRAFT",
+          "title": "Halifax Spice",
+          "updated_at": "2026-09-02T23:17:09Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406549555"
+        },
+        {
+          "created_at": "2026-09-02T23:17:00Z",
+          "handle": "halifax-spice-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942335496243",
+          "status": "DRAFT",
+          "title": "Halifax Spice",
+          "updated_at": "2026-09-02T23:17:12Z",
+          "variant_id": "gid://shopify/ProductVariant/44814406582323"
+        }
+      ],
+      "sku": "DWKR-190434-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333005875"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-bark",
+          "product_id": "gid://shopify/Product/7942332973107",
+          "row_id": 435
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-BARK"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332973107",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:27Z",
+          "handle": "gretna-bark-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332973107",
+          "status": "DRAFT",
+          "title": "Gretna Bark",
+          "updated_at": "2026-09-02T23:16:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403698739"
+        },
+        {
+          "created_at": "2026-09-02T23:16:27Z",
+          "handle": "gretna-bark-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333005875",
+          "status": "DRAFT",
+          "title": "Gretna Bark",
+          "updated_at": "2026-09-02T23:17:05Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403731507"
+        }
+      ],
+      "sku": "DWKR-190435-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333104179"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-canyon",
+          "product_id": "gid://shopify/Product/7942333136947",
+          "row_id": 436
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-CANYON"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333136947",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:29Z",
+          "handle": "gretna-canyon-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333104179",
+          "status": "DRAFT",
+          "title": "Gretna Canyon",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403797043"
+        },
+        {
+          "created_at": "2026-09-02T23:16:29Z",
+          "handle": "gretna-canyon-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333136947",
+          "status": "DRAFT",
+          "title": "Gretna Canyon",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403829811"
+        }
+      ],
+      "sku": "DWKR-190436-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333235251"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-ebony",
+          "product_id": "gid://shopify/Product/7942333202483",
+          "row_id": 437
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-EBONY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333202483",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:30Z",
+          "handle": "gretna-ebony-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333202483",
+          "status": "DRAFT",
+          "title": "Gretna Ebony",
+          "updated_at": "2026-09-02T23:16:43Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403895347"
+        },
+        {
+          "created_at": "2026-09-02T23:16:30Z",
+          "handle": "gretna-ebony-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333235251",
+          "status": "DRAFT",
+          "title": "Gretna Ebony",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403928115"
+        }
+      ],
+      "sku": "DWKR-190437-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333300787"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-granite",
+          "product_id": "gid://shopify/Product/7942333333555",
+          "row_id": 438
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-GRANITE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333333555",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:31Z",
+          "handle": "gretna-granite-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333300787",
+          "status": "DRAFT",
+          "title": "Gretna Granite",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403993651"
+        },
+        {
+          "created_at": "2026-09-02T23:16:32Z",
+          "handle": "gretna-granite-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333333555",
+          "status": "DRAFT",
+          "title": "Gretna Granite",
+          "updated_at": "2026-09-02T23:16:51Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404026419"
+        }
+      ],
+      "sku": "DWKR-190438-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333399091"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-pacific",
+          "product_id": "gid://shopify/Product/7942333431859",
+          "row_id": 439
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-PACIFIC"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333431859",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:33Z",
+          "handle": "gretna-pacific-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333399091",
+          "status": "DRAFT",
+          "title": "Gretna Pacific",
+          "updated_at": "2026-09-02T23:16:48Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404091955"
+        },
+        {
+          "created_at": "2026-09-02T23:16:33Z",
+          "handle": "gretna-pacific-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333431859",
+          "status": "DRAFT",
+          "title": "Gretna Pacific",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404124723"
+        }
+      ],
+      "sku": "DWKR-190439-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333497395"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-rustic",
+          "product_id": "gid://shopify/Product/7942333530163",
+          "row_id": 440
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-RUSTIC"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333530163",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:34Z",
+          "handle": "gretna-rustic-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333497395",
+          "status": "DRAFT",
+          "title": "Gretna Rustic",
+          "updated_at": "2026-09-02T23:16:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404190259"
+        },
+        {
+          "created_at": "2026-09-02T23:16:34Z",
+          "handle": "gretna-rustic-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333530163",
+          "status": "DRAFT",
+          "title": "Gretna Rustic",
+          "updated_at": "2026-09-02T23:17:27Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404223027"
+        }
+      ],
+      "sku": "DWKR-190440-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333595699"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-sapphire",
+          "product_id": "gid://shopify/Product/7942333628467",
+          "row_id": 441
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-SAPPHIRE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333628467",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:35Z",
+          "handle": "gretna-sapphire-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333595699",
+          "status": "DRAFT",
+          "title": "Gretna Sapphire",
+          "updated_at": "2026-09-02T23:16:49Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404288563"
+        },
+        {
+          "created_at": "2026-09-02T23:16:36Z",
+          "handle": "gretna-sapphire-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333628467",
+          "status": "DRAFT",
+          "title": "Gretna Sapphire",
+          "updated_at": "2026-09-02T23:16:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404354099"
+        }
+      ],
+      "sku": "DWKR-190441-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333694003"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-storm",
+          "product_id": "gid://shopify/Product/7942333759539",
+          "row_id": 442
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-STORM"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333759539",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:37Z",
+          "handle": "gretna-storm-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333694003",
+          "status": "DRAFT",
+          "title": "Gretna Storm",
+          "updated_at": "2026-09-02T23:17:00Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404812851"
+        },
+        {
+          "created_at": "2026-09-02T23:16:37Z",
+          "handle": "gretna-storm-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333759539",
+          "status": "DRAFT",
+          "title": "Gretna Storm",
+          "updated_at": "2026-09-02T23:16:45Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404845619"
+        }
+      ],
+      "sku": "DWKR-190442-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333825075"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-straw",
+          "product_id": "gid://shopify/Product/7942333857843",
+          "row_id": 443
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-STRAW"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333857843",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:38Z",
+          "handle": "gretna-straw-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333825075",
+          "status": "DRAFT",
+          "title": "Gretna Straw",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404911155"
+        },
+        {
+          "created_at": "2026-09-02T23:16:38Z",
+          "handle": "gretna-straw-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333857843",
+          "status": "DRAFT",
+          "title": "Gretna Straw",
+          "updated_at": "2026-09-02T23:16:46Z",
+          "variant_id": "gid://shopify/ProductVariant/44814404943923"
+        }
+      ],
+      "sku": "DWKR-190443-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942333923379"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "static",
+          "mfr_sku": "static-thyme",
+          "product_id": "gid://shopify/Product/7942333956147",
+          "row_id": 444
+        }
+      ],
+      "mfr_skus": [
+        "STATIC-THYME"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942333956147",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:40Z",
+          "handle": "gretna-thyme-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333923379",
+          "status": "DRAFT",
+          "title": "Gretna Thyme",
+          "updated_at": "2026-09-02T23:16:51Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405009459"
+        },
+        {
+          "created_at": "2026-09-02T23:16:40Z",
+          "handle": "gretna-thyme-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942333956147",
+          "status": "DRAFT",
+          "title": "Gretna Thyme",
+          "updated_at": "2026-09-02T23:16:47Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405042227"
+        }
+      ],
+      "sku": "DWKR-190444-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334021683"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-brown",
+          "product_id": "gid://shopify/Product/7942334054451",
+          "row_id": 801
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-BROWN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334054451",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:41Z",
+          "handle": "grundy-brown-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334021683",
+          "status": "DRAFT",
+          "title": "Grundy Brown",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405107763"
+        },
+        {
+          "created_at": "2026-09-02T23:16:41Z",
+          "handle": "grundy-brown-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334054451",
+          "status": "DRAFT",
+          "title": "Grundy Brown",
+          "updated_at": "2026-09-02T23:16:59Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405140531"
+        }
+      ],
+      "sku": "DWKR-190801-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334152755"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-cottonwood",
+          "product_id": "gid://shopify/Product/7942334119987",
+          "row_id": 802
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-COTTONWOOD"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334119987",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:42Z",
+          "handle": "grundy-cottonwood-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334119987",
+          "status": "DRAFT",
+          "title": "Grundy Cottonwood",
+          "updated_at": "2026-09-02T23:16:55Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405206067"
+        },
+        {
+          "created_at": "2026-09-02T23:16:42Z",
+          "handle": "grundy-cottonwood-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334152755",
+          "status": "DRAFT",
+          "title": "Grundy Cottonwood",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405238835"
+        }
+      ],
+      "sku": "DWKR-190802-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334218291"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-coyote",
+          "product_id": "gid://shopify/Product/7942334251059",
+          "row_id": 803
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-COYOTE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334251059",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:44Z",
+          "handle": "grundy-coyote-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334218291",
+          "status": "DRAFT",
+          "title": "Grundy Coyote",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405304371"
+        },
+        {
+          "created_at": "2026-09-02T23:16:44Z",
+          "handle": "grundy-coyote-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334251059",
+          "status": "DRAFT",
+          "title": "Grundy Coyote",
+          "updated_at": "2026-09-02T23:16:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405337139"
+        }
+      ],
+      "sku": "DWKR-190803-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334316595"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-flint",
+          "product_id": "gid://shopify/Product/7942334349363",
+          "row_id": 804
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-FLINT"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334349363",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:45Z",
+          "handle": "grundy-flint-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334316595",
+          "status": "DRAFT",
+          "title": "Grundy Flint",
+          "updated_at": "2026-09-02T23:16:57Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405402675"
+        },
+        {
+          "created_at": "2026-09-02T23:16:45Z",
+          "handle": "grundy-flint-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334349363",
+          "status": "DRAFT",
+          "title": "Grundy Flint",
+          "updated_at": "2026-09-02T23:16:53Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405435443"
+        }
+      ],
+      "sku": "DWKR-190804-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334414899"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-marengo",
+          "product_id": "gid://shopify/Product/7942334447667",
+          "row_id": 805
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-MARENGO"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334447667",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:46Z",
+          "handle": "grundy-marengo-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334414899",
+          "status": "DRAFT",
+          "title": "Grundy Marengo",
+          "updated_at": "2026-09-02T23:16:58Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405500979"
+        },
+        {
+          "created_at": "2026-09-02T23:16:46Z",
+          "handle": "grundy-marengo-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334447667",
+          "status": "DRAFT",
+          "title": "Grundy Marengo",
+          "updated_at": "2026-09-02T23:16:56Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405533747"
+        }
+      ],
+      "sku": "DWKR-190805-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942334578739"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "stay-forever",
+          "mfr_sku": "stay-forever-tan",
+          "product_id": "gid://shopify/Product/7942334611507",
+          "row_id": 808
+        }
+      ],
+      "mfr_skus": [
+        "STAY-FOREVER-TAN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942334611507",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:48Z",
+          "handle": "grundy-tan-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334578739",
+          "status": "DRAFT",
+          "title": "Grundy Tan",
+          "updated_at": "2026-09-02T23:17:10Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405664819"
+        },
+        {
+          "created_at": "2026-09-02T23:16:49Z",
+          "handle": "grundy-tan-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942334611507",
+          "status": "DRAFT",
+          "title": "Grundy Tan",
+          "updated_at": "2026-09-02T23:16:55Z",
+          "variant_id": "gid://shopify/ProductVariant/44814405697587"
+        }
+      ],
+      "sku": "DWKR-190808-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332514355"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-fawn",
+          "product_id": "gid://shopify/Product/7942332547123",
+          "row_id": 1077
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-FAWN"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332547123",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:21Z",
+          "handle": "gordonsville-fawn-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332514355",
+          "status": "DRAFT",
+          "title": "Gordonsville Fawn",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403207219"
+        },
+        {
+          "created_at": "2026-09-02T23:16:21Z",
+          "handle": "gordonsville-fawn-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332547123",
+          "status": "DRAFT",
+          "title": "Gordonsville Fawn",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403239987"
+        }
+      ],
+      "sku": "DWKR-191077-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332612659"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-grey",
+          "product_id": "gid://shopify/Product/7942332678195",
+          "row_id": 1078
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-GREY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332678195",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:22Z",
+          "handle": "gordonsville-grey-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332612659",
+          "status": "DRAFT",
+          "title": "Gordonsville Grey",
+          "updated_at": "2026-09-02T23:16:39Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403305523"
+        },
+        {
+          "created_at": "2026-09-02T23:16:22Z",
+          "handle": "gordonsville-grey-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332678195",
+          "status": "DRAFT",
+          "title": "Gordonsville Grey",
+          "updated_at": "2026-09-02T23:16:39Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403371059"
+        }
+      ],
+      "sku": "DWKR-191078-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332710963"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-ivory",
+          "product_id": "gid://shopify/Product/7942332776499",
+          "row_id": 1079
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-IVORY"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332776499",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:24Z",
+          "handle": "gordonsville-ivory-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332710963",
+          "status": "DRAFT",
+          "title": "Gordonsville Ivory",
+          "updated_at": "2026-09-02T23:16:40Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403403827"
+        },
+        {
+          "created_at": "2026-09-02T23:16:24Z",
+          "handle": "gordonsville-ivory-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332776499",
+          "status": "DRAFT",
+          "title": "Gordonsville Ivory",
+          "updated_at": "2026-09-02T23:16:38Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403469363"
+        }
+      ],
+      "sku": "DWKR-191079-Sample"
+    },
+    {
+      "archive_product_ids": [
+        "gid://shopify/Product/7942332874803"
+      ],
+      "catalog_rows": [
+        {
+          "handle": "standing-tall",
+          "mfr_sku": "standing-tall-white",
+          "product_id": "gid://shopify/Product/7942332907571",
+          "row_id": 1081
+        }
+      ],
+      "mfr_skus": [
+        "STANDING-TALL-WHITE"
+      ],
+      "retain_product_id": "gid://shopify/Product/7942332907571",
+      "shopify_products": [
+        {
+          "created_at": "2026-09-02T23:16:26Z",
+          "handle": "gordonsville-white-architectural-fabrics",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332874803",
+          "status": "DRAFT",
+          "title": "Gordonsville White",
+          "updated_at": "2026-09-02T23:16:35Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403567667"
+        },
+        {
+          "created_at": "2026-09-02T23:16:26Z",
+          "handle": "gordonsville-white-architectural-fabrics-1",
+          "price": "4.25",
+          "product_id": "gid://shopify/Product/7942332907571",
+          "status": "DRAFT",
+          "title": "Gordonsville White",
+          "updated_at": "2026-09-02T23:16:36Z",
+          "variant_id": "gid://shopify/ProductVariant/44814403600435"
+        }
+      ],
+      "sku": "DWKR-191081-Sample"
+    }
+  ],
+  "same_identity_count": 34,
+  "schema": "tk-10066-recovery-manifest/v1",
+  "shopify_product_count": 1522,
+  "vendor": "Architectural Fabrics"
+}

← 8d6bbce Reid Witlin v2 batch: execute Steve-approved 1,005-item onbo  ·  back to Reid Witlin Onboarding  ·  Add guarded Reid Witlin recovery executor 039d074 →