[object Object]

← back to Gmc Titlefix

Audit remaining GMC feed defects and consolidate approval evidence

7a897c7dfbbed583f0e7bce476cee9b2d1353bd9 · 2026-09-04 23:04:15 -0700 · Steve Abrams

Files touched

Diff

commit 7a897c7dfbbed583f0e7bce476cee9b2d1353bd9
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri Sep 4 23:04:15 2026 -0700

    Audit remaining GMC feed defects and consolidate approval evidence
---
 tk10993-remediation-audit.mjs                      |  117 ++
 ...9-05-TK-10993-CONSOLIDATED-RESIDUAL-APPROVAL.md |   43 +
 verification/e2e-proof.json                        |   48 +-
 ...TK-10993-GMC-REBASELINE-and-remaining-levers.md |  372 ++++++
 ...-04-TK-11248-GMC-task3-CONSOLIDATED-DECISION.md |   66 +
 ...r-TK-10993-CA-google-support-report-PREPARED.md |   38 +
 verification/tk10993-20260905-residual-audit.json  | 1279 ++++++++++++++++++
 .../tk10993-20260905-residual-manifest.json        |  256 ++++
 verification/tk10993-20260905-residual-plan.json   | 1411 ++++++++++++++++++++
 9 files changed, 3628 insertions(+), 2 deletions(-)

diff --git a/tk10993-remediation-audit.mjs b/tk10993-remediation-audit.mjs
new file mode 100644
index 0000000..7ffe0e8
--- /dev/null
+++ b/tk10993-remediation-audit.mjs
@@ -0,0 +1,117 @@
+// READ-ONLY reconciliation of the prior approved runs. Never resumes an executor.
+// Usage: node tk10993-remediation-audit.mjs --output=verification/<unique>.json
+import fs from 'node:fs';
+import crypto from 'node:crypto';
+import { createRequire } from 'node:module';
+import { readJson } from './tk10993-shipping-verification.mjs';
+const require = createRequire(import.meta.url);
+const { token, MERCHANT } = require('./_auth.js');
+const out = process.argv.find(a => a.startsWith('--output='))?.slice(9);
+if (!out || fs.existsSync(out)) throw new Error('A new --output path is required; existing evidence is immutable.');
+const base = `${process.env.HOME}/.claude/yolo-queue`;
+const path = `${base}/tk10993-merchantapi`;
+const json = p => JSON.parse(fs.readFileSync(p, 'utf8'));
+const hash = data => crypto.createHash('sha256').update(data).digest('hex');
+const rows = fs.readFileSync(`${path}/destamp-ledger.jsonl`, 'utf8').trim().split('\n').map(JSON.parse);
+const targets = json(`${path}/destamp-targets.json`);
+const guards = new Set(json(`${path}/destamp-genuine-samples.json`));
+const applied = new Set(rows.filter(r => r.phase === 'applied').map(r => r.key));
+const intended = new Set();
+let invalidSequence = 0;
+for (const r of rows) {
+  if (r.phase === 'intent') intended.add(r.key);
+  if (r.phase === 'applied' && !intended.has(r.key)) invalidSequence++;
+}
+const targetSet = new Set(targets.map(t => t.offerKey));
+const ledger = {
+  target_count: targetSet.size, applied_count: applied.size,
+  missing: [...targetSet].filter(k => !applied.has(k)),
+  extra: [...applied].filter(k => !targetSet.has(k)),
+  protected_samples_touched: [...applied].filter(k => guards.has(k)),
+  applied_without_prior_intent: invalidSequence,
+  failed_records: rows.filter(r => r.phase === 'failed').length,
+  sha256: hash(fs.readFileSync(`${path}/destamp-ledger.jsonl`))
+};
+const sampled = [...targets].sort((a, b) => hash(a.offerKey).localeCompare(hash(b.offerKey))).slice(0, 40);
+const sampleGuards = [...guards].sort((a, b) => hash(a).localeCompare(hash(b))).slice(0, 10);
+const f3 = json(`${base}/tk10993-trackF-exec/F-other.json`);
+const policies = json(`${base}/tk10993-trackF-exec/track-g-policy-offers.json`).all;
+const g = [...new Set(policies.filter(p => p.code === 'identity_and_belief_policy_violation').map(p => p.id.split(':').slice(3).join(':')))];
+const tok = await token();
+const headers = { Authorization: `Bearer ${tok}` };
+const keys = [...new Set([...sampled.map(p => p.offerKey), ...sampleGuards, ...f3.map(p => p.id.split(':').slice(3).join(':')), ...g])];
+const products = new Map();
+let index = 0;
+await Promise.all(Array.from({ length: 4 }, async () => {
+  while (index < keys.length) {
+    const key = keys[index++];
+    try {
+      const p = await readJson(`https://merchantapi.googleapis.com/products/v1/accounts/${MERCHANT}/products/${encodeURIComponent(`en~US~${key}`)}`, { headers });
+      if (p.offerId !== key || !p.productAttributes) throw new Error('Wrong identity or absent product attributes');
+      products.set(key, { attrs: p.productAttributes, status: p.productStatus });
+    } catch (error) { products.set(key, { error: error.message }); }
+  }
+}));
+const sample = sampled.map(t => {
+  const p = products.get(t.offerKey);
+  if (p.error) return { key: t.offerKey, verdict: 'UNKNOWN', error: p.error };
+  const a = p.attrs;
+  const price = Number(a.price?.amountMicros) / 1e6;
+  const titleOK = typeof a.title === 'string' && a.title.length > 0 && !/^\s*Sample:/i.test(a.title);
+  const w = a.shippingWeight;
+  const weightOK = w && Number.isFinite(Number(w.value)) && Number(w.value) > 0 && !(Number(w.value) === 0.35 && String(w.unit).toLowerCase() === 'lb');
+  const pass = (!t.fixTitle || titleOK) && (!t.fixWeight || weightOK) && Number.isFinite(price) && price > 4.26;
+  return { key: t.offerKey, verdict: pass ? 'PASS' : 'FAIL', title: a.title, weight: w, price, fixTitle: t.fixTitle, fixWeight: t.fixWeight };
+});
+const guardSample = sampleGuards.map(key => {
+  const p = products.get(key);
+  const price = Number(p.attrs?.price?.amountMicros) / 1e6;
+  return { key, verdict: p.error ? 'UNKNOWN' : Number.isFinite(price) && price <= 4.26 ? 'PASS' : 'CHANGED', price: Number.isFinite(price) ? price : null, error: p.error };
+});
+// Compare F3 links with current Shopify handles; a 404 by itself does not prove an orphan.
+const sourceId = key => {
+  const match = /^shopify_[A-Z]+_(\d+)_\d+$/.exec(key);
+  return match ? `gid://shopify/Product/${match[1]}` : /^\d+$/.test(key) ? `gid://shopify/ProductVariant/${key}` : null;
+};
+const ids = [...new Set([...f3.map(p => p.gid), ...g.map(sourceId).filter(Boolean)])];
+const shopTok = (fs.readFileSync(`${process.env.HOME}/Projects/secrets-manager/.env`, 'utf8').match(/^SHOPIFY_FULL_ACCESS_TOKEN=(.+)$/m) || [])[1];
+let source = new Map(), sourceError;
+try {
+  const j = await readJson('https://designer-laboratory-sandbox.myshopify.com/admin/api/2026-07/graphql.json', {
+    method: 'POST', headers: { 'X-Shopify-Access-Token': shopTok, 'Content-Type': 'application/json' },
+    body: JSON.stringify({ query: `query($ids:[ID!]!){nodes(ids:$ids){... on Product{id handle title status description} ... on ProductVariant{id product{id handle title status description}}}}`, variables: { ids } })
+  });
+  if (!Array.isArray(j.data?.nodes) || j.data.nodes.length !== ids.length) throw new Error('Incomplete Shopify nodes');
+  source = new Map(j.data.nodes.filter(Boolean).map(p => [p.id, p.product || p]));
+} catch (e) { sourceError = e.message; }
+const f3Current = f3.map(t => {
+  const key = t.id.split(':').slice(3).join(':');
+  const p = products.get(key), s = source.get(t.gid);
+  if (p.error || !s) return { key, verdict: 'UNKNOWN', error: p.error || sourceError || 'Shopify product absent' };
+  const a = p.attrs;
+  let pathMatches = false;
+  try { const u = new URL(a.link); pathMatches = ['www.designerwallcoverings.com', 'designerwallcoverings.com'].includes(u.hostname) && u.pathname === `/products/${s.handle}`; } catch {}
+  const badged = /versa\s+designed\s+surfaces/i.test(a.title || '') || /versa-designed-surfaces/i.test(a.link || '');
+  let proposedLink;
+  try { const u = new URL(a.link); u.pathname = `/products/${s.handle}`; proposedLink = u.toString(); } catch {}
+  return { key, verdict: pathMatches && !badged ? 'PASS' : 'FAIL', current_shopify_handle: s.handle, shopify_status: s.status, title: a.title, link: a.link, proposed_link: proposedLink, path_matches: pathMatches, vendor_badge_present: badged };
+});
+const gCurrent = g.map(key => {
+  const p = products.get(key);
+  if (p.error) return { key, verdict: 'UNKNOWN', error: p.error };
+  const description = p.attrs.description;
+  const stale = /Thomas Jefferson|Monticello|Kennedy|Obama|White House|Jacqueline/i.test(description || '');
+  const shopDescription = source.get(sourceId(key))?.description;
+  const cleanSource = typeof shopDescription === 'string' && shopDescription.trim().length > 0 && !/Jefferson|Kennedy|Obama|White House|Hearst|First Lady|Monticello/i.test(shopDescription);
+  return { key, verdict: typeof description !== 'string' || !description.length ? 'UNKNOWN' : stale ? 'FAIL' : 'PASS', stale_political_copy: stale,
+    source_clean: cleanSource, ...(stale ? { before_description: description, proposed_description: cleanSource ? shopDescription : null } : {}),
+    identity_issue_present: (p.status?.itemLevelIssues || []).some(i => i.code === 'identity_and_belief_policy_violation') };
+});
+const counts = list => Object.fromEntries([...new Set(list.map(r => r.verdict))].map(v => [v, list.filter(r => r.verdict === v).length]));
+const result = { ticket: 'TK-10993', merchant: MERCHANT, checked_at: new Date().toISOString(), read_only: true,
+  scope: 'Deterministic 40-offer destamp sample, 10 protected samples, full retained F3 and identity-policy cohorts; not a full-account audit.',
+  ledger, summary: { destamp: counts(sample), protected_sample: counts(guardSample), f3: counts(f3Current), identity_policy_copy: counts(gCurrent) },
+  destamp_sample: sample, protected_sample: guardSample, f3: f3Current, identity_policy_copy: gCurrent };
+fs.writeFileSync(out, JSON.stringify(result, null, 2), { flag: 'wx' });
+console.log(JSON.stringify({ checked_at: result.checked_at, ledger, summary: result.summary, output: out }, null, 2));
+process.exitCode = ledger.missing.length || ledger.extra.length || ledger.protected_samples_touched.length || ledger.applied_without_prior_intent || [...sample, ...f3Current, ...gCurrent, ...guardSample].some(r => r.verdict !== 'PASS') ? 1 : 0;
diff --git a/verification/2026-09-05-TK-10993-CONSOLIDATED-RESIDUAL-APPROVAL.md b/verification/2026-09-05-TK-10993-CONSOLIDATED-RESIDUAL-APPROVAL.md
new file mode 100644
index 0000000..f4286e1
--- /dev/null
+++ b/verification/2026-09-05-TK-10993-CONSOLIDATED-RESIDUAL-APPROVAL.md
@@ -0,0 +1,43 @@
+# TK-10993 — verified recovery and remaining approval
+
+Prepared by codex-run-10993 at 2026-09-05T06:01:45.755Z (UTC). Merchant **146735262**. **DRAFT ONLY — no external mutation in this session.**
+
+This is the current TK-10993 decision surface. It supersedes the TK-10993 sections of the September 3 rebaseline and September 4 TK-11248 Task 3 memo. TK-11233/Kravet scope is unaffected.
+
+## Verified results
+
+- **Canada config is fixed:** active CAD **27.00** flat rate covers a 4 lb roll. Existing-offer canary: active **0 → 787**, disapproved **1,112 → 296**, currency errors **1,027 → 279**, missing shipping **84 → 17**. Counts are still reprocessing; this is not full market restoration.
+- The prior HALF-APPLIED diagnosis was a verifier bug: no weight rows was interpreted as capped. Fixed in local commit **f62f718**; regression/failure tests **8/8**, real read-only API flow PASS. Merchant API shipping reads replace the sunset-prone Content API path.
+- **De-stamp run finished:** full ledger **4,052/4,052**, no missing/extra targets, every apply has prior intent, zero protected-sample intersections. Fresh deterministic served-view sample **40/40 PASS**; protected sample **10/10 PASS**. Sample evidence does not prove all 4,052 remain correct after every future Shopify update.
+- F1/F2 were completed in the prior authorized session (195 deletes / 1,486 Google-channel removals); do not replay. Their live processing is not claimed complete: US aggregate still shows 1,507 landing-page errors at 05:51 UTC.
+- The shipping API validator support case was filed in the prior session per the ticket confirmation. Its case ID and resolution are not verified here; do not resend the old prepared report or run a whole-object PUT as a diagnostic.
+- **UK remains outside the latest Canada-only scope.** Market disabled/no active catalog, USD/1 lb service remains. Do not re-enable or delete UK offers under this approval.
+
+## One bounded feed-repair approval
+
+**Proposed decision: APPROVE the 33 exact field corrections below, canary first, subject to fresh preflight; or REVISE / BLOCK.** Nothing in this memo authorizes general feed replay, product deletion, channel publication, Shopify writes, datasource rule changes, or API shipping writes.
+
+| Change | Exact scope | Desired behavior |
+|---|---:|---|
+| F3 stale landing URLs | **19 offers**, including **5 bare numeric variant IDs** | Replace only the obsolete URL path with the current Shopify handle; preserve scheme, host, query string, and variant. All 19 products are currently ACTIVE. Titles are already clean. |
+| G stale political boilerplate | **14 offers** | Replace only the Google description with the current clean Shopify plain-text description. Source copy verified clean for **14/14**; all 14 still carry the identity-policy issue. Removal of copy is not a promise Google will clear the policy issue. |
+
+Exact offer IDs and **before/after field values**: [tk10993-20260905-residual-manifest.json](/Users/macstudio3/Projects/gmc-titlefix/verification/tk10993-20260905-residual-manifest.json).
+SHA-256: `ead4af90c8e149947e23f77add89cd02ea87f0a7e251d769db8a198b07d24818`.
+Independent read-only report: [residual-plan.json](/Users/macstudio3/Projects/gmc-titlefix/verification/tk10993-20260905-residual-plan.json).
+
+**Execution conditions:** freshly read each exact offer and source, refuse changed/missing identities, confirm current landing variant and feed price agree, preserve all unrelated fields, snapshot the complete pre-state, and use Merchant API with explicit correct datasource identity. Apply at most 3 canaries per class, then verify merged served values after propagation (allow at least 12 minutes for overlays) and check for new disapprovals before the remainder. Full-replace productInputs must preserve the entire input and must not write a partial payload. Restoring pre-state is itself a separately controlled live write.
+
+**Do not blindly resume the old executors.** F3 extracts variant IDs only after an underscore and skips bare IDs; it can also replace a roll-aligned link with the sample variant encoded in the offer ID. G84 uses the intermittently refused Content API. The attached field-only manifest avoids both assumptions; no apply command has been armed or run.
+
+## Other remaining work — not authorized by the 33-field approval
+
+- **Canada coverage restore:** continue to observe reprocessing. Any additional offers require a fresh, deduplicated Canada-catalog/Google target set and a separate bounded feed approval. The old ~18,000 deletion count is not a current target list.
+- **Durability:** an on-demand read-only audit now detects the known title/weight/link/description regressions. Installing a recurring divergence check or wiring archive/rename feed coupling remains separately gated; no schedule was installed. One same-day sample cannot prove future Shopify edits will not reintroduce old attributes.
+- **Other policy codes / two price anomalies in prior ticket history:** neither corrected nor waived by this memo. Re-enumerate/source-check before any further proposal.
+
+## Completion condition
+
+TK-10993 remains **BLOCKED / approval required**, not done. Close only after the approved residual corrections and intended Canada recovery/durability scope have evidence of completion, or Steve explicitly narrows that scope. Local diagnosis, verification, manifests, and memo consolidation are complete.
+
+Evidence: [Canada final read](/Users/macstudio3/Projects/gmc-titlefix/verification/tk10993-20260905-ca-final.json), [E2E proof](/Users/macstudio3/Projects/gmc-titlefix/verification/e2e-proof.json), [read-only audit script](/Users/macstudio3/Projects/gmc-titlefix/tk10993-remediation-audit.mjs). All remote operations in this session were reads (plus OAuth token mint and read-only Shopify GraphQL POST); no product/feed/settings mutations or external messages were sent, except authorized ticket-peer DMs.
diff --git a/verification/e2e-proof.json b/verification/e2e-proof.json
index 2886430..577654e 100644
--- a/verification/e2e-proof.json
+++ b/verification/e2e-proof.json
@@ -19,7 +19,10 @@
     "node --check tk10993-ca-canary-verify.mjs",
     "git diff --check",
     "node tk10993-ca-canary-verify.mjs --output=verification/tk10993-20260905-ca-final.json",
