[object Object]

← back to Sanderson Onboard

TK-10873 validate deterministic Zoffany Option-A draft

5be9325e497dc104a7c6caec84884b334498fb91 · 2026-08-30 09:37:06 -0700 · Steve Abrams

Files touched

Diff

commit 5be9325e497dc104a7c6caec84884b334498fb91
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Sun Aug 30 09:37:06 2026 -0700

    TK-10873 validate deterministic Zoffany Option-A draft
---
 tk10873/README.md                       |    5 +-
 tk10873/build_zoffany_optionA_draft.mjs |    1 +
 tk10873/validate_draft.mjs              |   10 +
 tk10873/verification/e2e-proof.json     |   53 +
 tk10873/zoffany_optionA_draft.csv       |  550 +++---
 tk10873/zoffany_optionA_draft.json      | 3066 +++++++++++++++----------------
 tk10873/zoffany_optionA_summary.json    |    2 +-
 7 files changed, 1877 insertions(+), 1810 deletions(-)

diff --git a/tk10873/README.md b/tk10873/README.md
index 4f8cb56..03c2b2f 100644
--- a/tk10873/README.md
+++ b/tk10873/README.md
@@ -55,8 +55,11 @@ Current draft: **328 REPRICE · 0 SELLABLE_ADD · 3 HELD_NEEDS_PRICE**.
   - `zoffany_optionA_draft.csv` (mfr_sku, dw_sku, action, live_has_sellable,
     live_has_sample, staged_trade, proposed_sellable_price, sample_price, note)
   - `zoffany_optionA_summary.json` (counts per action + totals)
+  Draft rows are ordered by `mfr_sku`, so repeated runs against unchanged source
+  data produce stable JSON/CSV artifacts instead of order-only diffs.
 - `validate_draft.mjs` — the GATE: asserts every pricing invariant on the generated
-  draft; exits nonzero on any violation.
+  draft, plus unique/sorted manufacturer SKUs and existing Sample coverage; exits
+  nonzero on any violation.
 - `test_optionA.mjs` — zero-dependency unit tests for the pure functions.
 
 ## Regenerate + validate + test