-    "node ~/.claude/yolo-queue/tk10993-trackB-exec/4-verify-ca-service.mjs"
+    "node ~/.claude/yolo-queue/tk10993-trackB-exec/4-verify-ca-service.mjs",
+    "node --check tk10993-remediation-audit.mjs",
+    "node tk10993-remediation-audit.mjs --output=verification/tk10993-20260905-residual-plan.json",
+    "JSON assertions: 19 path-only changes, 14 clean-source descriptions, no UNKNOWN reads"
   ],
   "assertions": [
     {
@@ -51,6 +54,11 @@
       "check": "Overall feed remediation complete",
       "verdict": "SKIP",
       "reason": "Additional feed reprocessing/recovery and residual feed writes remain; ticket must not be marked done."
+    },
+    {
+      "check": "Approval artifact integrity",
+      "verdict": "PASS",
+      "evidence": "33 exact before/after changes; 19 URL changes preserve query/variant; 14 descriptions match clean current Shopify source; old TK-10993 memos carry supersession notices"
     }
   ],
   "dtd": {
@@ -66,5 +74,41 @@
     "post_decision": "FINAL KEEP; require actual applicability, not merely flat-rate parsing"
   },
   "cleanup_rollback": "Local git revert available; no remote test records or live mutations; historical Track C proof retained at verification/tk10993-track-c-historical-e2e-proof.json",
-  "verdict": "VERIFIER_PASS; OVERALL_TICKET_PARTIAL_GATED"
+  "verdict": "VERIFIER_PASS; OVERALL_TICKET_PARTIAL_GATED",
+  "residual_audit": {
+    "timestamp": "2026-09-05T06:01:45.755Z",
+    "script": "tk10993-remediation-audit.mjs",
+    "result": "EXPECTED HOLD (exit 1)",
+    "ledger": {
+      "target_count": 4052,
+      "applied_count": 4052,
+      "missing": [],
+      "extra": [],
+      "protected_samples_touched": [],
+      "applied_without_prior_intent": 0,
+      "failed_records": 0,
+      "sha256": "40be4b653c11988c961e2bee43ddc5281c4e2152b73433c61e4ed1c46488f3da"
+    },
+    "summary": {
+      "destamp": {
+        "PASS": 40
+      },
+      "protected_sample": {
+        "PASS": 10
+      },
+      "f3": {
+        "PASS": 3,
+        "FAIL": 19
+      },
+      "identity_policy_copy": {
+        "PASS": 68,
+        "FAIL": 14
+      }
+    },
+    "source_clean_descriptions": "14/14",
+    "url_query_variant_preserved": "19/19",
+    "manifest_sha256": "ead4af90c8e149947e23f77add89cd02ea87f0a7e251d769db8a198b07d24818",
+    "proposal": "33 field changes; no external writes",
+    "unknown_reads": 0
+  }
 }