diff --git a/tk10873/build_zoffany_optionA_draft.mjs b/tk10873/build_zoffany_optionA_draft.mjs
index 45675a7..816c303 100644
--- a/tk10873/build_zoffany_optionA_draft.mjs
+++ b/tk10873/build_zoffany_optionA_draft.mjs
@@ -37,6 +37,7 @@ COPY (
   FROM shopify_products l
   LEFT JOIN zoffany_catalog z ON z.mfr_sku = l.mfr_sku
   WHERE l.vendor ILIKE 'zoffany%' AND l.status = 'ACTIVE'
+  ORDER BY l.mfr_sku
 ) TO STDOUT WITH (FORMAT csv, HEADER true);
 `;
 
diff --git a/tk10873/validate_draft.mjs b/tk10873/validate_draft.mjs
index fa96468..5334ad1 100644
--- a/tk10873/validate_draft.mjs
+++ b/tk10873/validate_draft.mjs
@@ -19,8 +19,17 @@ function main() {
 
   let joined = 0, priced = 0, missingSellable = 0;
   const counts = { REPRICE: 0, SELLABLE_ADD: 0, HELD_NEEDS_PRICE: 0 };
+  const seenMfrSkus = new Set();
+  let previousMfrSku = null;
 
   for (const p of plan) {
+    if (!p.mfr_sku) violations.push('row missing mfr_sku');
+    if (seenMfrSkus.has(p.mfr_sku)) violations.push(`${p.mfr_sku}: duplicate mfr_sku`);
+    seenMfrSkus.add(p.mfr_sku);
+    if (previousMfrSku != null && String(previousMfrSku).localeCompare(String(p.mfr_sku)) > 0)
+      violations.push(`${p.mfr_sku}: draft rows are not ordered by mfr_sku`);
+    previousMfrSku = p.mfr_sku;
+
     counts[p.action] = (counts[p.action] || 0) + 1;
     if (p.joined) joined++;
     if (Number(p.price_retail) > 0) priced++;
@@ -28,6 +37,7 @@ function main() {
 
     // 1. sample_price always 4.25
     if (p.sample_price !== SAMPLE_PRICE) violations.push(`${p.mfr_sku}: sample_price ${p.sample_price} != 4.25`);
+    if (!p.has_sample_variant) violations.push(`${p.mfr_sku}: live product is missing its Sample variant`);
 
     if (p.action === 'REPRICE' || p.action === 'SELLABLE_ADD') {
       // 2. proposed > 0 AND > sample
diff --git a/tk10873/verification/e2e-proof.json b/tk10873/verification/e2e-proof.json
new file mode 100644
index 0000000..e170b4b
--- /dev/null
+++ b/tk10873/verification/e2e-proof.json
@@ -0,0 +1,53 @@
+{
+  "intent": "Regenerate and validate the local-only Zoffany Option-A sample/price draft without Shopify or production writes.",
+  "risk_tier": "R1",
+  "environment": "local sanderson-onboard repository; read-only dw_unified mirror query over /tmp PostgreSQL socket",
+  "build_identity": "base=98e4c8e; resulting commit recorded on TK-10873",
+  "timestamp": "2026-08-30T16:36:03Z",
+  "baseline": {
+    "worktree": "clean before this Codex comparison pass",
+    "existing_draft": "328 REPRICE, 0 SELLABLE_ADD, 3 HELD_NEEDS_PRICE"
+  },
+  "checks": [
+    {
+      "name": "current mirror regeneration",
+      "command": "node tk10873/build_zoffany_optionA_draft.mjs",
+      "assertions": "331 active; 330 staging joins; 328 staged prices; 1 missing sellable; 328/0/3 action split",
+      "verdict": "PASS"
+    },
+    {
+      "name": "pure-function tests",
+      "command": "node tk10873/test_optionA.mjs",
+      "assertions": "28 passed, 0 failed",
+      "verdict": "PASS"
+    },
+    {
+      "name": "draft validation gate",
+      "command": "node tk10873/validate_draft.mjs",
+      "assertions": "sample price, staged-price authority, margin, held-row, and count invariants all passed",
+      "verdict": "PASS"
+    },
+    {
+      "name": "deterministic regeneration",
+      "command": "regenerate twice and compare SHA-256",
+      "assertions": "JSON 6188f65c06c3ca27bc0af14276c5db80849e418807632bf7a2912a60e81452ad and CSV 47492b2051162d958a42e42790a035d1f2d24166e8602ae3c166a053d4000e34 matched across both runs",
+      "verdict": "PASS"
+    },
+    {
+      "name": "no-write boundary",
+      "command": "inspect builder query and scan tk10873/*.mjs for Shopify/network/write paths",
+      "assertions": "builder executes one SELECT/COPY query and writes only local tk10873 artifacts; no Shopify API, fetch, apply flag, INSERT, UPDATE, or DELETE execution path",
+      "verdict": "PASS"
+    }
+  ],
+  "negative_checks": [
+    {
+      "name": "unverified price suppression",
+      "assertions": "all 3 uncertain rows remain HELD_NEEDS_PRICE with null proposed_sellable_price",
+      "verdict": "PASS"
+    }
+  ],
+  "side_effects": "Only local draft artifacts and repository files changed. No Shopify, dw_unified, Kamatera, publish, or remote-push writes were performed.",
+  "cleanup": "No external test state created; refreshed local artifacts intentionally retained.",
+  "overall_verdict": "PASS"
+}
diff --git a/tk10873/zoffany_optionA_draft.csv b/tk10873/zoffany_optionA_draft.csv
index 2af4a69..3fe0da5 100644
--- a/tk10873/zoffany_optionA_draft.csv
+++ b/tk10873/zoffany_optionA_draft.csv
@@ -1,332 +1,332 @@
 mfr_sku,dw_sku,action,live_has_sellable,live_has_sample,staged_trade,proposed_sellable_price,sample_price,note
-ZOW0075-02,DWZF-187133,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0134-03,DWZF-187166,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0113-01,DWZF-187278,REPRICE,true,true,,382,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-01,DWZF-187334,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0110-04,DWZF-187267,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZPAW05001,DWZF-187050,REPRICE,true,true,135,244.34,4.25,reprice to staged retail
-ZOW0117-02,DWZF-187374,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0119-02,DWZF-187378,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZPHA312622,DWZF-187013,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZWOO311338,DWZF-187054,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+313114,DWWC-502880,HELD_NEEDS_PRICE,false,true,,,4.25,no staging join — held for price harvest
 ZAMW310430,DWZF-187051,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZWOO311346,DWZF-187008,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZDAR312861,DWZF-187039,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZAMW310431,DWZF-187052,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZAQF322696,DWZF-187045,REPRICE,true,true,,132,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZCON311996,DWZF-187031,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZCOT313015,DWZF-187037,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZCOT313026,DWZF-187036,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZDAR312857,DWZF-187026,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312861,DWZF-187039,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312864,DWZF-187022,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312865,DWZF-187038,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312869,DWZF-187025,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312873,DWZF-187002,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZDAR312884,DWZF-187020,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZEND313098,DWZF-187030,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZFOW312941,DWZF-187041,HELD_NEEDS_PRICE,true,true,171,,4.25,"joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+ZFOW312943,DWZF-187042,HELD_NEEDS_PRICE,true,true,171,,4.25,"joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
 ZGUV08002,DWZF-187047,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZIND313111,DWZF-187033,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0120-01,DWZF-187379,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZPHA312595,DWZF-187007,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
-ZRHW312890,DWZF-187011,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
-ZRHW312897,DWZF-187014,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZKEM312648,DWZF-187016,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZRHW312903,DWZF-187017,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZGUV08003,DWZF-187048,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZGUV08004,DWZF-187049,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZHIW312994,DWZF-187019,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZRHW312914,DWZF-187023,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZOW0020-02,DWZF-187073,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0050-02,DWZF-187256,REPRICE,true,true,593,1073.3,4.25,reprice to staged retail
-ZOW0132-08,DWZF-187286,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZQUA310993,DWZF-187024,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
-ZHIW313004,DWZF-187027,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZRHW312889,DWZF-187029,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
-ZRHW312907,DWZF-187000,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZOW0080-01,DWZF-187151,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZRHW312899,DWZF-187004,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZRHW312910,DWZF-187006,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZFOW312941,DWZF-187041,HELD_NEEDS_PRICE,true,true,171,,4.25,"joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
-ZOW0036-05,DWZF-187310,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
-ZOW0134-01,DWZF-187164,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0129-01,DWZF-187063,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0138-04,DWZF-187185,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0129-03,DWZF-187065,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0076-02,DWZF-187136,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0033-01,DWZF-187254,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0137-05,DWZF-187181,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0138-03,DWZF-187184,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0138-01,DWZF-187182,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0138-02,DWZF-187183,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0094-06,DWZF-187216,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0094-03,DWZF-187213,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0093-07,DWZF-187210,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0094-01,DWZF-187211,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0079-02,DWZF-187147,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0083-02,DWZF-187157,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0079-03,DWZF-187148,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0083-03,DWZF-187158,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0083-04,DWZF-187159,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0133-01,DWZF-187160,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0084-02,DWZF-187318,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0133-02,DWZF-187161,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0137-01,DWZF-187177,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0137-02,DWZF-187178,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0137-03,DWZF-187179,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0137-04,DWZF-187180,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0126-01,DWZF-187055,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZAQF322696,DWZF-187045,REPRICE,true,true,,132,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0116-01,DWZF-187372,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0117-01,DWZF-187373,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0118-02,DWZF-187376,REPRICE,true,true,,418,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0119-01,DWZF-187377,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0121-01,DWZF-187380,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0121-03,DWZF-187382,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0122-02,DWZF-187384,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZCOT313015,DWZF-187037,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZHIW312997,DWZF-187034,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
-ZWOO311333,DWZF-187053,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
-ZAMW310431,DWZF-187052,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-11,DWZF-187289,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZHIW312995,DWZF-187015,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZHIW312996,DWZF-187001,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZHIW312997,DWZF-187034,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
 ZHIW313003,DWZF-187021,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZOW0083-01,DWZF-187156,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0091-03,DWZF-187196,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0077-03,DWZF-187140,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0097-01,DWZF-187290,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0098-03,DWZF-187293,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0128-01,DWZF-187060,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-07,DWZF-187285,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0086-01,DWZF-187331,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0089-01,DWZF-187348,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0047-01,DWZF-187228,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0128-03,DWZF-187062,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0129-02,DWZF-187064,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0078-04,DWZF-187145,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0079-01,DWZF-187146,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0130-01,DWZF-187066,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0131-01,DWZF-187068,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0131-03,DWZF-187070,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0080-03,DWZF-187153,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0082-01,DWZF-187155,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0131-04,DWZF-187071,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0133-03,DWZF-187162,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZHIW313004,DWZF-187027,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZIND313111,DWZF-187033,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZJAI311727,DWZF-187010,REPRICE,true,true,171,309.5,4.25,reprice to staged retail
+ZKEM312641,DWZF-187005,REPRICE,true,true,171,309.5,4.25,reprice to staged retail
+ZKEM312648,DWZF-187016,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0007-01,DWZF-187083,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0007-02,DWZF-187084,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0014-01,DWZF-187085,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0014-02,DWZF-187086,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0014-03,DWZF-187087,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0016-01,DWZF-187088,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0016-02,DWZF-187089,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0016-03,DWZF-187090,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0019-01,DWZF-187224,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0019-02,DWZF-187225,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0020-01,DWZF-187072,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0020-02,DWZF-187073,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0020-05,DWZF-187074,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0134-02,DWZF-187165,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0023-01,DWZF-187076,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
 ZOW0023-02,DWZF-187077,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
 ZOW0023-03,DWZF-187078,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0023-04,DWZF-187079,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
 ZOW0025-01,DWZF-187080,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZOW0007-01,DWZF-187083,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0014-03,DWZF-187087,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0016-02,DWZF-187089,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0026-01,DWZF-187248,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0027-01,DWZF-187249,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0027-02,DWZF-187250,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0027-03,DWZF-187251,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0031-01,DWZF-187252,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0032-01,DWZF-187253,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0033-01,DWZF-187254,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0036-01,DWZF-187307,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0036-02,DWZF-187308,REPRICE,true,true,257,465.16,4.25,reprice to staged retail
+ZOW0036-04,DWZF-187309,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZOW0036-05,DWZF-187310,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZOW0037-01,DWZF-187311,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0040-01,DWZF-187314,REPRICE,true,true,191,345.7,4.25,reprice to staged retail
+ZOW0040-04,DWZF-187316,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0041-01,DWZF-187091,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0134-04,DWZF-187167,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0135-03,DWZF-187170,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0041-02,DWZF-187092,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0042-01,DWZF-187093,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0042-02,DWZF-187094,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0042-03,DWZF-187095,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0043-01,DWZF-187096,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0114-02,DWZF-187098,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0135-04,DWZF-187171,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0135-05,DWZF-187172,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0115-01,DWZF-187099,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0124-01,DWZF-187116,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0135-06,DWZF-187173,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0125-01,DWZF-187117,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0043-02,DWZF-187226,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0044-04,DWZF-187227,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0047-01,DWZF-187228,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0048-02,DWZF-187229,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0048-03,DWZF-187230,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0048-04,DWZF-187231,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0050-01,DWZF-187255,REPRICE,true,true,593,1073.3,4.25,reprice to staged retail
+ZOW0050-02,DWZF-187256,REPRICE,true,true,593,1073.3,4.25,reprice to staged retail
 ZOW0052-01,DWZF-187118,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZOW0053-02,DWZF-187119,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0054-02,DWZF-187120,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZOW0136-01,DWZF-187174,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0054-03,DWZF-187121,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
 ZOW0055-02,DWZF-187123,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0136-03,DWZF-187176,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0092-01,DWZF-187199,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0057-01,DWZF-187124,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0057-02,DWZF-187125,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0092-03,DWZF-187201,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0057-03,DWZF-187126,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0092-04,DWZF-187202,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0127-02,DWZF-187058,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0043-02,DWZF-187226,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0093-02,DWZF-187205,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0058-01,DWZF-187127,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0058-02,DWZF-187128,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0095-01,DWZF-187217,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0044-04,DWZF-187227,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0048-03,DWZF-187230,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0048-04,DWZF-187231,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0059-01,DWZF-187353,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0059-02,DWZF-187354,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0059-03,DWZF-187355,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0059-04,DWZF-187356,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0060-01,DWZF-187357,REPRICE,true,true,162,293.21,4.25,reprice to staged retail
+ZOW0067-01,DWZF-187364,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0067-03,DWZF-187366,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0072-01,DWZF-187370,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0072-02,DWZF-187371,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0074-01,DWZF-187129,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0074-02,DWZF-187130,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0139-02,DWZF-187233,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0095-02,DWZF-187218,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0074-03,DWZF-187131,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0096-01,DWZF-187222,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0096-02,DWZF-187223,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0140-01,DWZF-187234,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0142-01,DWZF-187237,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0142-02,DWZF-187238,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0075-01,DWZF-187132,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0075-02,DWZF-187133,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0075-03,DWZF-187134,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0019-01,DWZF-187224,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0076-01,DWZF-187135,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0019-02,DWZF-187225,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0100-01,DWZF-187295,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0100-03,DWZF-187297,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0076-02,DWZF-187136,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0076-03,DWZF-187137,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0144-01,DWZF-187240,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0145-01,DWZF-187241,REPRICE,true,true,,402,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-01,DWZF-187138,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-02,DWZF-187139,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-03,DWZF-187140,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0077-04,DWZF-187141,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0078-01,DWZF-187142,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0078-02,DWZF-187143,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0078-03,DWZF-187144,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-313114,DWWC-502880,HELD_NEEDS_PRICE,false,true,,,4.25,no staging join — held for price harvest
-ZOW0146-01,DWZF-187242,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0146-02,DWZF-187243,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0146-03,DWZF-187244,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0148-01,DWZF-187246,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0148-02,DWZF-187247,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0027-01,DWZF-187249,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0027-02,DWZF-187250,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0031-01,DWZF-187252,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0032-01,DWZF-187253,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0050-01,DWZF-187255,REPRICE,true,true,593,1073.3,4.25,reprice to staged retail
+ZOW0078-04,DWZF-187145,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-01,DWZF-187146,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-02,DWZF-187147,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-03,DWZF-187148,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-04,DWZF-187149,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0079-05,DWZF-187150,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0080-01,DWZF-187151,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0080-02,DWZF-187152,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0080-03,DWZF-187153,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0080-04,DWZF-187257,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0081-01,DWZF-187154,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0082-01,DWZF-187155,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-01,DWZF-187156,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-02,DWZF-187157,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-03,DWZF-187158,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0083-04,DWZF-187159,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-01,DWZF-187317,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-02,DWZF-187318,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-03,DWZF-187319,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0084-04,DWZF-187320,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-01,DWZF-187321,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-02,DWZF-187322,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-03,DWZF-187323,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-04,DWZF-187324,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-05,DWZF-187325,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-06,DWZF-187326,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-07,DWZF-187327,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-08,DWZF-187328,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-09,DWZF-187329,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0085-10,DWZF-187330,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0086-01,DWZF-187331,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0086-02,DWZF-187332,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0086-03,DWZF-187333,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-01,DWZF-187334,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-02,DWZF-187335,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-03,DWZF-187336,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-04,DWZF-187337,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-05,DWZF-187338,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-06,DWZF-187339,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0087-07,DWZF-187340,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-01,DWZF-187341,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-02,DWZF-187342,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-03,DWZF-187343,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-04,DWZF-187344,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-05,DWZF-187345,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-06,DWZF-187346,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0088-07,DWZF-187347,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0089-01,DWZF-187348,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0089-02,DWZF-187349,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0089-03,DWZF-187350,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0090-01,DWZF-187351,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0090-02,DWZF-187352,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0091-01,DWZF-187194,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0091-02,DWZF-187195,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0091-03,DWZF-187196,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0092-01,DWZF-187199,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0092-03,DWZF-187201,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0092-04,DWZF-187202,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0092-05,DWZF-187203,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-02,DWZF-187205,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-03,DWZF-187206,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-05,DWZF-187208,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0093-07,DWZF-187210,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0094-01,DWZF-187211,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0094-03,DWZF-187213,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0094-06,DWZF-187216,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0095-01,DWZF-187217,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0095-02,DWZF-187218,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0095-03,DWZF-187219,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0095-05,DWZF-187221,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0096-01,DWZF-187222,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0096-02,DWZF-187223,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0096-03,DWZF-187387,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0097-01,DWZF-187290,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0098-01,DWZF-187291,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0098-02,DWZF-187292,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0098-03,DWZF-187293,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0100-01,DWZF-187295,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0100-02,DWZF-187296,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0100-03,DWZF-187297,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0101-01,DWZF-187298,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0101-02,DWZF-187299,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0102-01,DWZF-187300,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0102-02,DWZF-187301,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0102-03,DWZF-187302,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0103-01,DWZF-187303,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0103-02,DWZF-187304,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0103-03,DWZF-187305,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0104-01,DWZF-187258,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0104-02,DWZF-187259,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0105-01,DWZF-187260,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0106-01,DWZF-187261,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0107-01,DWZF-187262,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0108-01,DWZF-187263,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-01,DWZF-187264,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-02,DWZF-187265,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0110-03,DWZF-187266,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-04,DWZF-187267,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0110-05,DWZF-187268,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0110-06,DWZF-187269,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0111-01,DWZF-187270,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0111-02,DWZF-187271,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0111-03,DWZF-187272,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0111-04,DWZF-187273,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0112-01,DWZF-187274,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0112-02,DWZF-187275,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0112-03,DWZF-187276,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0112-04,DWZF-187277,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-01,DWZF-187279,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-02,DWZF-187280,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-04,DWZF-187282,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-05,DWZF-187283,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-09,DWZF-187287,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0098-01,DWZF-187291,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0098-02,DWZF-187292,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0101-01,DWZF-187298,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0101-02,DWZF-187299,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0102-02,DWZF-187301,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0102-03,DWZF-187302,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0103-02,DWZF-187304,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0103-03,DWZF-187305,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0036-04,DWZF-187309,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
-ZOW0037-01,DWZF-187311,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0084-01,DWZF-187317,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0084-03,DWZF-187319,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0084-04,DWZF-187320,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-04,DWZF-187324,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-05,DWZF-187325,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-08,DWZF-187328,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-09,DWZF-187329,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0086-03,DWZF-187333,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-02,DWZF-187335,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-06,DWZF-187339,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-07,DWZF-187340,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-02,DWZF-187342,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-03,DWZF-187343,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-05,DWZF-187345,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-06,DWZF-187346,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-07,DWZF-187347,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0089-02,DWZF-187349,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0090-01,DWZF-187351,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0059-01,DWZF-187353,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
-ZOW0059-03,DWZF-187355,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
-ZOW0067-01,DWZF-187364,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0072-01,DWZF-187370,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-03,DWZF-187323,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0007-02,DWZF-187084,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0123-02,DWZF-187386,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZCON311996,DWZF-187031,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZCOT313026,DWZF-187036,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0113-01,DWZF-187278,REPRICE,true,true,,382,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0114-01,DWZF-187097,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0114-02,DWZF-187098,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0115-01,DWZF-187099,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0116-01,DWZF-187372,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0117-01,DWZF-187373,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0117-02,DWZF-187374,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0118-01,DWZF-187375,REPRICE,true,true,,418,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0118-02,DWZF-187376,REPRICE,true,true,,418,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0119-01,DWZF-187377,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0119-02,DWZF-187378,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0120-01,DWZF-187379,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0121-01,DWZF-187380,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0121-02,DWZF-187381,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0121-03,DWZF-187382,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0122-01,DWZF-187383,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZDAR312884,DWZF-187020,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZDAR312865,DWZF-187038,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZDAR312864,DWZF-187022,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZDAR312873,DWZF-187002,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZDAR312869,DWZF-187025,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZEND313098,DWZF-187030,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0096-03,DWZF-187387,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZGUV08003,DWZF-187048,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZJAI311727,DWZF-187010,REPRICE,true,true,171,309.5,4.25,reprice to staged retail
-ZWOO311336,DWZF-187009,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZOW0122-02,DWZF-187384,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0123-02,DWZF-187386,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0123-03,DWZF-187115,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0124-01,DWZF-187116,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0125-01,DWZF-187117,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0126-01,DWZF-187055,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0126-02,DWZF-187056,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0127-01,DWZF-187057,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0127-02,DWZF-187058,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0127-03,DWZF-187059,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0128-01,DWZF-187060,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0128-02,DWZF-187061,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0128-03,DWZF-187062,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0129-01,DWZF-187063,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0129-02,DWZF-187064,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0129-03,DWZF-187065,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0130-01,DWZF-187066,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0130-02,DWZF-187067,REPRICE,true,true,,244,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZHIW312996,DWZF-187001,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZOW0131-01,DWZF-187068,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0131-02,DWZF-187069,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZTOT312747,DWZF-187003,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
-ZOW0020-01,DWZF-187072,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0081-01,DWZF-187154,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0131-03,DWZF-187070,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0131-04,DWZF-187071,REPRICE,true,true,,116,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-01,DWZF-187279,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-02,DWZF-187280,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-03,DWZF-187281,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-04,DWZF-187282,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-05,DWZF-187283,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-06,DWZF-187284,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-07,DWZF-187285,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-08,DWZF-187286,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-09,DWZF-187287,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-10,DWZF-187288,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0132-11,DWZF-187289,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-01,DWZF-187160,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-02,DWZF-187161,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0133-03,DWZF-187162,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0133-04,DWZF-187163,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0134-01,DWZF-187164,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0134-02,DWZF-187165,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0134-03,DWZF-187166,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0134-04,DWZF-187167,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0135-01,DWZF-187168,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0135-02,DWZF-187169,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZKEM312641,DWZF-187005,REPRICE,true,true,171,309.5,4.25,reprice to staged retail
-ZOW0023-01,DWZF-187076,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZOW0023-04,DWZF-187079,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZOW0040-01,DWZF-187314,REPRICE,true,true,191,345.7,4.25,reprice to staged retail
-ZOW0040-04,DWZF-187316,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0135-03,DWZF-187170,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-04,DWZF-187171,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-05,DWZF-187172,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0135-06,DWZF-187173,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0136-01,DWZF-187174,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0136-02,DWZF-187175,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0136-03,DWZF-187176,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-01,DWZF-187177,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-02,DWZF-187178,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-03,DWZF-187179,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-04,DWZF-187180,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0137-05,DWZF-187181,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-01,DWZF-187182,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-02,DWZF-187183,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-03,DWZF-187184,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-04,DWZF-187185,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0138-05,DWZF-187186,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0138-06,DWZF-187187,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0091-01,DWZF-187194,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0091-02,DWZF-187195,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZRHW312906,DWZF-187012,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
-ZOW0085-01,DWZF-187321,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0093-03,DWZF-187206,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-02,DWZF-187322,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0093-05,DWZF-187208,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0014-01,DWZF-187085,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0095-03,DWZF-187219,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0048-02,DWZF-187229,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
 ZOW0139-01,DWZF-187232,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-06,DWZF-187326,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-07,DWZF-187327,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0085-10,DWZF-187330,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0086-02,DWZF-187332,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-04,DWZF-187337,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-05,DWZF-187338,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-01,DWZF-187341,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZRHW312916,DWZF-187032,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
-ZOW0014-02,DWZF-187086,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0042-01,DWZF-187093,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0088-04,DWZF-187344,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0139-02,DWZF-187233,REPRICE,true,true,,136,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0140-01,DWZF-187234,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0140-02,DWZF-187235,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0016-01,DWZF-187088,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0141-01,DWZF-187236,REPRICE,true,true,,452,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0142-01,DWZF-187237,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0142-02,DWZF-187238,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0143-01,DWZF-187239,REPRICE,true,true,,250,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0089-03,DWZF-187350,REPRICE,true,true,,180,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0138-05,DWZF-187186,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0041-02,DWZF-187092,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0144-01,DWZF-187240,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0145-01,DWZF-187241,REPRICE,true,true,,402,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0146-01,DWZF-187242,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0146-02,DWZF-187243,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0146-03,DWZF-187244,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
 ZOW0147-01,DWZF-187245,REPRICE,true,true,,486,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0026-01,DWZF-187248,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0059-02,DWZF-187354,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
-ZOW0059-04,DWZF-187356,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0060-01,DWZF-187357,REPRICE,true,true,162,293.21,4.25,reprice to staged retail
-ZOW0042-03,DWZF-187095,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0067-03,DWZF-187366,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0027-03,DWZF-187251,REPRICE,true,true,,106,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0114-01,DWZF-187097,REPRICE,true,true,,158,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0072-02,DWZF-187371,REPRICE,true,true,,422,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0123-03,DWZF-187115,REPRICE,true,true,,210,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0104-01,DWZF-187258,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0053-02,DWZF-187119,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0106-01,DWZF-187261,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0110-01,DWZF-187264,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0110-02,DWZF-187265,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0058-01,DWZF-187127,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0110-05,DWZF-187268,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0074-01,DWZF-187129,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0111-01,DWZF-187270,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0111-02,DWZF-187271,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0112-02,DWZF-187275,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0112-03,DWZF-187276,REPRICE,true,true,,100,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0077-01,DWZF-187138,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-03,DWZF-187281,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0077-02,DWZF-187139,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-06,DWZF-187284,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0132-10,DWZF-187288,REPRICE,true,true,,186,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0077-04,DWZF-187141,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0100-02,DWZF-187296,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0102-01,DWZF-187300,REPRICE,true,true,,196,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0103-01,DWZF-187303,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0078-01,DWZF-187142,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZFOW312943,DWZF-187042,HELD_NEEDS_PRICE,true,true,171,,4.25,"joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
-ZOW0036-01,DWZF-187307,REPRICE,true,true,,200,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0078-02,DWZF-187143,REPRICE,true,true,,148,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0036-02,DWZF-187308,REPRICE,true,true,257,465.16,4.25,reprice to staged retail
-ZGUV08004,DWZF-187049,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0079-05,DWZF-187150,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0080-02,DWZF-187152,REPRICE,true,true,,164,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0016-03,DWZF-187090,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
-ZOW0095-05,DWZF-187221,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0079-04,DWZF-187149,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0092-05,DWZF-187203,REPRICE,true,true,,122,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0141-01,DWZF-187236,REPRICE,true,true,,452,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0090-02,DWZF-187352,REPRICE,true,true,,126,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0087-03,DWZF-187336,REPRICE,true,true,,154,4.25,"reprice to staged retail (retail-harvested, no trade)"
-ZOW0042-02,DWZF-187094,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
+ZOW0148-01,DWZF-187246,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZOW0148-02,DWZF-187247,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZPAW05001,DWZF-187050,REPRICE,true,true,135,244.34,4.25,reprice to staged retail
+ZPHA312595,DWZF-187007,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZPHA312622,DWZF-187013,REPRICE,true,true,,176,4.25,"reprice to staged retail (retail-harvested, no trade)"
+ZQUA310993,DWZF-187024,REPRICE,true,true,140,253.39,4.25,reprice to staged retail
+ZRHW312889,DWZF-187029,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZRHW312890,DWZF-187011,REPRICE,true,true,281,508.6,4.25,reprice to staged retail
+ZRHW312897,DWZF-187014,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312899,DWZF-187004,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312903,DWZF-187017,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312906,DWZF-187012,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312907,DWZF-187000,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312910,DWZF-187006,REPRICE,true,true,216,390.95,4.25,reprice to staged retail
+ZRHW312914,DWZF-187023,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZRHW312916,DWZF-187032,REPRICE,true,true,177,320.36,4.25,reprice to staged retail
+ZTOT312747,DWZF-187003,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZWOO311333,DWZF-187053,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZWOO311336,DWZF-187009,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZWOO311338,DWZF-187054,REPRICE,true,true,247,447.06,4.25,reprice to staged retail
+ZWOO311346,DWZF-187008,REPRICE,true,true,208,376.47,4.25,reprice to staged retail
diff --git a/tk10873/zoffany_optionA_draft.json b/tk10873/zoffany_optionA_draft.json
index bce543a..7bd7bdf 100644
--- a/tk10873/zoffany_optionA_draft.json
+++ b/tk10873/zoffany_optionA_draft.json
@@ -1,110 +1,110 @@
 [
   {
-    "mfr_sku": "ZOW0075-02",
-    "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187133",
-    "joined": true,
-    "has_product_variant": true,
+    "mfr_sku": "313114",
+    "live_dw_sku": "DWWC-502880",
+    "staged_dw_sku": null,
+    "joined": false,
+    "has_product_variant": false,
     "has_sample_variant": true,
-    "variant_count": 2,
+    "variant_count": 1,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": null,
     "our_price": null,
     "tariff": null,
-    "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "action": "HELD_NEEDS_PRICE",
+    "proposed_sellable_price": null,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "no staging join — held for price harvest"
   },
   {
-    "mfr_sku": "ZOW0134-03",
+    "mfr_sku": "ZAMW310430",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187166",
+    "staged_dw_sku": "DWZF-187051",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0113-01",
+    "mfr_sku": "ZAMW310431",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187278",
+    "staged_dw_sku": "DWZF-187052",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 382,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 382,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0087-01",
+    "mfr_sku": "ZAQF322696",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187334",
+    "staged_dw_sku": "DWZF-187045",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 132,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 132,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0110-04",
+    "mfr_sku": "ZCON311996",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187267",
+    "staged_dw_sku": "DWZF-187031",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 154,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZPAW05001",
+    "mfr_sku": "ZCOT313015",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187050",
+    "staged_dw_sku": "DWZF-187037",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 135,
-    "price_retail": 244.34,
+    "price_trade": null,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 244.34,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0117-02",
+    "mfr_sku": "ZCOT313026",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187374",
+    "staged_dw_sku": "DWZF-187036",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -119,230 +119,230 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0119-02",
+    "mfr_sku": "ZDAR312857",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187378",
+    "staged_dw_sku": "DWZF-187026",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZPHA312622",
+    "mfr_sku": "ZDAR312861",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187013",
+    "staged_dw_sku": "DWZF-187039",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZWOO311338",
+    "mfr_sku": "ZDAR312864",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187054",
+    "staged_dw_sku": "DWZF-187022",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZAMW310430",
+    "mfr_sku": "ZDAR312865",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187051",
+    "staged_dw_sku": "DWZF-187038",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 200,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZWOO311346",
+    "mfr_sku": "ZDAR312869",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187008",
+    "staged_dw_sku": "DWZF-187025",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312861",
+    "mfr_sku": "ZDAR312873",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187039",
+    "staged_dw_sku": "DWZF-187002",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312857",
+    "mfr_sku": "ZDAR312884",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187026",
+    "staged_dw_sku": "DWZF-187020",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZGUV08002",
+    "mfr_sku": "ZEND313098",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187047",
+    "staged_dw_sku": "DWZF-187030",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZIND313111",
+    "mfr_sku": "ZFOW312941",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187033",
+    "staged_dw_sku": "DWZF-187041",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 136,
-    "our_price": null,
+    "price_trade": 171,
+    "price_retail": null,
+    "our_price": 309.5,
     "tariff": null,
-    "action": "REPRICE",
-    "proposed_sellable_price": 136,
+    "action": "HELD_NEEDS_PRICE",
+    "proposed_sellable_price": null,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
   },
   {
-    "mfr_sku": "ZOW0120-01",
+    "mfr_sku": "ZFOW312943",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187379",
+    "staged_dw_sku": "DWZF-187042",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 126,
-    "our_price": null,
+    "price_trade": 171,
+    "price_retail": null,
+    "our_price": 309.5,
     "tariff": null,
-    "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "action": "HELD_NEEDS_PRICE",
+    "proposed_sellable_price": null,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
   },
   {
-    "mfr_sku": "ZPHA312595",
+    "mfr_sku": "ZGUV08002",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187007",
+    "staged_dw_sku": "DWZF-187047",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 281,
-    "price_retail": 508.6,
-    "our_price": 508.6,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 508.6,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZRHW312890",
+    "mfr_sku": "ZGUV08003",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187011",
+    "staged_dw_sku": "DWZF-187048",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 281,
-    "price_retail": 508.6,
-    "our_price": 508.6,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 508.6,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZRHW312897",
+    "mfr_sku": "ZGUV08004",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187014",
+    "staged_dw_sku": "DWZF-187049",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": 376.47,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZKEM312648",
+    "mfr_sku": "ZHIW312994",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187016",
+    "staged_dw_sku": "DWZF-187019",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -357,264 +357,264 @@
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZRHW312903",
+    "mfr_sku": "ZHIW312995",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187017",
+    "staged_dw_sku": "DWZF-187015",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZHIW312994",
+    "mfr_sku": "ZHIW312996",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187019",
+    "staged_dw_sku": "DWZF-187001",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
-    "our_price": 376.47,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZRHW312914",
+    "mfr_sku": "ZHIW312997",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187023",
+    "staged_dw_sku": "DWZF-187034",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
-    "our_price": 320.36,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0020-02",
+    "mfr_sku": "ZHIW313003",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187073",
+    "staged_dw_sku": "DWZF-187021",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0050-02",
+    "mfr_sku": "ZHIW313004",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187256",
+    "staged_dw_sku": "DWZF-187027",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 593,
-    "price_retail": 1073.3,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 1073.3,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0132-08",
+    "mfr_sku": "ZIND313111",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187286",
+    "staged_dw_sku": "DWZF-187033",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 136,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 136,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZQUA310993",
+    "mfr_sku": "ZJAI311727",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187024",
+    "staged_dw_sku": "DWZF-187010",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 140,
-    "price_retail": 253.39,
-    "our_price": 253.39,
+    "price_trade": 171,
+    "price_retail": 309.5,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 253.39,
+    "proposed_sellable_price": 309.5,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZHIW313004",
+    "mfr_sku": "ZKEM312641",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187027",
+    "staged_dw_sku": "DWZF-187005",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": 171,
+    "price_retail": 309.5,
+    "our_price": 309.5,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 309.5,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZRHW312889",
+    "mfr_sku": "ZKEM312648",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187029",
+    "staged_dw_sku": "DWZF-187016",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 281,
-    "price_retail": 508.6,
-    "our_price": 508.6,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": 376.47,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 508.6,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZRHW312907",
+    "mfr_sku": "ZOW0007-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187000",
+    "staged_dw_sku": "DWZF-187083",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0080-01",
+    "mfr_sku": "ZOW0007-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187151",
+    "staged_dw_sku": "DWZF-187084",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZRHW312899",
+    "mfr_sku": "ZOW0014-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187004",
+    "staged_dw_sku": "DWZF-187085",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZRHW312910",
+    "mfr_sku": "ZOW0014-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187006",
+    "staged_dw_sku": "DWZF-187086",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZFOW312941",
+    "mfr_sku": "ZOW0014-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187041",
+    "staged_dw_sku": "DWZF-187087",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 171,
-    "price_retail": null,
-    "our_price": 309.5,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
     "tariff": null,
-    "action": "HELD_NEEDS_PRICE",
-    "proposed_sellable_price": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
-    "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0036-05",
+    "mfr_sku": "ZOW0016-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187310",
+    "staged_dw_sku": "DWZF-187088",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 281,
-    "price_retail": 508.6,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 508.6,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0134-01",
+    "mfr_sku": "ZOW0016-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187164",
+    "staged_dw_sku": "DWZF-187089",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -629,298 +629,298 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0129-01",
+    "mfr_sku": "ZOW0016-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187063",
+    "staged_dw_sku": "DWZF-187090",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 116,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0138-04",
+    "mfr_sku": "ZOW0019-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187185",
+    "staged_dw_sku": "DWZF-187224",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0129-03",
+    "mfr_sku": "ZOW0019-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187065",
+    "staged_dw_sku": "DWZF-187225",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 116,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0076-02",
+    "mfr_sku": "ZOW0020-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187136",
+    "staged_dw_sku": "DWZF-187072",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0033-01",
+    "mfr_sku": "ZOW0020-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187254",
+    "staged_dw_sku": "DWZF-187073",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0137-05",
+    "mfr_sku": "ZOW0020-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187181",
+    "staged_dw_sku": "DWZF-187074",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0138-03",
+    "mfr_sku": "ZOW0023-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187184",
+    "staged_dw_sku": "DWZF-187076",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0138-01",
+    "mfr_sku": "ZOW0023-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187182",
+    "staged_dw_sku": "DWZF-187077",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0138-02",
+    "mfr_sku": "ZOW0023-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187183",
+    "staged_dw_sku": "DWZF-187078",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0094-06",
+    "mfr_sku": "ZOW0023-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187216",
+    "staged_dw_sku": "DWZF-187079",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0094-03",
+    "mfr_sku": "ZOW0025-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187213",
+    "staged_dw_sku": "DWZF-187080",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0093-07",
+    "mfr_sku": "ZOW0026-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187210",
+    "staged_dw_sku": "DWZF-187248",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 158,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 158,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0094-01",
+    "mfr_sku": "ZOW0027-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187211",
+    "staged_dw_sku": "DWZF-187249",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 106,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 106,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0079-02",
+    "mfr_sku": "ZOW0027-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187147",
+    "staged_dw_sku": "DWZF-187250",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 106,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 106,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0083-02",
+    "mfr_sku": "ZOW0027-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187157",
+    "staged_dw_sku": "DWZF-187251",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 106,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 106,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0079-03",
+    "mfr_sku": "ZOW0031-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187148",
+    "staged_dw_sku": "DWZF-187252",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 106,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 106,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0083-03",
+    "mfr_sku": "ZOW0032-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187158",
+    "staged_dw_sku": "DWZF-187253",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 158,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 158,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0083-04",
+    "mfr_sku": "ZOW0033-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187159",
+    "staged_dw_sku": "DWZF-187254",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -935,706 +935,706 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0133-01",
+    "mfr_sku": "ZOW0036-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187160",
+    "staged_dw_sku": "DWZF-187307",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0084-02",
+    "mfr_sku": "ZOW0036-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187318",
+    "staged_dw_sku": "DWZF-187308",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 200,
+    "price_trade": 257,
+    "price_retail": 465.16,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 465.16,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0133-02",
+    "mfr_sku": "ZOW0036-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187161",
+    "staged_dw_sku": "DWZF-187309",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 126,
+    "price_trade": 281,
+    "price_retail": 508.6,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0137-01",
+    "mfr_sku": "ZOW0036-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187177",
+    "staged_dw_sku": "DWZF-187310",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 281,
+    "price_retail": 508.6,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0137-02",
+    "mfr_sku": "ZOW0037-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187178",
+    "staged_dw_sku": "DWZF-187311",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0137-03",
+    "mfr_sku": "ZOW0040-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187179",
+    "staged_dw_sku": "DWZF-187314",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 191,
+    "price_retail": 345.7,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 345.7,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0137-04",
+    "mfr_sku": "ZOW0040-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187180",
+    "staged_dw_sku": "DWZF-187316",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0126-01",
+    "mfr_sku": "ZOW0041-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187055",
+    "staged_dw_sku": "DWZF-187091",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 422,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 422,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZAQF322696",
+    "mfr_sku": "ZOW0041-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187045",
+    "staged_dw_sku": "DWZF-187092",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 132,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 132,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0116-01",
+    "mfr_sku": "ZOW0042-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187372",
+    "staged_dw_sku": "DWZF-187093",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 136,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 136,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0117-01",
+    "mfr_sku": "ZOW0042-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187373",
+    "staged_dw_sku": "DWZF-187094",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0118-02",
+    "mfr_sku": "ZOW0042-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187376",
+    "staged_dw_sku": "DWZF-187095",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 418,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 418,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0119-01",
+    "mfr_sku": "ZOW0043-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187377",
+    "staged_dw_sku": "DWZF-187096",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0121-01",
+    "mfr_sku": "ZOW0043-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187380",
+    "staged_dw_sku": "DWZF-187226",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0121-03",
+    "mfr_sku": "ZOW0044-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187382",
+    "staged_dw_sku": "DWZF-187227",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0122-02",
+    "mfr_sku": "ZOW0047-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187384",
+    "staged_dw_sku": "DWZF-187228",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZCOT313015",
+    "mfr_sku": "ZOW0048-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187037",
+    "staged_dw_sku": "DWZF-187229",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 210,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZHIW312997",
+    "mfr_sku": "ZOW0048-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187034",
+    "staged_dw_sku": "DWZF-187230",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 140,
-    "price_retail": 253.39,
-    "our_price": 253.39,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 253.39,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZWOO311333",
+    "mfr_sku": "ZOW0048-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187053",
+    "staged_dw_sku": "DWZF-187231",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZAMW310431",
+    "mfr_sku": "ZOW0050-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187052",
+    "staged_dw_sku": "DWZF-187255",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 200,
+    "price_trade": 593,
+    "price_retail": 1073.3,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 1073.3,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0132-11",
+    "mfr_sku": "ZOW0050-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187289",
+    "staged_dw_sku": "DWZF-187256",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 186,
+    "price_trade": 593,
+    "price_retail": 1073.3,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 1073.3,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZHIW312995",
+    "mfr_sku": "ZOW0052-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187015",
+    "staged_dw_sku": "DWZF-187118",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 140,
-    "price_retail": 253.39,
-    "our_price": 253.39,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 253.39,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZHIW313003",
+    "mfr_sku": "ZOW0053-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187021",
+    "staged_dw_sku": "DWZF-187119",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0083-01",
+    "mfr_sku": "ZOW0054-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187156",
+    "staged_dw_sku": "DWZF-187120",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0091-03",
+    "mfr_sku": "ZOW0054-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187196",
+    "staged_dw_sku": "DWZF-187121",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
+    "price_trade": 177,
+    "price_retail": 320.36,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0077-03",
+    "mfr_sku": "ZOW0055-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187140",
+    "staged_dw_sku": "DWZF-187123",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0097-01",
+    "mfr_sku": "ZOW0057-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187290",
+    "staged_dw_sku": "DWZF-187124",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 158,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 158,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0098-03",
+    "mfr_sku": "ZOW0057-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187293",
+    "staged_dw_sku": "DWZF-187125",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 176,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0128-01",
+    "mfr_sku": "ZOW0057-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187060",
+    "staged_dw_sku": "DWZF-187126",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 210,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0132-07",
+    "mfr_sku": "ZOW0058-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187285",
+    "staged_dw_sku": "DWZF-187127",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 186,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0086-01",
+    "mfr_sku": "ZOW0058-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187331",
+    "staged_dw_sku": "DWZF-187128",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 180,
+    "price_trade": 208,
+    "price_retail": 376.47,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 180,
+    "proposed_sellable_price": 376.47,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0089-01",
+    "mfr_sku": "ZOW0059-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187348",
+    "staged_dw_sku": "DWZF-187353",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 180,
+    "price_trade": 247,
+    "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 180,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0047-01",
+    "mfr_sku": "ZOW0059-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187228",
+    "staged_dw_sku": "DWZF-187354",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 247,
+    "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0128-03",
+    "mfr_sku": "ZOW0059-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187062",
+    "staged_dw_sku": "DWZF-187355",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 210,
+    "price_trade": 247,
+    "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0129-02",
+    "mfr_sku": "ZOW0059-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187064",
+    "staged_dw_sku": "DWZF-187356",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 116,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0078-04",
+    "mfr_sku": "ZOW0060-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187145",
+    "staged_dw_sku": "DWZF-187357",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
+    "price_trade": 162,
+    "price_retail": 293.21,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 293.21,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0079-01",
+    "mfr_sku": "ZOW0067-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187146",
+    "staged_dw_sku": "DWZF-187364",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0130-01",
+    "mfr_sku": "ZOW0067-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187066",
+    "staged_dw_sku": "DWZF-187366",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 244,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 244,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0131-01",
+    "mfr_sku": "ZOW0072-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187068",
+    "staged_dw_sku": "DWZF-187370",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 116,
+    "price_retail": 422,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 422,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0131-03",
+    "mfr_sku": "ZOW0072-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187070",
+    "staged_dw_sku": "DWZF-187371",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 116,
+    "price_retail": 422,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 422,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0080-03",
+    "mfr_sku": "ZOW0074-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187153",
+    "staged_dw_sku": "DWZF-187129",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0082-01",
+    "mfr_sku": "ZOW0074-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187155",
+    "staged_dw_sku": "DWZF-187130",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -1649,162 +1649,162 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0131-04",
+    "mfr_sku": "ZOW0074-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187071",
+    "staged_dw_sku": "DWZF-187131",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 116,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0133-03",
+    "mfr_sku": "ZOW0075-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187162",
+    "staged_dw_sku": "DWZF-187132",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0020-05",
+    "mfr_sku": "ZOW0075-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187074",
+    "staged_dw_sku": "DWZF-187133",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0134-02",
+    "mfr_sku": "ZOW0075-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187165",
+    "staged_dw_sku": "DWZF-187134",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0023-02",
+    "mfr_sku": "ZOW0076-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187077",
+    "staged_dw_sku": "DWZF-187135",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0023-03",
+    "mfr_sku": "ZOW0076-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187078",
+    "staged_dw_sku": "DWZF-187136",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0025-01",
+    "mfr_sku": "ZOW0076-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187080",
+    "staged_dw_sku": "DWZF-187137",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0007-01",
+    "mfr_sku": "ZOW0077-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187083",
+    "staged_dw_sku": "DWZF-187138",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0014-03",
+    "mfr_sku": "ZOW0077-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187087",
+    "staged_dw_sku": "DWZF-187139",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0016-02",
+    "mfr_sku": "ZOW0077-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187089",
+    "staged_dw_sku": "DWZF-187140",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -1819,26 +1819,26 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0041-01",
+    "mfr_sku": "ZOW0077-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187091",
+    "staged_dw_sku": "DWZF-187141",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0134-04",
+    "mfr_sku": "ZOW0078-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187167",
+    "staged_dw_sku": "DWZF-187142",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -1853,9 +1853,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0135-03",
+    "mfr_sku": "ZOW0078-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187170",
+    "staged_dw_sku": "DWZF-187143",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -1870,230 +1870,230 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0043-01",
+    "mfr_sku": "ZOW0078-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187096",
+    "staged_dw_sku": "DWZF-187144",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0114-02",
+    "mfr_sku": "ZOW0078-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187098",
+    "staged_dw_sku": "DWZF-187145",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 158,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 158,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0135-04",
+    "mfr_sku": "ZOW0079-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187171",
+    "staged_dw_sku": "DWZF-187146",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0135-05",
+    "mfr_sku": "ZOW0079-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187172",
+    "staged_dw_sku": "DWZF-187147",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0115-01",
+    "mfr_sku": "ZOW0079-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187099",
+    "staged_dw_sku": "DWZF-187148",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 210,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0124-01",
+    "mfr_sku": "ZOW0079-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187116",
+    "staged_dw_sku": "DWZF-187149",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 244,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 244,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0135-06",
+    "mfr_sku": "ZOW0079-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187173",
+    "staged_dw_sku": "DWZF-187150",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0125-01",
+    "mfr_sku": "ZOW0080-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187117",
+    "staged_dw_sku": "DWZF-187151",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0052-01",
+    "mfr_sku": "ZOW0080-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187118",
+    "staged_dw_sku": "DWZF-187152",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0054-02",
+    "mfr_sku": "ZOW0080-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187120",
+    "staged_dw_sku": "DWZF-187153",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0136-01",
+    "mfr_sku": "ZOW0080-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187174",
+    "staged_dw_sku": "DWZF-187257",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0054-03",
+    "mfr_sku": "ZOW0081-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187121",
+    "staged_dw_sku": "DWZF-187154",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0055-02",
+    "mfr_sku": "ZOW0082-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187123",
+    "staged_dw_sku": "DWZF-187155",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0136-03",
+    "mfr_sku": "ZOW0083-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187176",
+    "staged_dw_sku": "DWZF-187156",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -2108,9 +2108,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0092-01",
+    "mfr_sku": "ZOW0083-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187199",
+    "staged_dw_sku": "DWZF-187157",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -2125,1022 +2125,1022 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0057-01",
+    "mfr_sku": "ZOW0083-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187124",
+    "staged_dw_sku": "DWZF-187158",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0057-02",
+    "mfr_sku": "ZOW0083-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187125",
+    "staged_dw_sku": "DWZF-187159",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0092-03",
+    "mfr_sku": "ZOW0084-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187201",
+    "staged_dw_sku": "DWZF-187317",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0057-03",
+    "mfr_sku": "ZOW0084-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187126",
+    "staged_dw_sku": "DWZF-187318",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0092-04",
+    "mfr_sku": "ZOW0084-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187202",
+    "staged_dw_sku": "DWZF-187319",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0127-02",
+    "mfr_sku": "ZOW0084-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187058",
+    "staged_dw_sku": "DWZF-187320",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 200,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 200,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0043-02",
+    "mfr_sku": "ZOW0085-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187226",
+    "staged_dw_sku": "DWZF-187321",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0093-02",
+    "mfr_sku": "ZOW0085-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187205",
+    "staged_dw_sku": "DWZF-187322",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0058-02",
+    "mfr_sku": "ZOW0085-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187128",
+    "staged_dw_sku": "DWZF-187323",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0095-01",
+    "mfr_sku": "ZOW0085-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187217",
+    "staged_dw_sku": "DWZF-187324",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0044-04",
+    "mfr_sku": "ZOW0085-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187227",
+    "staged_dw_sku": "DWZF-187325",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0048-03",
+    "mfr_sku": "ZOW0085-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187230",
+    "staged_dw_sku": "DWZF-187326",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0048-04",
+    "mfr_sku": "ZOW0085-07",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187231",
+    "staged_dw_sku": "DWZF-187327",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0074-02",
+    "mfr_sku": "ZOW0085-08",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187130",
+    "staged_dw_sku": "DWZF-187328",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0139-02",
+    "mfr_sku": "ZOW0085-09",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187233",
+    "staged_dw_sku": "DWZF-187329",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 136,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 136,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0095-02",
+    "mfr_sku": "ZOW0085-10",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187218",
+    "staged_dw_sku": "DWZF-187330",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0074-03",
+    "mfr_sku": "ZOW0086-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187131",
+    "staged_dw_sku": "DWZF-187331",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 180,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 180,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0096-01",
+    "mfr_sku": "ZOW0086-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187222",
+    "staged_dw_sku": "DWZF-187332",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 180,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 180,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0096-02",
+    "mfr_sku": "ZOW0086-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187223",
+    "staged_dw_sku": "DWZF-187333",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 180,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 180,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0140-01",
+    "mfr_sku": "ZOW0087-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187234",
+    "staged_dw_sku": "DWZF-187334",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0142-01",
+    "mfr_sku": "ZOW0087-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187237",
+    "staged_dw_sku": "DWZF-187335",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 210,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0142-02",
+    "mfr_sku": "ZOW0087-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187238",
+    "staged_dw_sku": "DWZF-187336",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 210,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0075-01",
+    "mfr_sku": "ZOW0087-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187132",
+    "staged_dw_sku": "DWZF-187337",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0075-03",
+    "mfr_sku": "ZOW0087-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187134",
+    "staged_dw_sku": "DWZF-187338",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0019-01",
+    "mfr_sku": "ZOW0087-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187224",
+    "staged_dw_sku": "DWZF-187339",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0076-01",
+    "mfr_sku": "ZOW0087-07",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187135",
+    "staged_dw_sku": "DWZF-187340",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0019-02",
+    "mfr_sku": "ZOW0088-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187225",
+    "staged_dw_sku": "DWZF-187341",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0100-01",
+    "mfr_sku": "ZOW0088-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187295",
+    "staged_dw_sku": "DWZF-187342",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0100-03",
+    "mfr_sku": "ZOW0088-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187297",
+    "staged_dw_sku": "DWZF-187343",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0076-03",
+    "mfr_sku": "ZOW0088-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187137",
+    "staged_dw_sku": "DWZF-187344",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0144-01",
+    "mfr_sku": "ZOW0088-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187240",
+    "staged_dw_sku": "DWZF-187345",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0145-01",
+    "mfr_sku": "ZOW0088-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187241",
+    "staged_dw_sku": "DWZF-187346",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 402,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 402,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0078-03",
+    "mfr_sku": "ZOW0088-07",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187144",
+    "staged_dw_sku": "DWZF-187347",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 154,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 154,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "313114",
-    "live_dw_sku": "DWWC-502880",
-    "staged_dw_sku": null,
-    "joined": false,
-    "has_product_variant": false,
+    "mfr_sku": "ZOW0089-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187348",
+    "joined": true,
+    "has_product_variant": true,
     "has_sample_variant": true,
-    "variant_count": 1,
+    "variant_count": 2,
     "price_trade": null,
-    "price_retail": null,
+    "price_retail": 180,
     "our_price": null,
     "tariff": null,
-    "action": "HELD_NEEDS_PRICE",
-    "proposed_sellable_price": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 180,
     "sample_price": 4.25,
-    "note": "no staging join — held for price harvest"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0146-01",
+    "mfr_sku": "ZOW0089-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187242",
+    "staged_dw_sku": "DWZF-187349",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 180,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 180,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0146-02",
+    "mfr_sku": "ZOW0089-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187243",
+    "staged_dw_sku": "DWZF-187350",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 180,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 180,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0146-03",
+    "mfr_sku": "ZOW0090-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187244",
+    "staged_dw_sku": "DWZF-187351",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0148-01",
+    "mfr_sku": "ZOW0090-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187246",
+    "staged_dw_sku": "DWZF-187352",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0148-02",
+    "mfr_sku": "ZOW0091-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187247",
+    "staged_dw_sku": "DWZF-187194",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0027-01",
+    "mfr_sku": "ZOW0091-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187249",
+    "staged_dw_sku": "DWZF-187195",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 106,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 106,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0027-02",
+    "mfr_sku": "ZOW0091-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187250",
+    "staged_dw_sku": "DWZF-187196",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 106,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 106,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0031-01",
+    "mfr_sku": "ZOW0092-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187252",
+    "staged_dw_sku": "DWZF-187199",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 106,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 106,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0032-01",
+    "mfr_sku": "ZOW0092-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187253",
+    "staged_dw_sku": "DWZF-187201",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 158,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 158,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0050-01",
+    "mfr_sku": "ZOW0092-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187255",
+    "staged_dw_sku": "DWZF-187202",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 593,
-    "price_retail": 1073.3,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 1073.3,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0080-04",
+    "mfr_sku": "ZOW0092-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187257",
+    "staged_dw_sku": "DWZF-187203",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 164,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0104-02",
+    "mfr_sku": "ZOW0093-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187259",
+    "staged_dw_sku": "DWZF-187205",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0105-01",
+    "mfr_sku": "ZOW0093-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187260",
+    "staged_dw_sku": "DWZF-187206",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0107-01",
+    "mfr_sku": "ZOW0093-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187262",
+    "staged_dw_sku": "DWZF-187208",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0108-01",
+    "mfr_sku": "ZOW0093-07",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187263",
+    "staged_dw_sku": "DWZF-187210",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0110-03",
+    "mfr_sku": "ZOW0094-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187266",
+    "staged_dw_sku": "DWZF-187211",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0110-06",
+    "mfr_sku": "ZOW0094-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187269",
+    "staged_dw_sku": "DWZF-187213",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0111-03",
+    "mfr_sku": "ZOW0094-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187272",
+    "staged_dw_sku": "DWZF-187216",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0111-04",
+    "mfr_sku": "ZOW0095-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187273",
+    "staged_dw_sku": "DWZF-187217",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0112-01",
+    "mfr_sku": "ZOW0095-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187274",
+    "staged_dw_sku": "DWZF-187218",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 100,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 100,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0112-04",
+    "mfr_sku": "ZOW0095-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187277",
+    "staged_dw_sku": "DWZF-187219",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 100,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 100,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-01",
+    "mfr_sku": "ZOW0095-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187279",
+    "staged_dw_sku": "DWZF-187221",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-02",
+    "mfr_sku": "ZOW0096-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187280",
+    "staged_dw_sku": "DWZF-187222",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-04",
+    "mfr_sku": "ZOW0096-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187282",
+    "staged_dw_sku": "DWZF-187223",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-05",
+    "mfr_sku": "ZOW0096-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187283",
+    "staged_dw_sku": "DWZF-187387",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-09",
+    "mfr_sku": "ZOW0097-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187287",
+    "staged_dw_sku": "DWZF-187290",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 158,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 158,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
@@ -3179,9 +3179,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0101-01",
+    "mfr_sku": "ZOW0098-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187298",
+    "staged_dw_sku": "DWZF-187293",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3196,9 +3196,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0101-02",
+    "mfr_sku": "ZOW0100-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187299",
+    "staged_dw_sku": "DWZF-187295",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3213,43 +3213,43 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0102-02",
+    "mfr_sku": "ZOW0100-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187301",
+    "staged_dw_sku": "DWZF-187296",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0102-03",
+    "mfr_sku": "ZOW0100-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187302",
+    "staged_dw_sku": "DWZF-187297",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0103-02",
+    "mfr_sku": "ZOW0101-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187304",
+    "staged_dw_sku": "DWZF-187298",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3264,9 +3264,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0103-03",
+    "mfr_sku": "ZOW0101-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187305",
+    "staged_dw_sku": "DWZF-187299",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3281,213 +3281,213 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0036-04",
+    "mfr_sku": "ZOW0102-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187309",
+    "staged_dw_sku": "DWZF-187300",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 281,
-    "price_retail": 508.6,
+    "price_trade": null,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 508.6,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0037-01",
+    "mfr_sku": "ZOW0102-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187311",
+    "staged_dw_sku": "DWZF-187301",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0084-01",
+    "mfr_sku": "ZOW0102-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187317",
+    "staged_dw_sku": "DWZF-187302",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 200,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0084-03",
+    "mfr_sku": "ZOW0103-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187319",
+    "staged_dw_sku": "DWZF-187303",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 200,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0084-04",
+    "mfr_sku": "ZOW0103-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187320",
+    "staged_dw_sku": "DWZF-187304",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 200,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-04",
+    "mfr_sku": "ZOW0103-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187324",
+    "staged_dw_sku": "DWZF-187305",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-05",
+    "mfr_sku": "ZOW0104-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187325",
+    "staged_dw_sku": "DWZF-187258",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-08",
+    "mfr_sku": "ZOW0104-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187328",
+    "staged_dw_sku": "DWZF-187259",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-09",
+    "mfr_sku": "ZOW0105-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187329",
+    "staged_dw_sku": "DWZF-187260",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0086-03",
+    "mfr_sku": "ZOW0106-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187333",
+    "staged_dw_sku": "DWZF-187261",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 180,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 180,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0087-02",
+    "mfr_sku": "ZOW0107-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187335",
+    "staged_dw_sku": "DWZF-187262",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0087-06",
+    "mfr_sku": "ZOW0108-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187339",
+    "staged_dw_sku": "DWZF-187263",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0087-07",
+    "mfr_sku": "ZOW0110-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187340",
+    "staged_dw_sku": "DWZF-187264",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3502,9 +3502,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-02",
+    "mfr_sku": "ZOW0110-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187342",
+    "staged_dw_sku": "DWZF-187265",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3519,9 +3519,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-03",
+    "mfr_sku": "ZOW0110-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187343",
+    "staged_dw_sku": "DWZF-187266",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3536,9 +3536,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-05",
+    "mfr_sku": "ZOW0110-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187345",
+    "staged_dw_sku": "DWZF-187267",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3553,9 +3553,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-06",
+    "mfr_sku": "ZOW0110-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187346",
+    "staged_dw_sku": "DWZF-187268",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3570,9 +3570,9 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-07",
+    "mfr_sku": "ZOW0110-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187347",
+    "staged_dw_sku": "DWZF-187269",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -3587,1097 +3587,1097 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0089-02",
+    "mfr_sku": "ZOW0111-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187349",
+    "staged_dw_sku": "DWZF-187270",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 180,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 180,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0090-01",
+    "mfr_sku": "ZOW0111-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187351",
+    "staged_dw_sku": "DWZF-187271",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0059-01",
+    "mfr_sku": "ZOW0111-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187353",
+    "staged_dw_sku": "DWZF-187272",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0059-03",
+    "mfr_sku": "ZOW0111-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187355",
+    "staged_dw_sku": "DWZF-187273",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0067-01",
+    "mfr_sku": "ZOW0112-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187364",
+    "staged_dw_sku": "DWZF-187274",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 100,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 100,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0072-01",
+    "mfr_sku": "ZOW0112-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187370",
+    "staged_dw_sku": "DWZF-187275",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 422,
+    "price_retail": 100,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 422,
+    "proposed_sellable_price": 100,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-03",
+    "mfr_sku": "ZOW0112-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187323",
+    "staged_dw_sku": "DWZF-187276",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 100,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 100,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0007-02",
+    "mfr_sku": "ZOW0112-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187084",
+    "staged_dw_sku": "DWZF-187277",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 100,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 100,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0123-02",
+    "mfr_sku": "ZOW0113-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187386",
+    "staged_dw_sku": "DWZF-187278",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 210,
+    "price_retail": 382,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 382,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZCON311996",
+    "mfr_sku": "ZOW0114-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187031",
+    "staged_dw_sku": "DWZF-187097",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 158,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 158,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZCOT313026",
+    "mfr_sku": "ZOW0114-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187036",
+    "staged_dw_sku": "DWZF-187098",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 158,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 158,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0118-01",
+    "mfr_sku": "ZOW0115-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187375",
+    "staged_dw_sku": "DWZF-187099",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 418,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 418,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0121-02",
+    "mfr_sku": "ZOW0116-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187381",
+    "staged_dw_sku": "DWZF-187372",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 136,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 136,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0122-01",
+    "mfr_sku": "ZOW0117-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187383",
+    "staged_dw_sku": "DWZF-187373",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312884",
+    "mfr_sku": "ZOW0117-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187020",
+    "staged_dw_sku": "DWZF-187374",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312865",
+    "mfr_sku": "ZOW0118-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187038",
+    "staged_dw_sku": "DWZF-187375",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 418,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 418,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312864",
+    "mfr_sku": "ZOW0118-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187022",
+    "staged_dw_sku": "DWZF-187376",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 418,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 418,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312873",
+    "mfr_sku": "ZOW0119-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187002",
+    "staged_dw_sku": "DWZF-187377",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZDAR312869",
+    "mfr_sku": "ZOW0119-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187025",
+    "staged_dw_sku": "DWZF-187378",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZEND313098",
+    "mfr_sku": "ZOW0120-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187030",
+    "staged_dw_sku": "DWZF-187379",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0096-03",
+    "mfr_sku": "ZOW0121-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187387",
+    "staged_dw_sku": "DWZF-187380",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZGUV08003",
+    "mfr_sku": "ZOW0121-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187048",
+    "staged_dw_sku": "DWZF-187381",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZJAI311727",
+    "mfr_sku": "ZOW0121-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187010",
+    "staged_dw_sku": "DWZF-187382",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 171,
-    "price_retail": 309.5,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 309.5,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZWOO311336",
+    "mfr_sku": "ZOW0122-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187009",
+    "staged_dw_sku": "DWZF-187383",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
+    "price_trade": null,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0126-02",
+    "mfr_sku": "ZOW0122-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187056",
+    "staged_dw_sku": "DWZF-187384",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 422,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 422,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0127-01",
+    "mfr_sku": "ZOW0123-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187057",
+    "staged_dw_sku": "DWZF-187386",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0127-03",
+    "mfr_sku": "ZOW0123-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187059",
+    "staged_dw_sku": "DWZF-187115",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0128-02",
+    "mfr_sku": "ZOW0124-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187061",
+    "staged_dw_sku": "DWZF-187116",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 210,
+    "price_retail": 244,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 244,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0130-02",
+    "mfr_sku": "ZOW0125-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187067",
+    "staged_dw_sku": "DWZF-187117",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 244,
+    "price_retail": 196,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 244,
+    "proposed_sellable_price": 196,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZHIW312996",
+    "mfr_sku": "ZOW0126-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187001",
+    "staged_dw_sku": "DWZF-187055",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 140,
-    "price_retail": 253.39,
-    "our_price": 253.39,
+    "price_trade": null,
+    "price_retail": 422,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 253.39,
+    "proposed_sellable_price": 422,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0131-02",
+    "mfr_sku": "ZOW0126-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187069",
+    "staged_dw_sku": "DWZF-187056",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 116,
+    "price_retail": 422,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 116,
+    "proposed_sellable_price": 422,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZTOT312747",
+    "mfr_sku": "ZOW0127-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187003",
+    "staged_dw_sku": "DWZF-187057",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
-    "our_price": 447.06,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0020-01",
+    "mfr_sku": "ZOW0127-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187072",
+    "staged_dw_sku": "DWZF-187058",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0081-01",
+    "mfr_sku": "ZOW0127-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187154",
+    "staged_dw_sku": "DWZF-187059",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0133-04",
+    "mfr_sku": "ZOW0128-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187163",
+    "staged_dw_sku": "DWZF-187060",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 126,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0135-01",
+    "mfr_sku": "ZOW0128-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187168",
+    "staged_dw_sku": "DWZF-187061",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0135-02",
+    "mfr_sku": "ZOW0128-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187169",
+    "staged_dw_sku": "DWZF-187062",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZKEM312641",
+    "mfr_sku": "ZOW0129-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187005",
+    "staged_dw_sku": "DWZF-187063",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 171,
-    "price_retail": 309.5,
-    "our_price": 309.5,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 309.5,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0023-01",
+    "mfr_sku": "ZOW0129-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187076",
+    "staged_dw_sku": "DWZF-187064",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 116,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0023-04",
+    "mfr_sku": "ZOW0129-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187079",
+    "staged_dw_sku": "DWZF-187065",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
+    "price_trade": null,
+    "price_retail": 116,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0040-01",
+    "mfr_sku": "ZOW0130-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187314",
+    "staged_dw_sku": "DWZF-187066",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 191,
-    "price_retail": 345.7,
+    "price_trade": null,
+    "price_retail": 244,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 345.7,
+    "proposed_sellable_price": 244,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0040-04",
+    "mfr_sku": "ZOW0130-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187316",
+    "staged_dw_sku": "DWZF-187067",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 244,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 244,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0136-02",
+    "mfr_sku": "ZOW0131-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187175",
+    "staged_dw_sku": "DWZF-187068",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 116,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0138-06",
+    "mfr_sku": "ZOW0131-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187187",
+    "staged_dw_sku": "DWZF-187069",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 116,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0091-01",
+    "mfr_sku": "ZOW0131-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187194",
+    "staged_dw_sku": "DWZF-187070",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 116,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0091-02",
+    "mfr_sku": "ZOW0131-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187195",
+    "staged_dw_sku": "DWZF-187071",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 116,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 116,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZRHW312906",
+    "mfr_sku": "ZOW0132-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187012",
+    "staged_dw_sku": "DWZF-187279",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 216,
-    "price_retail": 390.95,
-    "our_price": 390.95,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 390.95,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-01",
+    "mfr_sku": "ZOW0132-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187321",
+    "staged_dw_sku": "DWZF-187280",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0093-03",
+    "mfr_sku": "ZOW0132-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187206",
+    "staged_dw_sku": "DWZF-187281",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-02",
+    "mfr_sku": "ZOW0132-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187322",
+    "staged_dw_sku": "DWZF-187282",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0093-05",
+    "mfr_sku": "ZOW0132-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187208",
+    "staged_dw_sku": "DWZF-187283",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0014-01",
+    "mfr_sku": "ZOW0132-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187085",
+    "staged_dw_sku": "DWZF-187284",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0095-03",
+    "mfr_sku": "ZOW0132-07",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187219",
+    "staged_dw_sku": "DWZF-187285",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 122,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0048-02",
+    "mfr_sku": "ZOW0132-08",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187229",
+    "staged_dw_sku": "DWZF-187286",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0139-01",
+    "mfr_sku": "ZOW0132-09",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187232",
+    "staged_dw_sku": "DWZF-187287",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 136,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 136,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-06",
+    "mfr_sku": "ZOW0132-10",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187326",
+    "staged_dw_sku": "DWZF-187288",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-07",
+    "mfr_sku": "ZOW0132-11",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187327",
+    "staged_dw_sku": "DWZF-187289",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0085-10",
+    "mfr_sku": "ZOW0133-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187330",
+    "staged_dw_sku": "DWZF-187160",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0086-02",
+    "mfr_sku": "ZOW0133-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187332",
+    "staged_dw_sku": "DWZF-187161",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 180,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 180,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0087-04",
+    "mfr_sku": "ZOW0133-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187337",
+    "staged_dw_sku": "DWZF-187162",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0087-05",
+    "mfr_sku": "ZOW0133-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187338",
+    "staged_dw_sku": "DWZF-187163",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 126,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 126,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-01",
+    "mfr_sku": "ZOW0134-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187341",
+    "staged_dw_sku": "DWZF-187164",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZRHW312916",
+    "mfr_sku": "ZOW0134-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187032",
+    "staged_dw_sku": "DWZF-187165",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 177,
-    "price_retail": 320.36,
-    "our_price": 320.36,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 320.36,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0014-02",
+    "mfr_sku": "ZOW0134-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187086",
+    "staged_dw_sku": "DWZF-187166",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0042-01",
+    "mfr_sku": "ZOW0134-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187093",
+    "staged_dw_sku": "DWZF-187167",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -4692,26 +4692,26 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0088-04",
+    "mfr_sku": "ZOW0135-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187344",
+    "staged_dw_sku": "DWZF-187168",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0140-02",
+    "mfr_sku": "ZOW0135-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187235",
+    "staged_dw_sku": "DWZF-187169",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -4726,60 +4726,60 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0016-01",
+    "mfr_sku": "ZOW0135-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187088",
+    "staged_dw_sku": "DWZF-187170",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0143-01",
+    "mfr_sku": "ZOW0135-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187239",
+    "staged_dw_sku": "DWZF-187171",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 250,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 250,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0089-03",
+    "mfr_sku": "ZOW0135-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187350",
+    "staged_dw_sku": "DWZF-187172",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 180,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 180,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0138-05",
+    "mfr_sku": "ZOW0135-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187186",
+    "staged_dw_sku": "DWZF-187173",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -4794,553 +4794,553 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0041-02",
+    "mfr_sku": "ZOW0136-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187092",
+    "staged_dw_sku": "DWZF-187174",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0147-01",
+    "mfr_sku": "ZOW0136-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187245",
+    "staged_dw_sku": "DWZF-187175",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 486,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 486,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0026-01",
+    "mfr_sku": "ZOW0136-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187248",
+    "staged_dw_sku": "DWZF-187176",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 158,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 158,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0059-02",
+    "mfr_sku": "ZOW0137-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187354",
+    "staged_dw_sku": "DWZF-187177",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 247,
-    "price_retail": 447.06,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 447.06,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0059-04",
+    "mfr_sku": "ZOW0137-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187356",
+    "staged_dw_sku": "DWZF-187178",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 176,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0060-01",
+    "mfr_sku": "ZOW0137-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187357",
+    "staged_dw_sku": "DWZF-187179",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 162,
-    "price_retail": 293.21,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 293.21,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0042-03",
+    "mfr_sku": "ZOW0137-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187095",
+    "staged_dw_sku": "DWZF-187180",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0067-03",
+    "mfr_sku": "ZOW0137-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187366",
+    "staged_dw_sku": "DWZF-187181",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 122,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 122,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0027-03",
+    "mfr_sku": "ZOW0138-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187251",
+    "staged_dw_sku": "DWZF-187182",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 106,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 106,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0114-01",
+    "mfr_sku": "ZOW0138-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187097",
+    "staged_dw_sku": "DWZF-187183",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 158,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 158,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0072-02",
+    "mfr_sku": "ZOW0138-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187371",
+    "staged_dw_sku": "DWZF-187184",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 422,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 422,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0123-03",
+    "mfr_sku": "ZOW0138-04",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187115",
+    "staged_dw_sku": "DWZF-187185",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 210,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 210,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0104-01",
+    "mfr_sku": "ZOW0138-05",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187258",
+    "staged_dw_sku": "DWZF-187186",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0053-02",
+    "mfr_sku": "ZOW0138-06",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187119",
+    "staged_dw_sku": "DWZF-187187",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0106-01",
+    "mfr_sku": "ZOW0139-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187261",
+    "staged_dw_sku": "DWZF-187232",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 136,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 136,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0110-01",
+    "mfr_sku": "ZOW0139-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187264",
+    "staged_dw_sku": "DWZF-187233",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 136,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 136,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0110-02",
+    "mfr_sku": "ZOW0140-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187265",
+    "staged_dw_sku": "DWZF-187234",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0058-01",
+    "mfr_sku": "ZOW0140-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187127",
+    "staged_dw_sku": "DWZF-187235",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
+    "price_trade": null,
+    "price_retail": 148,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 148,
     "sample_price": 4.25,
-    "note": "reprice to staged retail"
+    "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0110-05",
+    "mfr_sku": "ZOW0141-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187268",
+    "staged_dw_sku": "DWZF-187236",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 154,
+    "price_retail": 452,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 452,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0074-01",
+    "mfr_sku": "ZOW0142-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187129",
+    "staged_dw_sku": "DWZF-187237",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 196,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0111-01",
+    "mfr_sku": "ZOW0142-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187270",
+    "staged_dw_sku": "DWZF-187238",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 210,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 210,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0111-02",
+    "mfr_sku": "ZOW0143-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187271",
+    "staged_dw_sku": "DWZF-187239",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 250,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 250,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0112-02",
+    "mfr_sku": "ZOW0144-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187275",
+    "staged_dw_sku": "DWZF-187240",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 100,
+    "price_retail": 186,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 100,
+    "proposed_sellable_price": 186,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0112-03",
+    "mfr_sku": "ZOW0145-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187276",
+    "staged_dw_sku": "DWZF-187241",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 100,
+    "price_retail": 402,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 100,
+    "proposed_sellable_price": 402,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0077-01",
+    "mfr_sku": "ZOW0146-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187138",
+    "staged_dw_sku": "DWZF-187242",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-03",
+    "mfr_sku": "ZOW0146-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187281",
+    "staged_dw_sku": "DWZF-187243",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0077-02",
+    "mfr_sku": "ZOW0146-03",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187139",
+    "staged_dw_sku": "DWZF-187244",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 164,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 164,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-06",
+    "mfr_sku": "ZOW0147-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187284",
+    "staged_dw_sku": "DWZF-187245",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 486,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 486,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0132-10",
+    "mfr_sku": "ZOW0148-01",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187288",
+    "staged_dw_sku": "DWZF-187246",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 186,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 186,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0077-04",
+    "mfr_sku": "ZOW0148-02",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187141",
+    "staged_dw_sku": "DWZF-187247",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
     "price_trade": null,
-    "price_retail": 148,
+    "price_retail": 176,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 176,
     "sample_price": 4.25,
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0100-02",
+    "mfr_sku": "ZPAW05001",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187296",
+    "staged_dw_sku": "DWZF-187050",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 176,
+    "price_trade": 135,
+    "price_retail": 244.34,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 176,
+    "proposed_sellable_price": 244.34,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0102-01",
+    "mfr_sku": "ZPHA312595",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187300",
+    "staged_dw_sku": "DWZF-187007",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 196,
-    "our_price": null,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": 508.6,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 196,
+    "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0103-01",
+    "mfr_sku": "ZPHA312622",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187303",
+    "staged_dw_sku": "DWZF-187013",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
@@ -5355,264 +5355,264 @@
     "note": "reprice to staged retail (retail-harvested, no trade)"
   },
   {
-    "mfr_sku": "ZOW0078-01",
+    "mfr_sku": "ZQUA310993",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187142",
+    "staged_dw_sku": "DWZF-187024",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
-    "our_price": null,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 253.39,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZFOW312943",
+    "mfr_sku": "ZRHW312889",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187042",
+    "staged_dw_sku": "DWZF-187029",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 171,
-    "price_retail": null,
-    "our_price": 309.5,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": 508.6,
     "tariff": null,
-    "action": "HELD_NEEDS_PRICE",
-    "proposed_sellable_price": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
-    "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0036-01",
+    "mfr_sku": "ZRHW312890",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187307",
+    "staged_dw_sku": "DWZF-187011",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 200,
-    "our_price": null,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": 508.6,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 200,
+    "proposed_sellable_price": 508.6,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0078-02",
+    "mfr_sku": "ZRHW312897",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187143",
+    "staged_dw_sku": "DWZF-187014",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 148,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 148,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0036-02",
+    "mfr_sku": "ZRHW312899",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187308",
+    "staged_dw_sku": "DWZF-187004",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 257,
-    "price_retail": 465.16,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 465.16,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZGUV08004",
+    "mfr_sku": "ZRHW312903",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187049",
+    "staged_dw_sku": "DWZF-187017",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
-    "our_price": 376.47,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0079-05",
+    "mfr_sku": "ZRHW312906",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187150",
+    "staged_dw_sku": "DWZF-187012",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0080-02",
+    "mfr_sku": "ZRHW312907",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187152",
+    "staged_dw_sku": "DWZF-187000",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 164,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 164,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0016-03",
+    "mfr_sku": "ZRHW312910",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187090",
+    "staged_dw_sku": "DWZF-187006",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": 208,
-    "price_retail": 376.47,
-    "our_price": null,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 376.47,
+    "proposed_sellable_price": 390.95,
     "sample_price": 4.25,
     "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0095-05",
+    "mfr_sku": "ZRHW312914",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187221",
+    "staged_dw_sku": "DWZF-187023",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
-    "our_price": null,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": 320.36,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0079-04",
+    "mfr_sku": "ZRHW312916",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187149",
+    "staged_dw_sku": "DWZF-187032",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
-    "our_price": null,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": 320.36,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 320.36,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0092-05",
+    "mfr_sku": "ZTOT312747",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187203",
+    "staged_dw_sku": "DWZF-187003",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 122,
-    "our_price": null,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": 447.06,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 122,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0141-01",
+    "mfr_sku": "ZWOO311333",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187236",
+    "staged_dw_sku": "DWZF-187053",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 452,
+    "price_trade": 247,
+    "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 452,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0090-02",
+    "mfr_sku": "ZWOO311336",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187352",
+    "staged_dw_sku": "DWZF-187009",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 126,
+    "price_trade": 247,
+    "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 126,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0087-03",
+    "mfr_sku": "ZWOO311338",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187336",
+    "staged_dw_sku": "DWZF-187054",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
     "variant_count": 2,
-    "price_trade": null,
-    "price_retail": 154,
+    "price_trade": 247,
+    "price_retail": 447.06,
     "our_price": null,
     "tariff": null,
     "action": "REPRICE",
-    "proposed_sellable_price": 154,
+    "proposed_sellable_price": 447.06,
     "sample_price": 4.25,
-    "note": "reprice to staged retail (retail-harvested, no trade)"
+    "note": "reprice to staged retail"
   },
   {
-    "mfr_sku": "ZOW0042-02",
+    "mfr_sku": "ZWOO311346",
     "live_dw_sku": null,
-    "staged_dw_sku": "DWZF-187094",
+    "staged_dw_sku": "DWZF-187008",
     "joined": true,
     "has_product_variant": true,
     "has_sample_variant": true,
diff --git a/tk10873/zoffany_optionA_summary.json b/tk10873/zoffany_optionA_summary.json
index 121ca25..cc159b5 100644
--- a/tk10873/zoffany_optionA_summary.json
+++ b/tk10873/zoffany_optionA_summary.json
@@ -1,7 +1,7 @@
 {
   "ticket": "TK-10873",
   "epic": "TK-10874",
-  "generated_at": "2026-08-30T16:22:38.411Z",
+  "generated_at": "2026-08-30T16:35:57.601Z",
   "read_only": true,
   "vendor": "Zoffany",
   "active_total": 331,

← 98e4c8e TK-10873 cycle1: HELD price-recovery findings (3 rows stay h  ·  back to Sanderson Onboard  ·  TK-10873 cycle3: DRY-RUN reprice runbook + independent sanit 2007d57 →