diff --git a/verification/prior-2026-09-03-TK-10993-GMC-REBASELINE-and-remaining-levers.md b/verification/prior-2026-09-03-TK-10993-GMC-REBASELINE-and-remaining-levers.md
new file mode 100644
index 0000000..caced5e
--- /dev/null
+++ b/verification/prior-2026-09-03-TK-10993-GMC-REBASELINE-and-remaining-levers.md
@@ -0,0 +1,372 @@
+# GATED — TK-10993 GMC: full re-baseline + the 4 levers that actually remain
+
+**Agent:** claude-run-10993 · **Owner:** vp-dw-commerce · **Ticket:** TK-10993 · **Date:** 2026-09-03
+**Merchant:** 146735262 — account HEALTHY (claimed, not suspended, 0 account-level issues).
+**Cost:** $0 (all Google/Shopify reads are free) + ~$0.02 one Codex second-model pass. **Nothing gated fired.**
+**Supersedes:** `_done/2026-08-31-GMC-DEGRADED-CONSOLIDATED-durable-fix.md` — that memo's headline numbers and
+two of its five tracks are now provably wrong. This memo replaces it in full.
+
+---
+
+## Why this memo exists
+TK-10993 has sat `blocked` for 4 days while an automated loop re-ran read-only "readiness monitoring" 
+cycles that kept re-deriving the same HOLD. The HOLD was resting on stale facts. Fresh live probes today
+overturned three of them, and turned up two real problems nobody was tracking.
+
+**Every number below is from a live read taken 2026-09-03. Nothing is carried forward from a prior memo.**
+
+---
+
+## The three premises that were wrong
+
+| Prior claim | Live truth today | Consequence |
+|---|---|---|
+| "Disapproval is **26.1%** (25,168), driven by 26,751 `item_missing_required_attribute` on Google-crawl duplicate offers." | Merchant API `aggregateProductStatuses`: **SHOPPING_ADS~US = 1,981 disapproved of 67,340 → 2.9%.** `item_missing_required_attribute` is now **n=9**. | The crisis framing is gone. US is healthy. **Track A's whole premise is obsolete.** |
+| "Content API for Shopping v2.1 was sunset 2026-08-18 — all feed-write levers are DEAD; only a Shopify channel publish can work." (2026-09-03 coverage memo) | `content/v2.1` **products, productstatuses and shippingsettings all return HTTP 200** on the `claude-gmc@dw-gmc-28db28db` service account. The `psError` 500 in `latest.json` is a transient error, not a sunset. | A whole class of remedies was written off for nothing. Content-API deletes/inserts still work. |
+| "Google website-crawl is creating duplicate offers; turn crawl off." | Full 68,111-offer scan: **`source` is `api` for 100% of offers. `source=crawl` = 0.** And `accounts/v1/…/autofeedSettings` returns **403 "This method can only be accessed by standalone account"** (146735262 is a sub-account). | Google is creating **no** crawl offers. The toggle is both unnecessary and not API-reachable. |
+
+**Second-model check (Codex `gpt-5.3-codex`)** was run against my analysis before this memo. It rejected my
+first read of Track C and demanded I prove causality rather than infer it. That challenge is what produced
+the corrected root cause in Track C below — the original conclusion would have been wrong.
+
+---
+
+## Where the account actually stands (live, 2026-09-03)
+
+| Context | active | disapproved | rate |
+|---|--:|--:|--:|
+| SHOPPING_ADS ~ **US** | 63,964 | 1,981 | **2.9%** |
+| SHOPPING_ADS ~ **CA** | 0 | 1,112 | **100%** |
+| SHOPPING_ADS ~ **GB** | 0 | 4 | 100% |
+| DISPLAY_ADS ~ CA | 1,080 | 28 | 2.5% |
+
+US disapprovals by cause: `landing_page_error` **1,673 (84%)** · `missing_shipping_weight` 181 ·
+image_* ~90 · policy_violations ~34 · everything else <30.
+Not currently disapproving but flagged for future enforcement: `image_too_small_for_high_resolution` **12,639**.
+
+---
+
+## TRACK-BY-TRACK DISPOSITION
+
+### ~~TRACK A — crawl-off + 26.7k orphan delete~~ → **WITHDRAW**
+`source=crawl` is **0/68,111**. The `item_missing_required_attribute` class it targeted is **n=9**.
+The `autofeedSettings` PATCH it proposed is **403-blocked** on this sub-account. Nothing to do, nothing
+executable. **Recommend: BLOCK / close as obsolete.** _(No action for Steve.)_
+
+### TRACK B — CA/GB is not a fork, it is an UNFINISHED RECOVERY ⟶ **the single biggest lever on this ticket**
+
+> **CORRECTION.** An earlier draft of this memo offered a B1/B2 choice (add CAD/GBP rates vs price CA/GB in USD).
+> **That was my error — B was never open.** Steve already ruled it on 2026-08-24 (TK-10702): *"keep canada and uk"*,
+> and the recorded decision is explicitly **B1 — add CAD/GBP shipping, never drop the CA/GB offers.**
+> Re-asking a settled question is exactly the failure this ticket has been stuck in. B1 stands.
+
+Checking that ruling surfaced something nobody has been tracking, and it is worse than anything else in this memo.
+
+**The 2026-08-24 incident was never recovered.** Before Steve's ruling, an agent session mass-deleted CA/GB offers
+via the Content API — **15,284 of 19,389 deleted** before he reversed it. The recorded recovery was *"re-feed the
+deleted CA/GB offers AND add CAD/GBP shipping."* **Neither half was ever done.**
+
+**Live state today, 10 days on:**
+
+| Feed | offers | SHOPPING_ADS active | disapproved |
+|---|--:|--:|--:|
+| US | 67,003 | 63,951 | 1,981 (2.9%, healthy) |
+| CA | 1,108 | **0** | 1,112 (**100%**) |
+| GB | **0** | **0** | 4 |
+
+**DW currently has effectively ZERO Google Shopping presence in Canada and the UK** — a market Steve explicitly
+said to keep. Canada is at ~6% of its former offer count and 0% serving; the UK is at literally zero offers.
+Cause of the CA disapprovals is unchanged: 97 Merchant Center shipping services, **all USD**, so
+`missing_shipping_mismatch_of_shipping_method_and_offer_currency` (1,027 of 1,112).
+
+**DTD panel ruled on the recovery sequencing (2026-09-03): OPTION A — SHIPPING-FIRST.**
+1. **Add CAD + GBP shipping services** (Steve, Shopify/MC console — agent has no `read_shipping` scope or carrier creds).
+2. **Wait for reprocessing and use the 1,108 surviving CA offers as a free canary.** They are already in the feed and
+   already 100% disapproved on exactly the one code the fix targets — so Google itself confirms, at zero cost and
+   zero new risk, whether the shipping config is right before anything is re-fed.
+3. **Only then re-feed the ~18,000** in batches, with a disapproval-rate check between batches and a stop-rule.
+
+**Why not feed-first:** re-feeding ~18,000 offers while no matching-currency service exists lands all 18,000
+disapproved and serving **zero** impressions — it buys no coverage a single day sooner, while taking account-level
+disapproval from 2.9% to over 20% and burying the healthy US signal. It is also the exact shape of the 2026-08-24
+incident (a large external write fired before its precondition was confirmed), with the sign flipped from delete
+to insert.
+
+**✅ STEP-0 AUDIT COMPLETE (2026-09-03, read-only, $0).** The contrarian review demanded this before any
+shipping service is touched. It is now done — using `SHOPIFY_FULL_ACCESS_TOKEN` (the narrow admin token is
+`ACCESS_DENIED` for `read_markets`/`read_shipping`; the full token is not). **All three preconditions are
+closed, and two of the answers change the plan.**
+
+**① Does the re-feed source exist, and how big is it really?**
+Shopify Markets: **Canada `enabled=true`** with an ACTIVE catalog (publication `80549642291`);
+**United Kingdom `enabled=FALSE`, with no catalog at all**; US and International enabled.
+`productsCount` (caps at 10k) shows **≥10,000 active products are BOTH on the Google & YouTube channel AND in
+the Canada catalog** — yet Merchant Center holds only **1,108 CA offers**. So the Canadian source exists at
+scale and the gap is real. The "~18,000" figure is superseded; size the batches off the live Canada-catalog
+count, not the 10-day-old deletion log.
+
+**② 🔴 THE UK CANNOT BE RESTORED BY A SHIPPING CHANGE — the UK market is DISABLED in Shopify.**
+This is why GB has zero offers, and no amount of GBP shipping configuration will change it. **Adding a GBP
+service first would be wasted work.** The UK sequence is: *re-enable the UK market in Shopify → create its
+catalog → then* GBP shipping → then feed. Worth confirming whether that market was disabled deliberately;
+it sits oddly against the 2026-08-24 "keep canada and uk" ruling.
+
+**③ 🔴 CA/GB SHIPPING IS NOT CARRIER-CALCULATED — and it refuses to ship anything over 1 lb.**
+Cody's worry that a CAD service might still pull a USD carrier rate does **not** apply: CA and GB share one
+static weight-table service, so a CAD static rate is a genuine and sufficient currency fix. But reading that
+table surfaced a defect nobody had flagged:
+
+```
+CA and GB service "weight_based_POUND_54097543219_Custom_rate_weight_based"  currency=USD  active=true
+   0 – 1 lb      -> flat rate $10 USD
+   1 lb – ∞      -> noShipping: true
+```
+
+**DW wallcovering rolls weigh ~4 lb.** So every roll is currently *unshippable* to Canada and the UK — that is
+the `missing_shipping` code (84 offers) sitting behind the currency errors. **Adding a CAD service alone would
+clear 1,027 currency errors and immediately re-disapprove much of the same population as `missing_shipping`.**
+The Track B fix is therefore **two changes, not one: matching currency AND a weight bracket that goes past 1 lb.**
+
+> **⚠️ TRACK B AND TRACK C ARE COUPLED — do not fire C's weight repair first.** Track C would correct 1,844
+> offers from the sample's 0.35 lb to a roll's ~4 lb. Under the current table, 0.35 lb is the *only* reason those
+> offers get a shipping rate at all; setting them to 4 lb while the `noShipping` cliff stands would push them
+> straight into `missing_shipping`. **Fix the CA/GB weight bracket before, or with, Track C's weight repair.**
+> (The US table is separate — `carrier_based … UPS® Ground` — so US offers are unaffected by this cliff.)
+
+- **Gate:** Shopify/MC console changes + a large feed restore → **HARD-GATED (Steve executes).** Step 0 audit is done; what remains is: (a) re-enable the UK market in Shopify, (b) add CAD + GBP currency shipping services, (c) raise the CA/GB weight bracket past 1 lb, (d) verify the 1,108 CA canary flips active, (e) batched re-feed.
+- **DECISION → APPROVE shipping-first recovery as re-scoped by the step-0 audit (UK market re-enable + CAD/GBP currency + >1 lb weight bracket → verify CA canary → batched re-feed) / REVISE / BLOCK: ______**
+
+### TRACK C — the $4.25 leak → **ALREADY FIXED. A bounded cosmetic residual remains.**
+This is the track the loop was stuck on, and the standing instruction "**DO NOT RELINK C**" was based on a
+misdiagnosis. Corrected, with proof:
+
+- `primary-fix-batch.mjs` (TK-10862) ran 2026-08-27/28 and overwrote **9,051** `$4.25` sample-variant offers
+  in primary DS `180695450` with the real **roll** attributes. This was the *sanctioned* fix for the
+  under-advertising leak, **not** a contamination event.
+- **Live audit of all 9,051 today: price = roll price on 9,051/9,051, and link = roll variant on 9,051/9,051.**
+  Feed price and landing-page price **agree** → no price mismatch, no misrepresentation, **no suspension risk**.
+  (`leaks: 0` in the canary is correct.)
+- **The residual:** `buildRollBody()` (lines 107–134) *does* strip the `Sample: ` prefix and *does* set a 4 lb
+  wallcovering weight — but the live offers don't show them, because supplemental datasources
+  **`10677010255` (DW Sample Title Overrides)** and **`10683334493` (DW Shipping Weight Overrides)** sit
+  **before SELF** in the primary feed rule and re-stamp the *stale sample* values over the batch's correct ones.
+  - **2,612 of 9,051** roll offers still advertise a **"Sample: …" title** (e.g. `Sample: Weft Clay | Graham & Brown` at **$190**).
+    Worst-hit: Hollywood Wallcoverings 604 · Kravet 360 · Rebel Walls 259 · Scalamandre 253 · Anna French 202.
+  - **1,844 of 9,051** still carry the sample's **0.35 lb** shipping weight on a roll — understated shipping.
+- **Correct fix is surgical, not structural:** remove those **9,051 repurposed offerIds** from the two
+  supplemental datasources. Do **not** blanket-unlink either DS — both still serve *genuine* sample offers
+  correctly, and unlinking would strip correct titles/weights from those.
+- **Reversible?** Yes — 9,051/9,051 per-offer pre-state snapshots exist in
+  `~/Projects/gmc-titlefix/data/primary-fix-rollback/`, plus `node primary-fix-batch.mjs --rollback --apply`.
+- **Gate:** supplemental-datasource row deletes = live feed change → **HARD-GATED.**
+
+  **DTD panel ruled on this track (2026-09-03): OPTION A — surgical de-stamp. 7/7 valid votes, unanimous.**
+  Alternatives rejected: rolling the whole batch back to $4.25 (re-opens a live under-advertising defect to
+  buy internal tidiness) and doing nothing (the weight defect is real money — see below).
+
+  **Three objections were raised by the contrarian reviewer and resolved with live reads before this memo:**
+  1. *"Are these datasources even API-editable, or file-fed on a schedule that would silently revert the fix?"*
+     → **All three are `input: API`.** No scheduled fetch exists to overwrite a row delete. Fix is durable.
+  2. *"Is the 0.35 lb weight actually costing money, or is DW on flat-rate shipping?"*
+     → **Carrier-calculated.** US service is `carrier_based_… UPS® Ground` with a 150% adjustment — rates are
+     computed from item shipping weight. 0.35 lb on a ~4 lb roll under-quotes real freight. Confirmed, not assumed.
+  3. *"Do any of the 9,051 overlap the dead-PDP orphans, making the work cosmetic on dead listings?"*
+     → **12 of 9,051.** Exclude those 12; they belong to Track F.
+
+  **⚠️ ONE OBJECTION REMAINS OPEN and is a precondition, not a footnote.** The contrarian's strongest point:
+  Shopify's Google channel continuously re-syncs into this same primary datasource, and these 9,051 offer IDs
+  still *name* sample variants. Nothing proves a future Shopify re-sync won't re-collide $4.25 back onto them.
+  Partial reassurance: the batch has now held roll price on 9,051/9,051 for **7 days**, so no global re-collision
+  is occurring — but an unchanged product doesn't re-sync, so the risk is per-product-edit, not global.
+  **Required before firing at 9,051-wide scale: a ~20-ID canary held through one full Shopify sync cycle,**
+  verifying (a) the row delete sticks and (b) price/title are not re-collided toward the sample state.
+  If the canary fails, the correct answer flips to the Option-B architecture (publish the roll as its own
+  offer ID) rather than repurposing a sample ID.
+
+- **DECISION → APPROVE canary-first surgical de-stamp (2,612 titles + 1,844 weights, minus 12 orphans) / REVISE / BLOCK: ______**
+
+> ⚠️ Also please note: the price-override DS `10693978453` **is currently linked** into the primary feed rule
+> (`10677010255 > 10683334493 > 10693978453 > SELF`), contrary to the Aug-31 note saying it was rolled back.
+> It is **not** causing the residual above, so this is not urgent — but the record should be corrected, and a
+> SHA-256-verified rollback is dry-run-validated and ready if you want it removed:
+> `node ~/Projects/gmc-titlefix/link-price-override-ds-ROLLBACK.mjs --manifest data/track-c-snapshots/primary-180695450-pre-link-2026-08-31T18-17-58-130Z.manifest.json --apply --yes-i-am-steve`
+> **DECISION → leave linked / unlink: ______**
+
+### TRACK D — orphan deletes → **DONE.** 731 fired by Steve 2026-08-31 (HTTP 204). No action.
+
+### TRACK E — coverage push → **MOVED.** Now owned by TK-11202 (`claude-gmc-waves`); Fabricut + clean
+Carnegie published, Fentucci + at-cost Carnegie + 1,281 $4.25 Phillipe Romano correctly HELD. No action here.
+
+---
+
+## TWO NEW LEVERS nobody was tracking
+
+### TRACK F — 1,673 dead-landing-page orphans ⟶ **now the #1 US disapproval cause (84%)**
+- These are stale offers whose DW product was archived/deleted but whose GMC offer was never removed.
+- **97% (974/1,004 sampled unique) are legacy bare-variant-id offers** (`online:en:US:44223657050163`),
+  not the current `shopify_US_<pid>_<vid>` channel shape — i.e. an older offer-id generation nothing refreshes.
+- **Verified: 8/8 spot-checked landing pages return HTTP 404.** Not a false positive.
+- **Fix:** Content-API `products.delete` on the enumerated ids (the API is alive — premise #2 above).
+  Enumerated list ready at `~/.claude/yolo-queue/tk10993-rebaseline-2026-09-03/trackF-offer-ids.txt` (1,004 enumerated; ~1,673 per the live aggregate — re-enumerate immediately before firing).
+- **Durable cure:** couple *DW product archived/deleted → GMC offer delete*. The standing
+  `gmc-orphan-reconcile` skill already drips this; it is not keeping up with the legacy-format backlog.
+- **Reversible?** Yes — any product re-published is re-added by the feed.
+- **Gate:** Content-API delete → **HARD-GATED.**
+
+**DTD panel ruled on Track F (2026-09-04): OPTION C — decouple from B, but drain through the VERIFIED
+reconcile path, NOT a one-shot mass delete.** Vote 5/7 (dissents: Heretic voted A "just run it"; the
+owner-intent lens voted B "Steve ruled on this less than a day ago").
+
+**What the panel rejected, and why it matters.** Option A was a 1,673-row Content-API delete justified by an
+8-of-1,004 spot-check. That is the exact shape of the 2026-08-24 incident — same API path, same "these look
+dead" reasoning, same sample-to-population leap — and that deletion (15,284 offers) is *still unrecovered*.
+"The feed re-adds it" is also false reversibility here: the feed by construction does not publish archived
+products, so a wrong delete lands precisely in the set the feed will never restore.
+
+**The contrarian's load-bearing question, answered in code.** Cody argued C is only meaningfully safer than A
+*if* the standing reconcile job verifies per-record against the store rather than replaying the same
+`landing_page_error` heuristic on a timer — otherwise C is "A with a delay and a nicer name". Read
+`~/.claude/skills/google-merchant-agent/gmc-orphan-reconcile.mjs`:
+
+```js
+// :96 / :110  — resolves each offer's landing product/variant against Shopify Admin
+product(id:"…"){ id status publishedOnPublication(…) vendor }
+// :215
+const isOrphan = (s) => s.status === 'NOT_FOUND' || s.status === 'ARCHIVED'
+                     || s.status === 'DRAFT'     || !s.onGoogle;
+```
+
+That is **ground-truth per-record verification against the store.** Cody's objection is closed and C is a
+genuinely different mechanism. The job's own header confirms the durable coupling largely exists already:
+*"this canary makes the backlog NON-RECURRING by catching NEW orphans every day."*
+
+**The one real gap.** `newOrphans = orphans.filter(o => !baseSet.has(o.id))` — the existing backlog is excluded
+by the baseline floor and will **never** be auto-drained. So "let the drip handle it" is false as stated; the
+backlog needs an explicit capped drain **through this same Shopify-verified path** (`GMC_ORPHAN_AUTO_CAP` is
+already 200/run and tunable).
+
+### 🔴 GROUND-TRUTH VERIFICATION RESULT — Track F was misdiagnosed, and Option A would have been a disaster
+
+The authoritative check (each offer's Shopify product status, the same method the reconcile job uses) is
+**complete**, and it overturns the premise of this entire track:
+
+| Of the 1,004 `landing_page_error` offers | count | share |
+|---|--:|--:|
+| **ACTIVE in Shopify AND published to Google** — NOT orphans | **895** | **89%** |
+| Genuinely ARCHIVED | 102 | 10% |
+| Genuinely DRAFT | 7 | <1% |
+
+**Only 109 of 1,004 (11%) are real orphans.** A blind Option-A delete would have removed **895 live, active,
+sellable products** from Google. The HTTP evidence was unanimous and unanimously misleading: 403 of 403 pages
+returned 404, and 89% of those products are perfectly alive.
+
+**Root cause, confirmed 5/5 by direct check:** those 895 are **published to the Google & YouTube channel but
+NOT to the Online Store channel**. Shopify serves a 404 for `/products/<handle>` when a product is not on the
+Online Store — so Google crawls the link it was given, gets a 404, and disapproves it. The handles are
+current and correct (checked: 3 of 4 match exactly), so this is not a stale-link problem.
+
+**Why they are off the Online Store — strong circumstantial, not proven.** The 895 are overwhelmingly the
+peel-and-stick line: **PS Removable Wallpaper 337 · Surface Stick 284 · Malibu Wallpaper 258** (879 of 895).
+That matches the documented decision to pull the removable/peel-and-stick line off the main DW Online Store
+in favour of **apartmentwallpaper.com**. If that is the reason, then publishing them back to the Online Store
+would *undo a deliberate business decision* — the correct fix is to **unpublish them from the Google &
+YouTube channel** (or repoint their Google links at apartmentwallpaper.com), not to restore them to DW.
+
+**Track F therefore splits into two unrelated jobs:**
+- **F1 — 109 genuine orphans** (102 ARCHIVED + 7 DRAFT; top vendor Carnegie 79). Delete via the reconcile
+  job's verified path. Small, bounded, evidenced. *This is the only part the DTD verdict's drain applies to.*
+- **F2 — 895 live products advertising a 404** (879 peel-and-stick). **A business decision, not a cleanup:**
+  should the peel-and-stick line be on Google at all, and if so pointing where? Until that is answered they
+  are advertising dead links to shoppers, which is worse than being absent.
+
+Lists: `…/scratchpad/tk10993/trackF-CONFIRMED-orphans.json` (109) and `trackF-NOT-orphans.json` (895).
+
+### ✅ TRACK F — DECIDED AND EXECUTED 2026-09-04 (Steve: "fix both" + "Unpublish from Google")
+
+Re-enumerated at full population first (all 67,869 statuses → **1,703** `landing_page_error` offers, not the
+1,004 sample). Sample-vs-population check passed (11.4%/87.3% full vs 11%/89% sampled), so firing on the full
+list was defensible.
+
+- **F1 — DONE.** 195 verified orphans (184 ARCHIVED + 11 DRAFT) deleted from Merchant Center. **195/195
+  snapshotted BEFORE delete**, 195/195 deleted, 0 failed. Spot-verified 6/6 gone from the live feed.
+  Undo = re-insert from `tk10993-trackF-exec/F1-snapshots/` (195 full payloads). Ledgered.
+- **F2 — DONE.** 1,486 products unpublished from the Google & YouTube channel. 1,486/1,486, 0 failed.
+  Spot-verified 5/5 across the range: `onGoogle=false` AND still `ACTIVE` on Shopify — off Google only,
+  nothing else touched. Undo = `F2-restore-map.json`. Ledgered.
+- **Net: 1,681 of 1,703 resolved (98.7%)** — the class that was 84% of all US disapprovals.
+- **Remaining 22** → became Track F3 below.
+
+
+### TRACK G — 158 policy-violation false positives from **colorway names**
+Google is flagging DW colour and pattern names as restricted content. Verified examples:
+- `tobacco_policy_violation` ← *"Venetian Heritage – **Tobacco**"*, *"**Pipa** 12" Fentucci Stripe"*
+- `legal_restrictions_policy_violation` ← *"Andora **Champagne**"*, *"Terracina **Champagne**"*
+- `sexual_interests_policy_violation` ← *"Laura Ashley **Pussy Willow** Natural"* (a plant)
+- `identity_and_belief_policy_violation` ← 84 offers, **all 84 are "Sample:"-titled** (mostly Scalamandre)
+- Also `guns_parts`, `illegal_drugs`, `live_animals`, `vehicles`, `healthcare_pdt` — same pattern.
+- **These are real product names, not policy breaches.** Remedy is **Request Review** per issue in the
+  Merchant Center console, not a rename — DW colourway names are meaningful and customer-facing.
+- ⚠️ **Corrected by the DTD contrarian review:** an earlier draft of this memo guessed that fixing Track C's
+  titles might clear the 84 `identity_and_belief` hits for free. **That was wrong — checked and disproved.**
+  Only **1 of 84** flagged titles contains a policy-trigger colour word, so the colour-name theory does not
+  explain them either. The actual correlate is **vendor: 84/84 are Scalamandre**. Neither Track C nor a
+  rename will move this number. Treat it as a standalone vendor-scoped appeal and do not budget Track C
+  effort expecting it to help.
+- **Gate:** Merchant Center console (Steve). **DECISION → appeal now / after Track C / BLOCK: ______**
+
+---
+
+## Recommended sequence
+**REVISED after the CA/GB finding: B first.** B is now the largest lever on this ticket — two whole markets are
+dark, and step 1 is a single console action only Steve can take, so it should start immediately and reprocess in
+the background while everything else proceeds.
+
+**B (add CAD+GBP shipping, verify the free CA canary, then batched re-feed) → C (surgical de-stamp, canary-gated)
+→ F (delete the 1,673 dead-PDP orphans) → G (standalone Scalamandre policy appeal).**
+Track A withdrawn, D done, E owned by TK-11202.
+
+## What was completed this pass without a gate
+- **Resolved the "unknown-owner dirty enumerator" blocker** that held this ticket: `gmc-titlefix`'s untracked
+  `enumerate-genuine-rollleaks.mjs` is the read-only script that produced the already-committed
+  `data/genuine-rollleaks.json`. Committed as `51a533b`; worktree clean. (Local, git-reversible.)
+- Full read-only re-baseline: 68,111 product statuses + 68,111 products + 9,051-offer live audit + live
+  shipping settings + 8 landing-page HTTP checks. Artefacts in
+  `~/.claude/yolo-queue/tk10993-rebaseline-2026-09-03/`.
+
+_All detection and diagnosis was read-only. No feed write, no channel publish, no price write, no delete fired._
+
+---
+
+## ▶ STEVE'S CONSOLE RUNBOOK — Track B, in order (2026-09-03)
+
+Steve ruled: agent fires nothing further; Track B is his. C and F stay gated and wait for B's canary.
+Everything below is console work — there is no terminal command to paste.
+
+**1. Shopify → Settings → Markets → United Kingdom → ENABLE.**
+Currently `enabled=false` with no catalog, which is the sole reason GB has zero offers. Create/activate its
+catalog. *(If the UK was disabled deliberately, say so and we drop the UK half — the 2026-08-24 "keep canada
+and uk" ruling assumed it was on.)*
+
+**2. Shopify → Settings → Shipping and delivery → the Canada + UK rate table.**
+Two edits to the same shared service (`weight_based_POUND_54097543219_Custom_rate_weight_based`):
+   - **Currency** → CAD for Canada, GBP for the UK. It is USD today, which is the 1,027-offer disapproval.
+   - **Weight bracket** → the table stops at 1 lb and returns `noShipping` above it. DW rolls are ~4 lb.
+     Extend the bracket (or add a heavier band) or the currency fix clears 1,027 errors and immediately
+     re-disapproves the same offers as `missing_shipping`.
+
+**3. Wait for Google to reprocess, then read the free canary.**
+The 1,108 surviving Canadian offers are already in the feed and already 100% disapproved on exactly the
+target code. If they flip **disapproved → active**, the config is proven. If they do not, stop — do not
+re-feed anything, and we re-diagnose. Check with:
+`node ~/Projects/gmc-titlefix/…` — or just ask this session to re-run the aggregate read ($0, ~30s).
+
+**4. Only after the canary is green: batched re-feed.**
+Size the batches off the **live Canada-catalog count** (≥10,000 products qualify today), not the stale
+"~18,000" deletion-log figure. Disapproval-rate check between batches, with a stop-rule if it climbs.
+The UK gets a small deliberate pilot batch first — it has no canary of its own.
+
+**5. Then unblock the rest.** Track C's weight repair becomes safe once step 2's bracket is raised.
+Track F (1,673 dead-PDP orphan deletes) is independent and can run any time.
+
+**Verification available on request, $0 and read-only:** re-run the Merchant API aggregate to see CA flip,
+re-read the shipping table to confirm the bracket, re-count the Canada catalog.
diff --git a/verification/prior-2026-09-04-TK-11248-GMC-task3-CONSOLIDATED-DECISION.md b/verification/prior-2026-09-04-TK-11248-GMC-task3-CONSOLIDATED-DECISION.md
new file mode 100644
index 0000000..60c8aec
--- /dev/null
+++ b/verification/prior-2026-09-04-TK-11248-GMC-task3-CONSOLIDATED-DECISION.md
@@ -0,0 +1,66 @@
+# GMC Task #3 — revalidated state + gated decisions (TK-10993 Canada · TK-11233 Kravet hi-res)
+
+**Agent:** google-merchant-agent · **Parent:** TK-11248 · **Owns:** TK-10993 (Track B/Canada), TK-11233 (B3/Kravet)
+**Date:** 2026-09-04 ~11:05 PDT · **Cost:** $0 (read-only Google Content API + Shopify reads + local sips)
+**Nothing was published or changed. No approval is logged yet. This memo is the decision surface.**
+
+---
+## 1. Revalidated Merchant state (LIVE, read-only, 2026-09-04T17:58Z)
+Merchant **146735262**: ~67,674 offers · **95.7% approved** · ~2,900 disapproved.
+
+**Canada canary (the free proof for Track B) — re-run just now:**
+| signal | baseline 03:07Z | live 17:58Z | needed |
+|---|---|---|---|
+| UK market enabled | NO | **NO** ❌ | enable (GB=0 offers until then) |
+| CA currency | USD | **USD** ❌ | CAD |
+| CA ships over 1 lb | NO | **NO** ❌ (bands 1lb→∞ = noShipping) | >1 lb bracket |
+| CA active offers | 0 | **0** | flips >0 when config lands |
+| CA disapproved | 1,112 | **1,106** | −6 = feed churn, not progress |
+| CA currency-mismatch | 1,027 | **1,022** | the target code |
+
+**Verdict: the Track B console edits have NOT landed. State is unchanged.** This is the pre-change baseline
+for post-fix verification.
+
+---
+## 2. Console action vs API-executable (the split you asked for)
+| Work | Who / how | Why |
+|---|---|---|
+| **Canada+UK shipping: currency→CAD/GBP, weight bracket >1 lb** | **STEVE — Shopify console** | DW Admin token lacks `read_markets`/`read_shipping`; the full token can *read* but the rate-table edit is a console/carrier action, not an API call. |
+| **Re-enable UK market + catalog** | **STEVE — Shopify console** | GB market is `enabled=false`; no API scope to flip it. |
+| **Google support report (if canary doesn't flip)** | **STEVE — sends** | prepared text ready (below). |
+| **Kravet hi-res re-fetch (add hi-res primary media)** | **API-executable** (Shopify Admin GraphQL) | but customer-facing product-media write → **GATED**, canary-first. |
+| Revalidation / canary verify / enumeration | **agent, done, $0** | pure reads. |
+
+---
+## 3. Track B — Canada/UK shipping (TK-10993) — YOUR CONSOLE RUNBOOK
+1. **Shopify → Settings → Markets → United Kingdom → ENABLE** (+ activate its catalog). *(If UK was disabled on purpose, say so — we drop the UK half.)*
+2. **Shopify → Settings → Shipping and delivery →** the shared service `weight_based_POUND_54097543219_Custom_rate_weight_based`:
+   - **Currency → CAD** (Canada) / **GBP** (UK) — fixes the 1,022 currency-mismatch.
+   - **Weight bracket → extend past 1 lb** (rolls are ~4 lb) — else the currency fix immediately re-disapproves the same offers as `missing_shipping`. **Both edits, or neither.**
+3. Wait ~24–48h; ask this session to re-run the canary ($0). **If CA flips disapproved→active, config proven.** If not → **send the prepared Google support report** (`TK-10993-CA-google-support-report-PREPARED.md`) and record the case ID; do **not** re-submit products.
+4. Only after canary green: batched re-feed (size off live Canada catalog ≥10,000, stop-rule on disapproval climb; UK gets a small pilot first).
+
+**DECISION → APPROVE Track B (UK re-enable + CAD/GBP + >1 lb) / US-only-drop-UK / REVISE / BLOCK: ______**
+
+---
+## 4. Track B3 — Kravet-family hi-res re-fetch canary (TK-11233) — GATED
+**Fresh evidence (read-only, 40-sample):** served images are **400px** (below Google's 1024 hi-res bar);
+Brandfolder originals are **1500–6000px for 21/40**, but **16/40 originals are themselves ≤1200px** (excluded)
+and 3/40 already OK. So a blanket "re-fetch all Kravet" would waste ~40% of writes. Built canary measures
+**each item's original before uploading** and skips capped ones — this is exactly the "exclude PR/Koroseal
+capped originals" rule, applied per-item (PR/Koroseal aren't even in scope — different catalog tables).
+- **In-scope:** 2,422 ACTIVE Kravet-family products with Brandfolder originals. Est. ~52% viable ≈ ~1,260.
+- **Tool:** `~/Projects/gmc-titlefix/tk11233-kravet-hires-canary.mjs` (committed `4e97f12`). Default = read-only enumerate (already run). **Apply is hard-gated** (`--apply` + `TK11233_APPROVED=1`), **ADDS the hi-res image as new primary media and never deletes the original**, and is **reversible** via `--rollback <run-log>`.
+
+**Decision needed — hi-res threshold** (which originals count as "big enough"):
+- **1024px** = Google's actual hi-res floor → most products fixed (includes the 1024/1200 originals).
+- **1200px** (recommended default) = safely above Google's floor.
+- **1500px** (what the canary used) = conservative, leaves 1024/1200 originals as-is.
+
+**DECISION → APPROVE Kravet canary at threshold [1024 / 1200 / 1500], canary batch N=[25/100] first / REVISE / BLOCK: ______**
+
+---
+## 5. What I will do the moment approval is logged on TK-11248
+- Track B: nothing to fire (it's your console) — I re-run the canary on request and verify CAD/positive-rate/no-noShipping-band; log the support case ID if used.
+- Track B3: run the canary at the approved threshold on the approved batch size, verify each new primary is served ≥ the threshold via the Merchant API, write the run-log + rollback map, and report identifiers. Then pause for a go on the full ~1,260.
+**Hard gate held:** no console change, no product-media write, no re-feed fires without your logged approval here.
diff --git a/verification/prior-TK-10993-CA-google-support-report-PREPARED.md b/verification/prior-TK-10993-CA-google-support-report-PREPARED.md
new file mode 100644
index 0000000..7b08484
--- /dev/null
+++ b/verification/prior-TK-10993-CA-google-support-report-PREPARED.md
@@ -0,0 +1,38 @@
+# PREPARED — Google Merchant Center support report (Canada Shopping Ads recovery)
+
+**Ticket:** TK-10993 (Track B) · **Under:** TK-11248 item #4 · **Agent:** google-merchant-agent · **Cost:** $0
+**When to send:** ONLY if, after Steve's console shipping fix + ~24–48h Google reprocessing, the CA canary
+does **not** flip disapproved→active (verify with `node tk10993-ca-canary-verify.mjs`). If it flips green, no
+support case is needed — do not send.
+**How to send:** Merchant Center → **Help / Support → Contact us** (merchant **146735262**), or the Shopping
+Ads support form. Paste the body below. Record the returned **support case ID** back onto TK-10993.
+
+---
+**Subject:** Canada (CA) offers remain disapproved after correcting shipping currency — request reprocessing / review — Merchant 146735262
+
+**Body:**
+Hello,
+
+Merchant Center account **146735262** (Designer Wallcoverings). Our Canada Shopping Ads offers are disapproved
+under **`missing_shipping_mismatch_of_shipping_method_and_offer_currency`** (approx. 1,022 offers) plus
+**`missing_shipping`** (approx. 84 offers).
+
+Root cause and fix on our side: our Canada shipping service was configured in **USD** and capped shipping at
+**1 lb** (returning "no shipping" above 1 lb; our products are ~4 lb rolls). We have corrected this on
+[DATE]: the Canada service now advertises a **positive flat rate in CAD** and covers the full product weight
+range (no upper "no shipping" band). Verified in Shopify Settings → Shipping and delivery and re-submitted to
+the Google & YouTube channel.
+
+Request: please **reprocess / re-crawl** the Canada offers so the corrected CAD shipping is picked up, and
+confirm whether any offers remain blocked for a reason other than the now-fixed currency/weight configuration.
+We did **not** mass-resubmit products (to avoid churn); this is a shipping-settings correction only.
+
+Thank you,
+Steve Abrams — Designer Wallcoverings
+
+---
+**Post-send verification (record on TK-10993):** support case ID = ______ ; canary re-run result = ______.
+**Assumption flagged for Steve:** the wave item said "sends prepared Google support report." This report is
+scoped to the **CA shipping recovery** (matches "verify CAD positive flat rate, no noShipping band, support
+case ID"). If instead you meant a support case for the **Track G policy-name false-positives** (Scalamandre
+"Sample:" titles etc.), say so and I'll prepare that one — reverse this if wrong.
diff --git a/verification/tk10993-20260905-residual-audit.json b/verification/tk10993-20260905-residual-audit.json
new file mode 100644
index 0000000..15d610a
--- /dev/null
+++ b/verification/tk10993-20260905-residual-audit.json
@@ -0,0 +1,1279 @@
+{
+  "ticket": "TK-10993",
+  "merchant": "146735262",
+  "checked_at": "2026-09-05T05:59:13.063Z",
+  "read_only": true,
+  "scope": "Deterministic 40-offer destamp sample, 10 protected samples, full retained F3 and identity-policy cohorts; not a full-account audit.",
+  "ledger": {
+    "target_count": 4052,
+    "applied_count": 4052,
+    "missing": [],
+    "extra": [],
+    "protected_samples_touched": [],
+    "applied_without_prior_intent": 0,
+    "failed_records": 0,
+    "sha256": "40be4b653c11988c961e2bee43ddc5281c4e2152b73433c61e4ed1c46488f3da"
+  },
+  "summary": {
+    "destamp": {
+      "PASS": 40
+    },
+    "protected_sample": {
+      "PASS": 10
+    },
+    "f3": {
+      "PASS": 3,
+      "FAIL": 19
+    },
+    "identity_policy_copy": {
+      "PASS": 68,
+      "FAIL": 14
+    }
+  },
+  "destamp_sample": [
+    {
+      "key": "shopify_US_7422939234355_42659757522995",
+      "verdict": "PASS",
+      "title": "Post Paper - Fossil Multi By Lee Jofa Modern | Kelly Wearstler Wallcoverings Iv | Modern Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 1666.35,
+      "fixTitle": true,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7421318463539_42653784375347",
+      "verdict": "PASS",
+      "title": "Kravet Design - W4162-1101 White Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 179.93,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_1498085130352_13934671495280",
+      "verdict": "PASS",
+      "title": "Diamando Star Trellis Lattice",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 189.62,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810544533555_44170471768115",
+      "verdict": "PASS",
+      "title": "Aloha - Lagoon | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 57.65,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7810441248819_44170224435251",
+      "verdict": "PASS",
+      "title": "Iguana - Cay | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 38.44,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_4484538138675_31793915592755",
+      "verdict": "PASS",
+      "title": "Shantung Garden - Verdance | Scalamandre",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 257.01,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421465690163_42654194991155",
+      "verdict": "PASS",
+      "title": "Quartz - Gold & Silver Gold | Cole & Son",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 234.68,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810545516595_44170473177139",
+      "verdict": "PASS",
+      "title": "Lava | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 60.77,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7810541551667_44170461052979",
+      "verdict": "PASS",
+      "title": "Caiman - Angora | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 46.83,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7800238669875_44126751359027",
+      "verdict": "PASS",
+      "title": "Parallel - Sandstone Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 47.78,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_1499779825776_13956347494512",
+      "verdict": "PASS",
+      "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 15.06,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7430795100211_42686009737267",
+      "verdict": "PASS",
+      "title": "Ceramic Wonders - Indigo Wallcovering | Mind the Gap",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 289,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7422034903091_42656389824563",
+      "verdict": "PASS",
+      "title": "Simpatico Paper - Cinder Light Blue By Lee Jofa Modern | Kelly Wearstler Vi |Abstract Modern Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 1256.85,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421320658995_42653789257779",
+      "verdict": "PASS",
+      "title": "Kravet Design - W4175-330 Sage Commercial Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 126,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_1499523842160_13953762689136",
+      "verdict": "PASS",
+      "title": "Shubert Faux Rice Paper Durable | Hollywood Wallcoverings",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 25.77,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7375682502707_42511771828275",
+      "verdict": "PASS",
+      "title": "Savile Suiting - Solids - Grey Lapel",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 318.55,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7796283998259_44107824463923",
+      "verdict": "PASS",
+      "title": "Shorescape - Opera Texture Upholstery | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 60.77,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7422630625331_42658294169651",
+      "verdict": "PASS",
+      "title": "Kravet Design - Light Blue Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 157.43,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6948079665203_41392740040755",
+      "verdict": "PASS",
+      "title": "Mali Dot - Beige Wallcovering | Anna French",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 95.29,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7292180103219_42319791358003",
+      "verdict": "PASS",
+      "title": "Scroll Trail Transitional Geometric - Mocha and Ebony | Architectural Wallcoverings",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 90,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_1499157561456_13947896889456",
+      "verdict": "PASS",
+      "title": "Sidmouth Acoustical | Hollywood Wallcoverings",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 49.88,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421307912243_42653757374515",
+      "verdict": "PASS",
+      "title": "Kravet Design - W4113-1611 Neutral Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 214.43,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7420022718515_42651114635315",
+      "verdict": "PASS",
+      "title": "Patchwork - 10241 Multi | Kravet Couture | Missoni Home Wallcoverings 03 |Modern Geometric Wallcovering Print",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 392.18,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6962185535539_41438308728883",
+      "verdict": "PASS",
+      "title": "Lady Alford - Apple/Magenta Wallcovering | Harlequin",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 269.68,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810561867827_44170592518195",
+      "verdict": "PASS",
+      "title": "Azure - Teal | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 39.69,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_4481158185011_31776802963507",
+      "verdict": "PASS",
+      "title": "Ming Circus - Multi On Tea | Scalamandre",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 912.22,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421503275059_42654260953139",
+      "verdict": "PASS",
+      "title": "Foglie E Scimmie - Orange | Cole & Son",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 563.85,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810436497459_44170214441011",
+      "verdict": "PASS",
+      "title": "Marlin - Pimento | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 62.52,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6679712268339_40347455389747",
+      "verdict": "PASS",
+      "title": "Cave | Rebel Walls",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 117.47,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6679579918387_40344971116595",
+      "verdict": "PASS",
+      "title": "Sum of Numbers | Rebel Walls",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 83.38,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_1495589355632_13906055135344",
+      "verdict": "PASS",
+      "title": "Pauline's Retro Geometric",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 146.18,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7855840788531_44418027192371",
+      "verdict": "PASS",
+      "title": "Drape Brush - Green | Rebel Walls",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 191,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7421978640435_42656249741363",
+      "verdict": "PASS",
+      "title": "Tansy - Blush Pink By G P & J Baker | House Small Prints Wallcovering |Botanical & Floral Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 258.3,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7800004149299_44126715871283",
+      "verdict": "PASS",
+      "title": "Interlude - Frost Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 44.52,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6679734583347_40347685388339",
+      "verdict": "PASS",
+      "title": "Sugar Stripes | Rebel Walls",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 138.28,
+      "fixTitle": true,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7513507823667_42966737715251",
+      "verdict": "PASS",
+      "title": "Sackville Stripe 01 - Green Wallcovering | Nina Campbell",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 296.83,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7789637533747_44081480794163",
+      "verdict": "PASS",
+      "title": "Cocoon Plaines Sauvages | Elitis",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 197.29,
+      "fixTitle": true,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7552678166579_43243478515763",
+      "verdict": "PASS",
+      "title": "Santorini Navy - Navy Wallcovering | Thibaut",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 136.83,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7430005325875_42683859140659",
+      "verdict": "PASS",
+      "title": "Brocade - Anthracite Wallcovering | Mind the Gap",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 289,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7855828336691_44418003238963",
+      "verdict": "PASS",
+      "title": "Circuit Board - Blue | Rebel Walls",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 191,
+      "fixTitle": false,
+      "fixWeight": true
+    }
+  ],
+  "protected_sample": [
+    {
+      "key": "shopify_US_4469047689267_31727663153203",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7384912134195_42537690071091",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_6604493193267_39534234894387",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7791141978163_44086066839603",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7585010843699_43328598147123",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_1500534472816_13965606781040",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_4492466290739_31819630772275",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_6936773427251_41354094379059",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_1498760183920_13940393443440",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7515287879731_42974583783475",
+      "verdict": "PASS",
+      "price": 4.25
+    }
+  ],
+  "f3": [
+    {
+      "key": "shopify_US_7800261836851_44126792613939",
+      "verdict": "PASS",
+      "current_shopify_handle": "weft-current-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Weft - Current Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/weft-current-wallcovering?variant=44126792613939&country=US&currency=USD",
+      "path_matches": true,
+      "vendor_badge_present": false
+    },
+    {
+      "key": "shopify_US_7800255152179_44126781177907",
+      "verdict": "PASS",
+      "current_shopify_handle": "isla-grass-wheat-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Wheat Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-wheat-wallcovering?variant=44126781177907&country=US&currency=USD",
+      "path_matches": true,
+      "vendor_badge_present": false
+    },
+    {
+      "key": "shopify_US_7800257740851_44126785568819",
+      "verdict": "PASS",
+      "current_shopify_handle": "secret-garden-estate-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Secret Garden - Estate Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/secret-garden-estate-wallcovering?variant=44126785568819&country=US&currency=USD",
+      "path_matches": true,
+      "vendor_badge_present": false
+    },
+    {
+      "key": "44599727620147",
+      "verdict": "FAIL",
+      "current_shopify_handle": "ascoli-aurum-mylar-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Ascoli - Aurum Mylar Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/ascoli-aurum-mylar-wallcovering-versa-designed-surfaces?variant=44599727620147",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800257183795_44126784389171",
+      "verdict": "FAIL",
+      "current_shopify_handle": "alameda-sable-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Alameda - Sable Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/alameda-sable-wallcovering-versa-designed-surfaces?variant=44599726768179&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800255447091_44126781603891",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-tahitian-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Tahitian Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-tahitian-wallcovering-versa-designed-surfaces?variant=44599724933171&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44599721099315",
+      "verdict": "FAIL",
+      "current_shopify_handle": "ossian-guild-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Ossian - Guild Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/ossian-guild-wallcovering-versa-designed-surfaces?variant=44599721099315",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44599720640563",
+      "verdict": "FAIL",
+      "current_shopify_handle": "oracle-bianco-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Oracle - Bianco Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/oracle-bianco-wallcovering-versa-designed-surfaces?variant=44599720640563",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800251678771_44126775377971",
+      "verdict": "FAIL",
+      "current_shopify_handle": "oracle-travertine-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Oracle - Travertine Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/oracle-travertine-wallcovering-versa-designed-surfaces?variant=44599720476723&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800256823347_44126783864883",
+      "verdict": "FAIL",
+      "current_shopify_handle": "alameda-stone-wash-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Alameda - Stone Wash Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/alameda-stone-wash-wallcovering-versa-designed-surfaces?variant=44599726637107&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800256069683_44126782423091",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-golden-grass-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Golden Grass Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-golden-grass-wallcovering-versa-designed-surfaces?variant=44599726342195&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44599725752371",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-shallow-lagoon-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Shallow Lagoon Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-shallow-lagoon-wallcovering-versa-designed-surfaces?variant=44599725752371",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800254693427_44126780260403",
+      "verdict": "FAIL",
+      "current_shopify_handle": "elowen-teak-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Elowen - Teak Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/elowen-teak-wallcovering-versa-designed-surfaces?variant=44599723687987&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800261804083_44126792548403",
+      "verdict": "FAIL",
+      "current_shopify_handle": "weft-aurora-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Weft - Aurora Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/weft-aurora-wallcovering-versa-designed-surfaces?variant=44599730110515&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800255938611_44126782160947",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-flax-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Flax Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-flax-wallcovering-versa-designed-surfaces?variant=44599726309427&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800251711539_44126775443507",
+      "verdict": "FAIL",
+      "current_shopify_handle": "oracle-macael-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Oracle - Macael Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/oracle-macael-wallcovering-versa-designed-surfaces?variant=44599720607795&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44126791663667",
+      "verdict": "FAIL",
+      "current_shopify_handle": "zenith-solstice-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Zenith - Solstice Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/zenith-solstice-wallcovering-versa-designed-surfaces?variant=44126791663667",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800258297907_44126786519091",
+      "verdict": "FAIL",
+      "current_shopify_handle": "ascoli-opal-mylar-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Ascoli - Opal Mylar Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/ascoli-opal-mylar-wallcovering-versa-designed-surfaces?variant=44599727521843&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800261673011_44126792351795",
+      "verdict": "FAIL",
+      "current_shopify_handle": "weft-prairie-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Weft - Prairie Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/weft-prairie-wallcovering-versa-designed-surfaces?variant=44599729979443&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800259149875_44126787960883",
+      "verdict": "FAIL",
+      "current_shopify_handle": "orsay-paperback-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Orsay - Paperback Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/orsay-paperback-wallcovering-versa-designed-surfaces?variant=44599727947827&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800256626739_44126783471667",
+      "verdict": "FAIL",
+      "current_shopify_handle": "alameda-almond-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Alameda - Almond Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/alameda-almond-wallcovering-versa-designed-surfaces?variant=44599726506035&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800257347635_44126784651315",
+      "verdict": "FAIL",
+      "current_shopify_handle": "secret-garden-refresh-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Secret Garden - Refresh Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/secret-garden-refresh-wallcovering-versa-designed-surfaces?variant=44599726833715&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    }
+  ],
+  "identity_policy_copy": [
+    {
+      "key": "shopify_US_4484581916723_31794040045619",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584374323_31794046763059",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584210483_31794046402611",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481156415539_31776799457331",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484581326899_31794039128115",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484547051571_31793937350707",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484485546035_31793664852019",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584800307_31794048237619",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484484464691_31793658396723",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155629107_31776798638131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484481908787_31793646796851",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484483612723_31793656758323",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481158217779_31776802996275",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155432499_31776798441523",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484537745459_31793915166771",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584964147_31794048925747",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484544987187_31793932271667",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155694643_31776798769203",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484541186099_31793925161011",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584243251_31794046435379",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484599578675_31794133237811",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484541055027_31793925029939",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484557045811_31793967235123",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484544954419_31793932206131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481154842675_31776797851699",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484579590195_31794033688627",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484541251635_31793925226547",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484602167347_31794144903219",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481158348851_31776803127347",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584308787_31794046697523",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155563571_31776798572595",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584472627_31794046861363",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583915571_31794045911091",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484585062451_31794049286195",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484584144947_31794046337075",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484542398515_31793928110131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155498035_31776798507059",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484601708595_31794143002675",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484577493043_31794026971187",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484546428979_31793936564275",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484545249331_31793932501043",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484534173747_31793901699123",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484489084979_31793679302707",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484483940403_31793657610291",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484536401971_31793911988275",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484582572083_31794042896435",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4481157267507_31776801947699",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484481876019_31793646764083",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484534272051_31793901731891",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484584898611_31794048860211",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484556881971_31793967071283",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484540530739_31793922867251",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583292979_31794044010547",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484587356211_31794056003635",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4481154056243_31776792150067",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484536565811_31793912152115",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583817267_31794045812787",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583456819_31794044370995",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484537286707_31793912971315",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484597973043_31794128486451",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484578410547_31794030280755",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584669235_31794047254579",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484536139827_31793911726131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484585160755_31794049384499",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4481154580531_31776797130803",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155661875_31776798736435",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481154908211_31776797917235",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484577624115_31794027135027",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484579655731_31794033754163",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484481941555_31793646829619",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484538957875_31793917919283",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484484202547_31793658134579",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484546527283_31793936597043",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484535025715_31793904287795",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484536008755_31793911595059",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484482105395_31793647255603",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484534927411_31793904058419",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484487512115_31793673470003",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484537548851_31793913430067",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484579328051_31794033393715",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484546986035_31793937317939",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484534829107_31793903960115",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "identity_issue_present": false
+    }
+  ]
+}
\ No newline at end of file
diff --git a/verification/tk10993-20260905-residual-manifest.json b/verification/tk10993-20260905-residual-manifest.json
new file mode 100644
index 0000000..e903923
--- /dev/null
+++ b/verification/tk10993-20260905-residual-manifest.json
@@ -0,0 +1,256 @@
+{
+  "ticket": "TK-10993",
+  "merchant": "146735262",
+  "created_at": "2026-09-05T06:03:32.854573+00:00",
+  "status": "DRAFT_ONLY_APPROVAL_REQUIRED",
+  "external_writes_performed": 0,
+  "link_replacements": [
+    {
+      "offer_key": "44599727620147",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/ascoli-aurum-mylar-wallcovering-versa-designed-surfaces?variant=44599727620147",
+      "after": "https://www.designerwallcoverings.com/products/ascoli-aurum-mylar-wallcovering?variant=44599727620147",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800257183795_44126784389171",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/alameda-sable-wallcovering-versa-designed-surfaces?variant=44599726768179&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/alameda-sable-wallcovering?variant=44599726768179&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800255447091_44126781603891",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/isla-grass-tahitian-wallcovering-versa-designed-surfaces?variant=44599724933171&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/isla-grass-tahitian-wallcovering?variant=44599724933171&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "44599721099315",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/ossian-guild-wallcovering-versa-designed-surfaces?variant=44599721099315",
+      "after": "https://www.designerwallcoverings.com/products/ossian-guild-wallcovering?variant=44599721099315",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "44599720640563",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/oracle-bianco-wallcovering-versa-designed-surfaces?variant=44599720640563",
+      "after": "https://www.designerwallcoverings.com/products/oracle-bianco-wallcovering?variant=44599720640563",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800251678771_44126775377971",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/oracle-travertine-wallcovering-versa-designed-surfaces?variant=44599720476723&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/oracle-travertine-wallcovering?variant=44599720476723&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800256823347_44126783864883",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/alameda-stone-wash-wallcovering-versa-designed-surfaces?variant=44599726637107&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/alameda-stone-wash-wallcovering?variant=44599726637107&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800256069683_44126782423091",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/isla-grass-golden-grass-wallcovering-versa-designed-surfaces?variant=44599726342195&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/isla-grass-golden-grass-wallcovering?variant=44599726342195&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "44599725752371",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/isla-grass-shallow-lagoon-wallcovering-versa-designed-surfaces?variant=44599725752371",
+      "after": "https://www.designerwallcoverings.com/products/isla-grass-shallow-lagoon-wallcovering?variant=44599725752371",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800254693427_44126780260403",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/elowen-teak-wallcovering-versa-designed-surfaces?variant=44599723687987&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/elowen-teak-wallcovering?variant=44599723687987&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800261804083_44126792548403",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/weft-aurora-wallcovering-versa-designed-surfaces?variant=44599730110515&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/weft-aurora-wallcovering?variant=44599730110515&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800255938611_44126782160947",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/isla-grass-flax-wallcovering-versa-designed-surfaces?variant=44599726309427&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/isla-grass-flax-wallcovering?variant=44599726309427&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800251711539_44126775443507",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/oracle-macael-wallcovering-versa-designed-surfaces?variant=44599720607795&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/oracle-macael-wallcovering?variant=44599720607795&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "44126791663667",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/zenith-solstice-wallcovering-versa-designed-surfaces?variant=44126791663667",
+      "after": "https://www.designerwallcoverings.com/products/zenith-solstice-wallcovering?variant=44126791663667",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800258297907_44126786519091",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/ascoli-opal-mylar-wallcovering-versa-designed-surfaces?variant=44599727521843&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/ascoli-opal-mylar-wallcovering?variant=44599727521843&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800261673011_44126792351795",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/weft-prairie-wallcovering-versa-designed-surfaces?variant=44599729979443&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/weft-prairie-wallcovering?variant=44599729979443&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800259149875_44126787960883",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/orsay-paperback-wallcovering-versa-designed-surfaces?variant=44599727947827&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/orsay-paperback-wallcovering?variant=44599727947827&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800256626739_44126783471667",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/alameda-almond-wallcovering-versa-designed-surfaces?variant=44599726506035&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/alameda-almond-wallcovering?variant=44599726506035&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    },
+    {
+      "offer_key": "shopify_US_7800257347635_44126784651315",
+      "field": "link",
+      "before": "https://www.designerwallcoverings.com/products/secret-garden-refresh-wallcovering-versa-designed-surfaces?variant=44599726833715&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "after": "https://www.designerwallcoverings.com/products/secret-garden-refresh-wallcovering?variant=44599726833715&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "preserves_query_and_variant": true
+    }
+  ],
+  "description_replacements": [
+    {
+      "offer_key": "shopify_US_4481156415539_31776799457331",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a textured wallcovering that mimics the look of natural sisal. The neutral color palette and tactile surface create a calming and sophisticated mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484581326899_31794039128115",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a textured wallcovering with a subtle, woven appearance. The neutral color palette and tactile surface create a calming and sophisticated mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4481155432499_31776798441523",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a natural basket weave wallcovering. It evokes a rustic and textured mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484599578675_31794133237811",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This wallcovering features a mosaic pattern with a pearlescent finish. The overall effect is modern and sophisticated, adding subtle texture and visual interest to a space.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484541055027_31793925029939",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a dark blue wallcovering with a subtle floral pattern. It evokes a calm and sophisticated mood, suitable for a traditional or coastal-themed space.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484585062451_31794049286195",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This wallcovering features a geometric pattern with metallic accents on a dark blue background. The design evokes a sense of luxury and sophistication, suitable for creating a glamorous and elegant atmosphere.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484582572083_31794042896435",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a textured wallcovering with an abstract pattern. It evokes a modern and sophisticated mood with its subtle color variations.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484534272051_31793901731891",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a sisal wallcovering with a woven texture. It evokes a natural and rustic mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484587356211_31794056003635",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a close-up of a jute wallcovering in a deep red hue. The texture and color create a warm and inviting, rustic mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484584669235_31794047254579",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a textured wallcovering with subtle color variations. It evokes a sophisticated and calming mood with its neutral palette and organic feel.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484585160755_31794049384499",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This wallcovering features a realistic brick pattern with varied color tones. It evokes a rustic and textured feel, adding warmth and character to a space.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484538957875_31793917919283",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is an embroidered grasscloth wallcovering in a winter wheat colorway. The texture and natural tones evoke a warm and inviting, organic mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484546527283_31793936597043",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This wallcovering features a bold floral pattern with red flowers on a black background. It evokes a sense of classic elegance and dramatic flair.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    },
+    {
+      "offer_key": "shopify_US_4484482105395_31793647255603",
+      "field": "description",
+      "before": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "after": "This is a textured wallcovering with a metallic bronze finish. It evokes a natural and sophisticated mood.",
+      "source": "current Shopify plain-text description",
+      "source_clean": true
+    }
+  ]
+}
diff --git a/verification/tk10993-20260905-residual-plan.json b/verification/tk10993-20260905-residual-plan.json
new file mode 100644
index 0000000..3f583bf
--- /dev/null
+++ b/verification/tk10993-20260905-residual-plan.json
@@ -0,0 +1,1411 @@
+{
+  "ticket": "TK-10993",
+  "merchant": "146735262",
+  "checked_at": "2026-09-05T06:01:45.755Z",
+  "read_only": true,
+  "scope": "Deterministic 40-offer destamp sample, 10 protected samples, full retained F3 and identity-policy cohorts; not a full-account audit.",
+  "ledger": {
+    "target_count": 4052,
+    "applied_count": 4052,
+    "missing": [],
+    "extra": [],
+    "protected_samples_touched": [],
+    "applied_without_prior_intent": 0,
+    "failed_records": 0,
+    "sha256": "40be4b653c11988c961e2bee43ddc5281c4e2152b73433c61e4ed1c46488f3da"
+  },
+  "summary": {
+    "destamp": {
+      "PASS": 40
+    },
+    "protected_sample": {
+      "PASS": 10
+    },
+    "f3": {
+      "PASS": 3,
+      "FAIL": 19
+    },
+    "identity_policy_copy": {
+      "PASS": 68,
+      "FAIL": 14
+    }
+  },
+  "destamp_sample": [
+    {
+      "key": "shopify_US_7422939234355_42659757522995",
+      "verdict": "PASS",
+      "title": "Post Paper - Fossil Multi By Lee Jofa Modern | Kelly Wearstler Wallcoverings Iv | Modern Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 1666.35,
+      "fixTitle": true,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7421318463539_42653784375347",
+      "verdict": "PASS",
+      "title": "Kravet Design - W4162-1101 White Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 179.93,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_1498085130352_13934671495280",
+      "verdict": "PASS",
+      "title": "Diamando Star Trellis Lattice",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 189.62,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810544533555_44170471768115",
+      "verdict": "PASS",
+      "title": "Aloha - Lagoon | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 57.65,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7810441248819_44170224435251",
+      "verdict": "PASS",
+      "title": "Iguana - Cay | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 38.44,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_4484538138675_31793915592755",
+      "verdict": "PASS",
+      "title": "Shantung Garden - Verdance | Scalamandre",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 257.01,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421465690163_42654194991155",
+      "verdict": "PASS",
+      "title": "Quartz - Gold & Silver Gold | Cole & Son",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 234.68,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810545516595_44170473177139",
+      "verdict": "PASS",
+      "title": "Lava | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 60.77,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7810541551667_44170461052979",
+      "verdict": "PASS",
+      "title": "Caiman - Angora | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 46.83,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7800238669875_44126751359027",
+      "verdict": "PASS",
+      "title": "Parallel - Sandstone Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 47.78,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_1499779825776_13956347494512",
+      "verdict": "PASS",
+      "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 15.06,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7430795100211_42686009737267",
+      "verdict": "PASS",
+      "title": "Ceramic Wonders - Indigo Wallcovering | Mind the Gap",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 289,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7422034903091_42656389824563",
+      "verdict": "PASS",
+      "title": "Simpatico Paper - Cinder Light Blue By Lee Jofa Modern | Kelly Wearstler Vi |Abstract Modern Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 1256.85,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421320658995_42653789257779",
+      "verdict": "PASS",
+      "title": "Kravet Design - W4175-330 Sage Commercial Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 126,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_1499523842160_13953762689136",
+      "verdict": "PASS",
+      "title": "Shubert Faux Rice Paper Durable | Hollywood Wallcoverings",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 25.77,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7375682502707_42511771828275",
+      "verdict": "PASS",
+      "title": "Savile Suiting - Solids - Grey Lapel",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 318.55,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7796283998259_44107824463923",
+      "verdict": "PASS",
+      "title": "Shorescape - Opera Texture Upholstery | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 60.77,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7422630625331_42658294169651",
+      "verdict": "PASS",
+      "title": "Kravet Design - Light Blue Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 157.43,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6948079665203_41392740040755",
+      "verdict": "PASS",
+      "title": "Mali Dot - Beige Wallcovering | Anna French",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 95.29,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7292180103219_42319791358003",
+      "verdict": "PASS",
+      "title": "Scroll Trail Transitional Geometric - Mocha and Ebony | Architectural Wallcoverings",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 90,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_1499157561456_13947896889456",
+      "verdict": "PASS",
+      "title": "Sidmouth Acoustical | Hollywood Wallcoverings",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 49.88,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421307912243_42653757374515",
+      "verdict": "PASS",
+      "title": "Kravet Design - W4113-1611 Neutral Wallcovering | Kravet",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 214.43,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7420022718515_42651114635315",
+      "verdict": "PASS",
+      "title": "Patchwork - 10241 Multi | Kravet Couture | Missoni Home Wallcoverings 03 |Modern Geometric Wallcovering Print",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 392.18,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6962185535539_41438308728883",
+      "verdict": "PASS",
+      "title": "Lady Alford - Apple/Magenta Wallcovering | Harlequin",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 269.68,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810561867827_44170592518195",
+      "verdict": "PASS",
+      "title": "Azure - Teal | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 39.69,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_4481158185011_31776802963507",
+      "verdict": "PASS",
+      "title": "Ming Circus - Multi On Tea | Scalamandre",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 912.22,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7421503275059_42654260953139",
+      "verdict": "PASS",
+      "title": "Foglie E Scimmie - Orange | Cole & Son",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 563.85,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7810436497459_44170214441011",
+      "verdict": "PASS",
+      "title": "Marlin - Pimento | Commercial Fabric | Los Angeles Fabrics",
+      "weight": {
+        "unit": "lb"
+      },
+      "price": 62.52,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6679712268339_40347455389747",
+      "verdict": "PASS",
+      "title": "Cave | Rebel Walls",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 117.47,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6679579918387_40344971116595",
+      "verdict": "PASS",
+      "title": "Sum of Numbers | Rebel Walls",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 83.38,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_1495589355632_13906055135344",
+      "verdict": "PASS",
+      "title": "Pauline's Retro Geometric",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 146.18,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7855840788531_44418027192371",
+      "verdict": "PASS",
+      "title": "Drape Brush - Green | Rebel Walls",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 191,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7421978640435_42656249741363",
+      "verdict": "PASS",
+      "title": "Tansy - Blush Pink By G P & J Baker | House Small Prints Wallcovering |Botanical & Floral Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 258.3,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7800004149299_44126715871283",
+      "verdict": "PASS",
+      "title": "Interlude - Frost Wallcovering",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 44.52,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_6679734583347_40347685388339",
+      "verdict": "PASS",
+      "title": "Sugar Stripes | Rebel Walls",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 138.28,
+      "fixTitle": true,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7513507823667_42966737715251",
+      "verdict": "PASS",
+      "title": "Sackville Stripe 01 - Green Wallcovering | Nina Campbell",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 296.83,
+      "fixTitle": true,
+      "fixWeight": false
+    },
+    {
+      "key": "shopify_US_7789637533747_44081480794163",
+      "verdict": "PASS",
+      "title": "Cocoon Plaines Sauvages | Elitis",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 197.29,
+      "fixTitle": true,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7552678166579_43243478515763",
+      "verdict": "PASS",
+      "title": "Santorini Navy - Navy Wallcovering | Thibaut",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 136.83,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7430005325875_42683859140659",
+      "verdict": "PASS",
+      "title": "Brocade - Anthracite Wallcovering | Mind the Gap",
+      "weight": {
+        "value": 4,
+        "unit": "lb"
+      },
+      "price": 289,
+      "fixTitle": false,
+      "fixWeight": true
+    },
+    {
+      "key": "shopify_US_7855828336691_44418003238963",
+      "verdict": "PASS",
+      "title": "Circuit Board - Blue | Rebel Walls",
+      "weight": {
+        "value": 1,
+        "unit": "lb"
+      },
+      "price": 191,
+      "fixTitle": false,
+      "fixWeight": true
+    }
+  ],
+  "protected_sample": [
+    {
+      "key": "shopify_US_4469047689267_31727663153203",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7384912134195_42537690071091",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_6604493193267_39534234894387",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7791141978163_44086066839603",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7585010843699_43328598147123",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_1500534472816_13965606781040",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_4492466290739_31819630772275",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_6936773427251_41354094379059",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_1498760183920_13940393443440",
+      "verdict": "PASS",
+      "price": 4.25
+    },
+    {
+      "key": "shopify_US_7515287879731_42974583783475",
+      "verdict": "PASS",
+      "price": 4.25
+    }
+  ],
+  "f3": [
+    {
+      "key": "shopify_US_7800261836851_44126792613939",
+      "verdict": "PASS",
+      "current_shopify_handle": "weft-current-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Weft - Current Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/weft-current-wallcovering?variant=44126792613939&country=US&currency=USD",
+      "proposed_link": "https://www.designerwallcoverings.com/products/weft-current-wallcovering?variant=44126792613939&country=US&currency=USD",
+      "path_matches": true,
+      "vendor_badge_present": false
+    },
+    {
+      "key": "shopify_US_7800255152179_44126781177907",
+      "verdict": "PASS",
+      "current_shopify_handle": "isla-grass-wheat-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Wheat Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-wheat-wallcovering?variant=44126781177907&country=US&currency=USD",
+      "proposed_link": "https://www.designerwallcoverings.com/products/isla-grass-wheat-wallcovering?variant=44126781177907&country=US&currency=USD",
+      "path_matches": true,
+      "vendor_badge_present": false
+    },
+    {
+      "key": "shopify_US_7800257740851_44126785568819",
+      "verdict": "PASS",
+      "current_shopify_handle": "secret-garden-estate-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Secret Garden - Estate Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/secret-garden-estate-wallcovering?variant=44126785568819&country=US&currency=USD",
+      "proposed_link": "https://www.designerwallcoverings.com/products/secret-garden-estate-wallcovering?variant=44126785568819&country=US&currency=USD",
+      "path_matches": true,
+      "vendor_badge_present": false
+    },
+    {
+      "key": "44599727620147",
+      "verdict": "FAIL",
+      "current_shopify_handle": "ascoli-aurum-mylar-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Ascoli - Aurum Mylar Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/ascoli-aurum-mylar-wallcovering-versa-designed-surfaces?variant=44599727620147",
+      "proposed_link": "https://www.designerwallcoverings.com/products/ascoli-aurum-mylar-wallcovering?variant=44599727620147",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800257183795_44126784389171",
+      "verdict": "FAIL",
+      "current_shopify_handle": "alameda-sable-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Alameda - Sable Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/alameda-sable-wallcovering-versa-designed-surfaces?variant=44599726768179&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/alameda-sable-wallcovering?variant=44599726768179&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800255447091_44126781603891",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-tahitian-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Tahitian Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-tahitian-wallcovering-versa-designed-surfaces?variant=44599724933171&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/isla-grass-tahitian-wallcovering?variant=44599724933171&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44599721099315",
+      "verdict": "FAIL",
+      "current_shopify_handle": "ossian-guild-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Ossian - Guild Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/ossian-guild-wallcovering-versa-designed-surfaces?variant=44599721099315",
+      "proposed_link": "https://www.designerwallcoverings.com/products/ossian-guild-wallcovering?variant=44599721099315",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44599720640563",
+      "verdict": "FAIL",
+      "current_shopify_handle": "oracle-bianco-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Oracle - Bianco Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/oracle-bianco-wallcovering-versa-designed-surfaces?variant=44599720640563",
+      "proposed_link": "https://www.designerwallcoverings.com/products/oracle-bianco-wallcovering?variant=44599720640563",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800251678771_44126775377971",
+      "verdict": "FAIL",
+      "current_shopify_handle": "oracle-travertine-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Oracle - Travertine Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/oracle-travertine-wallcovering-versa-designed-surfaces?variant=44599720476723&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/oracle-travertine-wallcovering?variant=44599720476723&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800256823347_44126783864883",
+      "verdict": "FAIL",
+      "current_shopify_handle": "alameda-stone-wash-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Alameda - Stone Wash Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/alameda-stone-wash-wallcovering-versa-designed-surfaces?variant=44599726637107&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/alameda-stone-wash-wallcovering?variant=44599726637107&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800256069683_44126782423091",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-golden-grass-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Golden Grass Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-golden-grass-wallcovering-versa-designed-surfaces?variant=44599726342195&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/isla-grass-golden-grass-wallcovering?variant=44599726342195&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44599725752371",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-shallow-lagoon-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Shallow Lagoon Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-shallow-lagoon-wallcovering-versa-designed-surfaces?variant=44599725752371",
+      "proposed_link": "https://www.designerwallcoverings.com/products/isla-grass-shallow-lagoon-wallcovering?variant=44599725752371",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800254693427_44126780260403",
+      "verdict": "FAIL",
+      "current_shopify_handle": "elowen-teak-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Elowen - Teak Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/elowen-teak-wallcovering-versa-designed-surfaces?variant=44599723687987&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/elowen-teak-wallcovering?variant=44599723687987&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800261804083_44126792548403",
+      "verdict": "FAIL",
+      "current_shopify_handle": "weft-aurora-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Weft - Aurora Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/weft-aurora-wallcovering-versa-designed-surfaces?variant=44599730110515&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/weft-aurora-wallcovering?variant=44599730110515&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800255938611_44126782160947",
+      "verdict": "FAIL",
+      "current_shopify_handle": "isla-grass-flax-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Isla Grass - Flax Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/isla-grass-flax-wallcovering-versa-designed-surfaces?variant=44599726309427&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/isla-grass-flax-wallcovering?variant=44599726309427&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800251711539_44126775443507",
+      "verdict": "FAIL",
+      "current_shopify_handle": "oracle-macael-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Oracle - Macael Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/oracle-macael-wallcovering-versa-designed-surfaces?variant=44599720607795&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/oracle-macael-wallcovering?variant=44599720607795&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "44126791663667",
+      "verdict": "FAIL",
+      "current_shopify_handle": "zenith-solstice-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Zenith - Solstice Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/zenith-solstice-wallcovering-versa-designed-surfaces?variant=44126791663667",
+      "proposed_link": "https://www.designerwallcoverings.com/products/zenith-solstice-wallcovering?variant=44126791663667",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800258297907_44126786519091",
+      "verdict": "FAIL",
+      "current_shopify_handle": "ascoli-opal-mylar-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Ascoli - Opal Mylar Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/ascoli-opal-mylar-wallcovering-versa-designed-surfaces?variant=44599727521843&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/ascoli-opal-mylar-wallcovering?variant=44599727521843&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800261673011_44126792351795",
+      "verdict": "FAIL",
+      "current_shopify_handle": "weft-prairie-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Weft - Prairie Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/weft-prairie-wallcovering-versa-designed-surfaces?variant=44599729979443&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/weft-prairie-wallcovering?variant=44599729979443&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800259149875_44126787960883",
+      "verdict": "FAIL",
+      "current_shopify_handle": "orsay-paperback-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Orsay - Paperback Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/orsay-paperback-wallcovering-versa-designed-surfaces?variant=44599727947827&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/orsay-paperback-wallcovering?variant=44599727947827&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800256626739_44126783471667",
+      "verdict": "FAIL",
+      "current_shopify_handle": "alameda-almond-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Alameda - Almond Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/alameda-almond-wallcovering-versa-designed-surfaces?variant=44599726506035&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/alameda-almond-wallcovering?variant=44599726506035&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    },
+    {
+      "key": "shopify_US_7800257347635_44126784651315",
+      "verdict": "FAIL",
+      "current_shopify_handle": "secret-garden-refresh-wallcovering",
+      "shopify_status": "ACTIVE",
+      "title": "Secret Garden - Refresh Wallcovering",
+      "link": "https://www.designerwallcoverings.com/products/secret-garden-refresh-wallcovering-versa-designed-surfaces?variant=44599726833715&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "proposed_link": "https://www.designerwallcoverings.com/products/secret-garden-refresh-wallcovering?variant=44599726833715&country=US&currency=USD&utm_medium=product_sync&utm_source=google&utm_content=sag_organic&utm_campaign=sag_organic",
+      "path_matches": false,
+      "vendor_badge_present": true
+    }
+  ],
+  "identity_policy_copy": [
+    {
+      "key": "shopify_US_4484581916723_31794040045619",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584374323_31794046763059",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584210483_31794046402611",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481156415539_31776799457331",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a textured wallcovering that mimics the look of natural sisal. The neutral color palette and tactile surface create a calming and sophisticated mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484581326899_31794039128115",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a textured wallcovering with a subtle, woven appearance. The neutral color palette and tactile surface create a calming and sophisticated mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484547051571_31793937350707",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484485546035_31793664852019",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584800307_31794048237619",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484484464691_31793658396723",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155629107_31776798638131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484481908787_31793646796851",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484483612723_31793656758323",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481158217779_31776802996275",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155432499_31776798441523",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a natural basket weave wallcovering. It evokes a rustic and textured mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484537745459_31793915166771",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584964147_31794048925747",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484544987187_31793932271667",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155694643_31776798769203",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484541186099_31793925161011",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584243251_31794046435379",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484599578675_31794133237811",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This wallcovering features a mosaic pattern with a pearlescent finish. The overall effect is modern and sophisticated, adding subtle texture and visual interest to a space.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484541055027_31793925029939",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a dark blue wallcovering with a subtle floral pattern. It evokes a calm and sophisticated mood, suitable for a traditional or coastal-themed space.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484557045811_31793967235123",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484544954419_31793932206131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481154842675_31776797851699",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484579590195_31794033688627",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484541251635_31793925226547",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484602167347_31794144903219",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481158348851_31776803127347",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584308787_31794046697523",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155563571_31776798572595",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584472627_31794046861363",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583915571_31794045911091",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484585062451_31794049286195",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This wallcovering features a geometric pattern with metallic accents on a dark blue background. The design evokes a sense of luxury and sophistication, suitable for creating a glamorous and elegant atmosphere.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484584144947_31794046337075",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484542398515_31793928110131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155498035_31776798507059",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484601708595_31794143002675",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484577493043_31794026971187",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484546428979_31793936564275",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484545249331_31793932501043",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484534173747_31793901699123",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484489084979_31793679302707",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484483940403_31793657610291",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484536401971_31793911988275",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484582572083_31794042896435",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a textured wallcovering with an abstract pattern. It evokes a modern and sophisticated mood with its subtle color variations.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4481157267507_31776801947699",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484481876019_31793646764083",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484534272051_31793901731891",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a sisal wallcovering with a woven texture. It evokes a natural and rustic mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484584898611_31794048860211",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484556881971_31793967071283",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484540530739_31793922867251",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583292979_31794044010547",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484587356211_31794056003635",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a close-up of a jute wallcovering in a deep red hue. The texture and color create a warm and inviting, rustic mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4481154056243_31776792150067",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484536565811_31793912152115",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583817267_31794045812787",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484583456819_31794044370995",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484537286707_31793912971315",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484597973043_31794128486451",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484578410547_31794030280755",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484584669235_31794047254579",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a textured wallcovering with subtle color variations. It evokes a sophisticated and calming mood with its neutral palette and organic feel.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484536139827_31793911726131",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484585160755_31794049384499",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This wallcovering features a realistic brick pattern with varied color tones. It evokes a rustic and textured feel, adding warmth and character to a space.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4481154580531_31776797130803",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481155661875_31776798736435",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4481154908211_31776797917235",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484577624115_31794027135027",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484579655731_31794033754163",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484481941555_31793646829619",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484538957875_31793917919283",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is an embroidered grasscloth wallcovering in a winter wheat colorway. The texture and natural tones evoke a warm and inviting, organic mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484484202547_31793658134579",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484546527283_31793936597043",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This wallcovering features a bold floral pattern with red flowers on a black background. It evokes a sense of classic elegance and dramatic flair.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484535025715_31793904287795",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484536008755_31793911595059",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484482105395_31793647255603",
+      "verdict": "FAIL",
+      "stale_political_copy": true,
+      "source_clean": true,
+      "before_description": "House of Scalamandre epitomizes elegance for almost 100 years. As seen in the homes of William Randolph Hearst, Thomas Jefferson for Monticello , the Kennedy's and Obama's White House, First Lady Jacqueline Kennedy in the famous Red Room, Cesar Peli, as well as Restoration Projects - The White House, the U.S. Capitol, Mt. Vernon, the Morgan Library,  Metropolitan Opera House, the Wrightsman Galleries at the Metropolitan Museum of Art, the Isabella Stewart Gardner Museum, and the Mansions of Newport. Samples and Full Time Sales Staff Available to assist with all fabric world wide. LIVE CHAT ONLINE. Available at our Los Angeles Showroom. Samples, Specifications, and Purchasing available for all Scalamandre Products",
+      "proposed_description": "This is a textured wallcovering with a metallic bronze finish. It evokes a natural and sophisticated mood.",
+      "identity_issue_present": true
+    },
+    {
+      "key": "shopify_US_4484534927411_31793904058419",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484487512115_31793673470003",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484537548851_31793913430067",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484579328051_31794033393715",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484546986035_31793937317939",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    },
+    {
+      "key": "shopify_US_4484534829107_31793903960115",
+      "verdict": "PASS",
+      "stale_political_copy": false,
+      "source_clean": true,
+      "identity_issue_present": false
+    }
+  ]
+}
\ No newline at end of file

← f62f718 Fix Canada shipping verification and fail closed on unreadab  ·  back to Gmc Titlefix  ·  auto-data-snapshot: 2026-09-04T23:48:35 (1 data files) — dat 5f8a35c →