[object Object]

← back to Dw Five Field Step0

PR<->Pointe/JD cost-load dry-run: match script + diff (371 SKUs unlock, READ-ONLY, write gated)

ae22724672c2ffca1004856a06901d069520f566 · 2026-06-21 19:36:09 -0700 · Steve Abrams

Files touched

Diff

commit ae22724672c2ffca1004856a06901d069520f566
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Sun Jun 21 19:36:09 2026 -0700

    PR<->Pointe/JD cost-load dry-run: match script + diff (371 SKUs unlock, READ-ONLY, write gated)
---
 match-pr-pointe-cost.py      |  113 +
 out/pr-pointe-cost-diff.json | 8869 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 8982 insertions(+)

diff --git a/match-pr-pointe-cost.py b/match-pr-pointe-cost.py
new file mode 100644
index 0000000..077bb6e
--- /dev/null
+++ b/match-pr-pointe-cost.py
@@ -0,0 +1,113 @@
+#!/usr/bin/env python3
+"""
+DRY-RUN: Match DW Phillipe-Romano / Los-Angeles-Fabrics private-label SKUs to the
+Pointe -> Justin David vendor price list and produce a cost-load diff.
+
+READ-ONLY. Writes NO cost to dw_unified / Shopify. The actual cost write is gated
+for Steve after he reviews the unlock count.
+
+MATCH KEY (the link between PR private-label SKUs and the upstream Pointe pattern):
+  live `shopify_products.mfr_sku` of the form 'JD-PATTERN-COLOR'
+    -> strip 'JD-', uppercase, drop all non-alphanumerics, concat(pattern+color)
+  == price-list `jd` field 'Pattern/Color' normalized the same way.
+The price list cross-references `jd` (Justin David name) <-> `pointe` (manufacturer
+Pointe name); we key on the JD side because that is what the live mfr_sku carries.
+
+  NOTE: command54_catalog.original_name (AJA/LAURUS...) is a DIFFERENT upstream and
+  is NOT priced by this Pointe/JD list (0 overlap) -- do not use it here.
+
+DTD-locked policy (panel 3/3, 2026-06-21):
+  Q1 cost = cut_yd_price ONLY (tariff tracked separately as pass-through).
+  Q2 load cost ONLY to priced STANDARD/ACTIVE rows; hold DISCONTINUED/CUSTOM/MTO.
+  Q3 retail = cost / 0.65 / 0.85.
+  Q4 the dw_unified cost-write stays gated for Steve.
+
+NEVER expose Pointe / Justin David / Command54 customer-facing (private label).
+"""
+import json, re, subprocess, sys
+from collections import Counter
+
+HERE = "/Users/stevestudio2/Projects/dw-five-field-step0"
+PRICE = f"{HERE}/vendor-pricelists/pointe-jd-prices.json"
+OUT = f"{HERE}/out/pr-pointe-cost-diff.json"
+
+alnum = lambda s: re.sub(r'[^A-Z0-9]', '', (s or '').upper())
+nstat = lambda s: (s or '').strip().upper()
+
+
+def live_rows():
+    sql = ("select shopify_id||'|'||coalesce(mfr_sku,'')||'|'||coalesce(dw_sku,'')"
+           "||'|'||coalesce(vendor,'')||'|'||coalesce(status,'')||'|'"
+           "||coalesce(cost::text,'')||'|'||replace(coalesce(title,''),'|','')"
+           " from shopify_products where mfr_sku like 'JD-%';")
+    out = subprocess.check_output(["psql", "-d", "dw_unified", "-tAc", sql], text=True)
+    rows = []
+    for line in out.splitlines():
+        p = line.split('|')
+        if len(p) < 7:
+            continue
+        rows.append(dict(shopify_id=p[0], mfr_sku=p[1], dw_sku=p[2], vendor=p[3],
+                         status=p[4], cost=p[5], title=p[6]))
+    return rows
+
+
+def main():
+    d = json.load(open(PRICE))
+    idx = {}
+    for r in d:
+        if not r.get('jd') or '/' not in r['jd']:
+            continue
+        p, c = r['jd'].split('/', 1)
+        idx.setdefault(alnum(p) + alnum(c), []).append(r)
+
+    rows = live_rows()
+    lkey = lambda m: alnum(m[3:] if m.upper().startswith('JD-') else m)
+
+    matched, unmatched = [], []
+    for row in rows:
+        pr = idx.get(lkey(row['mfr_sku']))
+        if pr:
+            best = sorted(pr, key=lambda r: (1 if r.get('cut_yd_price') else 0,
+                          {'STANDARD': 3, 'ACTIVE': 2}.get(nstat(r['status']), 0)),
+                          reverse=True)[0]
+            matched.append((row, best))
+        else:
+            unmatched.append(row['mfr_sku'])
+
+    out_rows = []
+    for r, b in matched:
+        st, cost, tariff = nstat(b['status']), b.get('cut_yd_price'), b.get('tariff')
+        load = bool(cost and st in ('STANDARD', 'ACTIVE'))
+        out_rows.append(dict(
+            shopify_id=r['shopify_id'], mfr_sku=r['mfr_sku'], dw_sku=r['dw_sku'] or None,
+            vendor=r['vendor'], shopify_status=r['status'], current_cost=r['cost'] or None,
+            private_label_title=r['title'], matched_jd=b.get('jd'), matched_pointe=b.get('pointe'),
+            pointe_status=b.get('status'), type=b.get('type'),
+            proposed_cost=cost, tariff_passthrough=tariff,
+            proposed_retail=round(cost / 0.65 / 0.85, 2) if cost else None,
+            will_load=load,
+            block_reason=None if load else ('no_price' if not cost else 'discontinued_or_mto'),
+        ))
+
+    unlock = [x for x in out_rows if x['will_load']]
+    blocked = [x for x in out_rows if not x['will_load']]
+    costs = [x['proposed_cost'] for x in unlock]
+    retails = [x['proposed_retail'] for x in unlock]
+    summary = dict(
+        generated='2026-06-21', mode='READ-ONLY dry-run (cost write GATED for Steve)',
+        live_jd_mfr_rows=len(rows), matched=len(matched), unmatched=len(unmatched),
+        unlock_priced_standard_active=len(unlock),
+        unlock_currently_active_and_nocost_in_shopify=len(
+            [x for x in unlock if x['shopify_status'] == 'ACTIVE' and not x['current_cost']]),
+        blocked_total=len(blocked),
+        blocked_breakdown=dict(Counter(x['block_reason'] for x in blocked)),
+        cost_range=[min(costs), max(costs)] if costs else None,
+        retail_range=[min(retails), max(retails)] if retails else None,
+        unlock_vendor_split=dict(Counter(x['vendor'] for x in unlock)),
+    )
+    json.dump(dict(summary=summary, rows=out_rows), open(OUT, 'w'), indent=1)
+    print(json.dumps(summary, indent=1))
+
+
+if __name__ == '__main__':
+    main()
diff --git a/out/pr-pointe-cost-diff.json b/out/pr-pointe-cost-diff.json
new file mode 100644
index 0000000..b8b7259
--- /dev/null
+++ b/out/pr-pointe-cost-diff.json
@@ -0,0 +1,8869 @@
+{
+ "summary": {
+  "generated": "2026-06-21",
+  "mode": "READ-ONLY dry-run (cost write GATED for Steve)",
+  "match_key": "live shopify_products.mfr_sku (JD-PATTERN-COLOR) -> alnum-concat(pattern+color) == price-list `jd` field (Pattern/Color) alnum-concat",
+  "price_list": "vendor-pricelists/pointe-jd-prices.json (3,860 rows, source email 19da989c3d925ba4 from samc@justindavid.com)",
+  "live_jd_mfr_rows": 2095,
+  "matched": 485,
+  "unmatched": 1610,
+  "unlock_priced_standard_active": 371,
+  "unlock_currently_active_and_nocost_in_shopify": 279,
+  "blocked_total": 114,
+  "blocked_breakdown": {
+   "discontinued_or_mto": 114
+  },
+  "cost_range": [
+   26.5,
+   59.5
+  ],
+  "retail_range": [
+   47.96,
+   107.69
+  ],
+  "unlock_vendor_split": {
+   "Los Angeles Fabrics": 371
+  },
+  "dtd_decisions": {
+   "Q1_tariff": "A: cost = cut_yd_price ONLY; tariff tracked separately as pass-through (3/3)",
+   "Q2_match_confidence": "A: write cost ONLY to 371 priced STANDARD/ACTIVE; hold the 114 (3/3)",
+   "Q3_retail": "A: standard DW retail = cost/0.65/0.85 (3/3)",
+   "Q4_gating": "A: cost-write stays GATED for Steve, no autonomous write (3/3)"
+  },
+  "note": "Live JD private-label products are under Shopify vendor \"Los Angeles Fabrics\" (and a few \"Phillipe Romano\"). NEVER expose Pointe/Justin David/Command54 customer-facing."
+ },
+ "sample_10": [
+  {
+   "mfr_sku": "JD-AURA-COUNTRY-ROAD",
+   "title": "Halcyon - Pathways \u00a6 Commercial Fabric \u00a6",
+   "matched_jd": "Aura/Country Road",
+   "matched_pointe": "BEYOND SYNERGY/MUSHROOM",
+   "status": "STANDARD",
+   "cost": 41.5,
+   "retail": 75.11,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-FRANCISCAN-GOLDEN-THREAD",
+   "title": "Mission - Filigree \u00a6 Commercial Fabric \u00a6",
+   "matched_jd": "Franciscan/Golden Thread",
+   "matched_pointe": "SKINTEX SF RETRO/CUSTARD",
+   "status": "STANDARD",
+   "cost": 43.5,
+   "retail": 78.73,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-FRANCISCAN-MEYER-LEMON",
+   "title": "Mission - Keylime \u00a6 Commercial Fabric \u00a6 ",
+   "matched_jd": "Franciscan/Meyer Lemon",
+   "matched_pointe": "SKINTEX SF RETRO/SPROUT",
+   "status": "STANDARD",
+   "cost": 43.5,
+   "retail": 78.73,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-FRANCISCAN-HARISSA",
+   "title": "Mission - Pimento \u00a6 Commercial Fabric \u00a6 ",
+   "matched_jd": "Franciscan/Harissa",
+   "matched_pointe": "SKINTEX SF RETRO/GALLERY",
+   "status": "STANDARD",
+   "cost": 43.5,
+   "retail": 78.73,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-FRANCISCAN-MONACO",
+   "title": "Mission - Riviera \u00a6 Commercial Fabric \u00a6 ",
+   "matched_jd": "Franciscan/Monaco",
+   "matched_pointe": "SKINTEX SF RETRO/MINERAL",
+   "status": "STANDARD",
+   "cost": 43.5,
+   "retail": 78.73,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-FRANCISCAN-SHADOW-PUPPET",
+   "title": "Mission - Silhouette \u00a6 Commercial Fabric",
+   "matched_jd": "Franciscan/Shadow Puppet",
+   "matched_pointe": "SKINTEX SF RETRO/DUSK",
+   "status": "STANDARD",
+   "cost": 43.5,
+   "retail": 78.73,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-FRANCISCAN-BASKET",
+   "title": "Mission - Wicker \u00a6 Commercial Fabric \u00a6 L",
+   "matched_jd": "Franciscan/Basket",
+   "matched_pointe": "SKINTEX SF RETRO/MUDSLIDE",
+   "status": "STANDARD",
+   "cost": 43.5,
+   "retail": 78.73,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-CONFLUENCE-LACHLAN",
+   "title": "Estuary - Tidepool \u00a6 Commercial Fabric \u00a6",
+   "matched_jd": "Confluence/Lachlan",
+   "matched_pointe": "GALLERIA SF HAMILTON/PORCELAIN",
+   "status": "STANDARD",
+   "cost": 32.5,
+   "retail": 58.82,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-ESCALANTE-ALABASTER",
+   "title": "Climbing - Limestone \u00a6 Commercial Fabric",
+   "matched_jd": "Escalante/Alabaster",
+   "matched_pointe": "SKINTEX SF EXOTIC/VANILLA",
+   "status": "STANDARD",
+   "cost": 41.5,
+   "retail": 75.11,
+   "shopify_status": "ACTIVE"
+  },
+  {
+   "mfr_sku": "JD-ESCALANTE-SUMMER-SUN",
+   "title": "Climbing - Sol \u00a6 Commercial Fabric \u00a6 Los",
+   "matched_jd": "Escalante/Summer Sun",
+   "matched_pointe": "SKINTEX SF EXOTIC/CINNABAR",
+   "status": "STANDARD",
+   "cost": 41.5,
+   "retail": 75.11,
+   "shopify_status": "ACTIVE"
+  }
+ ],
+ "rows": [
+  {
+   "shopify_id": "gid://shopify/Product/7795700367411",
+   "mfr_sku": "JD-ANNENDALE-CANCUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Lagoon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Cancun",
+   "matched_pointe": "GALLERIA TRIPOD/SURF",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700826163",
+   "mfr_sku": "JD-ANNENDALE-LANDSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Panorama Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Landscape",
+   "matched_pointe": "GALLERIA TRIPOD/REFRESH",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441805875",
+   "mfr_sku": "JD-AURA-COUNTRY-ROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pathways \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Country Road",
+   "matched_pointe": "BEYOND SYNERGY/MUSHROOM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695419443",
+   "mfr_sku": "JD-ALEUTIAN-ABYSS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Trench Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Abyss",
+   "matched_pointe": "SKINTEX SF ASPECT/INDIGO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580086835",
+   "mfr_sku": "JD-FRANCISCAN-GOLDEN-THREAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Filigree \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Golden Thread",
+   "matched_pointe": "SKINTEX SF RETRO/CUSTARD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580185139",
+   "mfr_sku": "JD-FRANCISCAN-MEYER-LEMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Keylime \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Meyer Lemon",
+   "matched_pointe": "SKINTEX SF RETRO/SPROUT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580119603",
+   "mfr_sku": "JD-FRANCISCAN-HARISSA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Pimento \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Harissa",
+   "matched_pointe": "SKINTEX SF RETRO/GALLERY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580217907",
+   "mfr_sku": "JD-FRANCISCAN-MONACO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Riviera \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Monaco",
+   "matched_pointe": "SKINTEX SF RETRO/MINERAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580250675",
+   "mfr_sku": "JD-FRANCISCAN-SHADOW-PUPPET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Silhouette \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Shadow Puppet",
+   "matched_pointe": "SKINTEX SF RETRO/DUSK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579922995",
+   "mfr_sku": "JD-FRANCISCAN-ASHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Tinder \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Asher",
+   "matched_pointe": "SKINTEX SF RETRO/SLEET",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579988531",
+   "mfr_sku": "JD-FRANCISCAN-BASKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Wicker \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Basket",
+   "matched_pointe": "SKINTEX SF RETRO/MUDSLIDE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696107571",
+   "mfr_sku": "JD-ALEUTIAN-RED-TOMATO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Hibiscus Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Red Tomato",
+   "matched_pointe": "SKINTEX SF ASPECT/CORAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561638451",
+   "mfr_sku": "JD-CONFLUENCE-LACHLAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Tidepool \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Lachlan",
+   "matched_pointe": "GALLERIA SF HAMILTON/PORCELAIN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280918067",
+   "mfr_sku": "JD-BALBOA-HERITAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ancestry Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Heritage",
+   "matched_pointe": "CONTESSA SIENA/CHAMPAGNE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281016371",
+   "mfr_sku": "JD-BALBOA-MARSTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Atoll Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Marston",
+   "matched_pointe": "CONTESSA SIENA/MERLOT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281671731",
+   "mfr_sku": "JD-BALBOA-WORLDBEAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Calypso Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Worldbeat",
+   "matched_pointe": "CONTESSA SIENA/ORANGE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280623155",
+   "mfr_sku": "JD-BALBOA-ANDALUSIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Castanet Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Andalusian",
+   "matched_pointe": "CONTESSA SIENA/BLUE JAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281573427",
+   "mfr_sku": "JD-BALBOA-SPANISH-LEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Cordovan Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Spanish Leather",
+   "matched_pointe": "CONTESSA SIENA/TRUFFLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281638963",
+   "mfr_sku": "JD-BALBOA-TOLEDO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Damascus Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Toledo",
+   "matched_pointe": "CONTESSA SIENA/FUDGE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574352435",
+   "mfr_sku": "JD-ESCALANTE-SEAPORT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Harbor \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Seaport",
+   "matched_pointe": "SKINTEX SF EXOTIC/COBALT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574090291",
+   "mfr_sku": "JD-ESCALANTE-ALABASTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Limestone \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Alabaster",
+   "matched_pointe": "SKINTEX SF EXOTIC/VANILLA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574254131",
+   "mfr_sku": "JD-ESCALANTE-JUNGLE-NIGHTS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Nocturnal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Jungle Nights",
+   "matched_pointe": "SKINTEX SF EXOTIC/EBONY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574385203",
+   "mfr_sku": "JD-ESCALANTE-SUMMER-SUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Sol \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Summer Sun",
+   "matched_pointe": "SKINTEX SF EXOTIC/CINNABAR",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574155827",
+   "mfr_sku": "JD-ESCALANTE-BONFIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Sunset \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Bonfire",
+   "matched_pointe": "SKINTEX SF EXOTIC/LIPSTICK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574188595",
+   "mfr_sku": "JD-ESCALANTE-CLAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Terracotta \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Clay",
+   "matched_pointe": "SKINTEX SF EXOTIC/FAWN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574221363",
+   "mfr_sku": "JD-ESCALANTE-GRAPEVINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Trellis \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Grapevine",
+   "matched_pointe": "SKINTEX SF EXOTIC/PURPLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281606195",
+   "mfr_sku": "JD-BALBOA-TIMKEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Bearing Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Timken",
+   "matched_pointe": "CONTESSA SIENA/RUSTIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435612723",
+   "mfr_sku": "JD-ANNENDALE-STAMPED-CONCRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Tsunami \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Stamped Concrete",
+   "matched_pointe": "GALLERIA TRIPOD/CIRRUS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286226483",
+   "mfr_sku": "JD-BELMONT-THUNDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monsoon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Thunder",
+   "matched_pointe": "SKINTEX SF SERENITY/MIDNIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285734963",
+   "mfr_sku": "JD-BELMONT-CROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Royalty Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Crown",
+   "matched_pointe": "SKINTEX SF SERENITY/SORBET",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544009267",
+   "mfr_sku": "JD-BROADCAST-CAPITOL-HILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Summit \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Capitol Hill",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/MUSLIN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558197811",
+   "mfr_sku": "JD-CHAINMAIL-ANCHORS-AWEIGH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Voyager \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Anchors Aweigh",
+   "matched_pointe": "TEKLOOM WICKER/MARINE",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435481651",
+   "mfr_sku": "JD-ANNENDALE-ELUSIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Mirage \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Elusive",
+   "matched_pointe": "GALLERIA TRIPOD/COCONUT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442723379",
+   "mfr_sku": "JD-BALBOA-ADOBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Terracotta \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Adobe",
+   "matched_pointe": "CONTESSA SIENA/CLAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558427187",
+   "mfr_sku": "JD-CHAINMAIL-LINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Tarp \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Lino",
+   "matched_pointe": "TEKLOOM WICKER/SHELL",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443411507",
+   "mfr_sku": "JD-BALBOA-PANAMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Sombrero \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Panama",
+   "matched_pointe": "CONTESSA SIENA/CHINA BLUE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693846579",
+   "mfr_sku": "JD-ALASTAIR-ALMONDINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Vanilla Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Almondine",
+   "matched_pointe": "TEKLOOM REVELRY/FOSSIL",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696402483",
+   "mfr_sku": "JD-ALEUTIAN-TECHNO-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Graphite Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Techno Grey",
+   "matched_pointe": "SKINTEX SF ASPECT/POWDER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696468019",
+   "mfr_sku": "JD-ALEUTIAN-VEIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Gossamer Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Veil",
+   "matched_pointe": "SKINTEX SF ASPECT/CLOUD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698434099",
+   "mfr_sku": "JD-AMAZONIA-MAJESTIC-PURPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Royalty Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Majestic Purple",
+   "matched_pointe": "NEW WAVE MAMBA II/AUBERGINE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700269107",
+   "mfr_sku": "JD-ANNENDALE-ADMIRAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Seafarer Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Admiral",
+   "matched_pointe": "GALLERIA TRIPOD/STORM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457370675",
+   "mfr_sku": "JD-BOULEVARD-DOWNTOWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Cityscape \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Downtown",
+   "matched_pointe": "GALLERIA STITCH/MYSTIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698073651",
+   "mfr_sku": "JD-AMAZONIA-GLITTERATI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Spectra Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Glitterati",
+   "matched_pointe": "NEW WAVE MAMBA II/PARCHMENT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560622643",
+   "mfr_sku": "JD-COACHELLA-COVEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Mystique \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Coven",
+   "matched_pointe": "GALLERIA KALOONG/RAVEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583855155",
+   "mfr_sku": "JD-GRIFFIN-CHARIOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Galleon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Chariot",
+   "matched_pointe": "NEW WAVE TRAVERSE/HARVEST",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583920691",
+   "mfr_sku": "JD-GRIFFIN-CORNUCOPIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Harvest \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Cornucopia",
+   "matched_pointe": "NEW WAVE TRAVERSE/RHUBARB",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585559091",
+   "mfr_sku": "JD-GRIFFIN-ROSETTA-STONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Hieroglyph \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Rosetta Stone",
+   "matched_pointe": "NEW WAVE TRAVERSE/GRAPHITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277182515",
+   "mfr_sku": "JD-AURA-COYOTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jackal Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Coyote",
+   "matched_pointe": "BEYOND SYNERGY/REED",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280655923",
+   "mfr_sku": "JD-BALBOA-CACTUS-GARDEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Succulent Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Cactus Garden",
+   "matched_pointe": "CONTESSA SIENA/WILLOW",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280557619",
+   "mfr_sku": "JD-BALBOA-ADOBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Terracotta Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Adobe",
+   "matched_pointe": "CONTESSA SIENA/CLAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585526323",
+   "mfr_sku": "JD-GRIFFIN-ROOST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Perch \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Roost",
+   "matched_pointe": "NEW WAVE TRAVERSE/CHOCOLATE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585591859",
+   "mfr_sku": "JD-GRIFFIN-SAHARA-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Sirocco \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Sahara Sand",
+   "matched_pointe": "NEW WAVE TRAVERSE/CREAM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280852531",
+   "mfr_sku": "JD-BALBOA-EUCALYPTUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Koala Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Eucalyptus",
+   "matched_pointe": "CONTESSA SIENA/DILL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281245747",
+   "mfr_sku": "JD-BALBOA-PANAMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Sombrero Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Panama",
+   "matched_pointe": "CONTESSA SIENA/CHINA BLUE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281409587",
+   "mfr_sku": "JD-BALBOA-PRADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Junglepath Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Prado",
+   "matched_pointe": "CONTESSA SIENA/CHESTNUT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282654771",
+   "mfr_sku": "JD-BANDOLIER-COPPERTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Emberglow Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Coppertop",
+   "matched_pointe": "SKINTEX SF RHYME/PENNY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282458163",
+   "mfr_sku": "JD-BANDOLIER-BUTTERCUP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Marigold Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Buttercup",
+   "matched_pointe": "SKINTEX SF RHYME/CASHEW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285800499",
+   "mfr_sku": "JD-BELMONT-FIELDSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Fieldstone",
+   "matched_pointe": "SKINTEX SF SERENITY/CHINA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285833267",
+   "mfr_sku": "JD-BELMONT-FROST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Icing Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Frost",
+   "matched_pointe": "SKINTEX SF SERENITY/HAZE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285866035",
+   "mfr_sku": "JD-BELMONT-GOLDEN-RETRIEVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Amber Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Golden Retriever",
+   "matched_pointe": "SKINTEX SF SERENITY/CHARDONNAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286128179",
+   "mfr_sku": "JD-BELMONT-SATCHEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Caramel Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Satchel",
+   "matched_pointe": "SKINTEX SF SERENITY/ETHIOPIA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695779891",
+   "mfr_sku": "JD-ALEUTIAN-ESPRESSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Kona Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Espresso",
+   "matched_pointe": "SKINTEX SF ASPECT/CHARCOAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577006643",
+   "mfr_sku": "JD-FEDERICO-GLAMOUR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Radiance \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Glamour",
+   "matched_pointe": "NEW WAVE ARCADIA/GORGE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295106611",
+   "mfr_sku": "JD-BIJOU-COLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Kola Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Cola",
+   "matched_pointe": "SKINTEX SF POP/CHOCOLATE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433286195",
+   "mfr_sku": "JD-ALEUTIAN-AUSTERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Spartan \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Austere",
+   "matched_pointe": "SKINTEX SF ASPECT/CLIPPER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433351731",
+   "mfr_sku": "JD-ALEUTIAN-BURLAP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Hessian \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Burlap",
+   "matched_pointe": "SKINTEX SF ASPECT/SAND",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443968563",
+   "mfr_sku": "JD-BALBOA-WORLDBEAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Calypso \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Worldbeat",
+   "matched_pointe": "CONTESSA SIENA/ORANGE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561507379",
+   "mfr_sku": "JD-CONFLUENCE-COOPER-CREEK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Estuary \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Cooper Creek",
+   "matched_pointe": "GALLERIA SF HAMILTON/STREAM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576875571",
+   "mfr_sku": "JD-FEDERICO-BLACKBERRY-BLISS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Javaplum \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Blackberry Bliss",
+   "matched_pointe": "NEW WAVE ARCADIA/BORDEAUX",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585624627",
+   "mfr_sku": "JD-GRIFFIN-SUN-GOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Ra \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Sun God",
+   "matched_pointe": "NEW WAVE TRAVERSE/SADDLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560917555",
+   "mfr_sku": "JD-COACHELLA-RED-DESERT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Arid \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Red Desert",
+   "matched_pointe": "GALLERIA KALOONG/GOJI",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583789619",
+   "mfr_sku": "JD-GRIFFIN-BARCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Cutter \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Barco",
+   "matched_pointe": "NEW WAVE TRAVERSE/LATTE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452684851",
+   "mfr_sku": "JD-BIJOU-BING-CHERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Pomegranate \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Bing Cherry",
+   "matched_pointe": "SKINTEX SF POP/SALSA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696238643",
+   "mfr_sku": "JD-ALEUTIAN-SILT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Alluvium Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Silt",
+   "matched_pointe": "SKINTEX SF ASPECT/PORCELAIN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695517747",
+   "mfr_sku": "JD-ALEUTIAN-ALOE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Succulent Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Aloe",
+   "matched_pointe": "SKINTEX SF ASPECT/CAPRI",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297138227",
+   "mfr_sku": "JD-BODIE-OBSCURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Shaded Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Obscure",
+   "matched_pointe": "NEW WAVE POSH/MOCHA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285603891",
+   "mfr_sku": "JD-BELMONT-BROWN-TAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Bitumen Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Brown Tar",
+   "matched_pointe": "SKINTEX SF SERENITY/COCOA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286193715",
+   "mfr_sku": "JD-BELMONT-TAN-TEXTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Cinnamon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Tan Texture",
+   "matched_pointe": "SKINTEX SF SERENITY/RYE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286029875",
+   "mfr_sku": "JD-BELMONT-OVERALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Denim Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Overall",
+   "matched_pointe": "SKINTEX SF SERENITY/LAGOON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285931571",
+   "mfr_sku": "JD-BELMONT-HALF-DOLLAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Doubloon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Half Dollar",
+   "matched_pointe": "SKINTEX SF SERENITY/SILVER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286292019",
+   "mfr_sku": "JD-BELMONT-WROUGHT-IRON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Grillage Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Wrought Iron",
+   "matched_pointe": "SKINTEX SF SERENITY/SEAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285767731",
+   "mfr_sku": "JD-BELMONT-EMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Ember",
+   "matched_pointe": "SKINTEX SF SERENITY/SAFFRON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448326707",
+   "mfr_sku": "JD-BELMONT-FIELDSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Fieldstone",
+   "matched_pointe": "SKINTEX SF SERENITY/CHINA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285636659",
+   "mfr_sku": "JD-BELMONT-CANARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Mango Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Canary",
+   "matched_pointe": "SKINTEX SF SERENITY/MORNING GLORY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285571123",
+   "mfr_sku": "JD-BELMONT-BROWN-SIENNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Ochre Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Brown Sienna",
+   "matched_pointe": "SKINTEX SF SERENITY/ARROYO",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285669427",
+   "mfr_sku": "JD-BELMONT-CARAMEL-CORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Popcorn Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Caramel Corn",
+   "matched_pointe": "SKINTEX SF SERENITY/MOREL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285898803",
+   "mfr_sku": "JD-BELMONT-GRASS-SKIRT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Raffia Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Grass Skirt",
+   "matched_pointe": "SKINTEX SF SERENITY/SPRING",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286259251",
+   "mfr_sku": "JD-BELMONT-WHITE-WATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Rapids Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/White Water",
+   "matched_pointe": "SKINTEX SF SERENITY/PLATINUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285472819",
+   "mfr_sku": "JD-BELMONT-BLUE-THRUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Songbird Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Blue Thrush",
+   "matched_pointe": "SKINTEX SF SERENITY/IRIS",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286160947",
+   "mfr_sku": "JD-BELMONT-SWEET-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Tangerine Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Sweet Orange",
+   "matched_pointe": "SKINTEX SF SERENITY/SUNBURST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285997107",
+   "mfr_sku": "JD-BELMONT-HORSE-FEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Trot Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Horse Feather",
+   "matched_pointe": "SKINTEX SF SERENITY/IRISH MIST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285538355",
+   "mfr_sku": "JD-BELMONT-BRIAR-PATCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Undergrowth Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Briar Patch",
+   "matched_pointe": "SKINTEX SF SERENITY/FENNEL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286062643",
+   "mfr_sku": "JD-BELMONT-ROOT-BEER-FLOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Vanilla Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Root Beer Float",
+   "matched_pointe": "SKINTEX SF SERENITY/CURRY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283146291",
+   "mfr_sku": "JD-BANDOLIER-MOSSY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Bromeliad Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Mossy",
+   "matched_pointe": "SKINTEX SF RHYME/WILLOW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568421427",
+   "mfr_sku": "JD-DOLOMIEU-FLOWER-AGATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Orchid \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Flower Agate",
+   "matched_pointe": "GALLERIA SF TRESOR/OAT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283047987",
+   "mfr_sku": "JD-BANDOLIER-DIAMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Brilliant Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Diamond",
+   "matched_pointe": "SKINTEX SF RHYME/FROST",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283080755",
+   "mfr_sku": "JD-BANDOLIER-ELIXIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Nectar Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Elixir",
+   "matched_pointe": "SKINTEX SF RHYME/AQUA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282851379",
+   "mfr_sku": "JD-BANDOLIER-DARK-ALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Shadows Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Dark Alley",
+   "matched_pointe": "SKINTEX SF RHYME/SMOKE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700465715",
+   "mfr_sku": "JD-ANNENDALE-COBALT-TURQUOISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Aquatic Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Cobalt Turquoise",
+   "matched_pointe": "GALLERIA TRIPOD/AEGEAN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700990003",
+   "mfr_sku": "JD-ANNENDALE-TIN-LIZZIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Roadster Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Tin Lizzie",
+   "matched_pointe": "GALLERIA TRIPOD/MIST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700727859",
+   "mfr_sku": "JD-ANNENDALE-FERVENT-BRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Trumpet Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Fervent Brass",
+   "matched_pointe": "GALLERIA TRIPOD/MARSH",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455896115",
+   "mfr_sku": "JD-BOLIVAR-PRUNE-JUICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Molasses \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Prune Juice",
+   "matched_pointe": "NUVTEX CROCO/BORDEAUX",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281540659",
+   "mfr_sku": "JD-BALBOA-SAVANNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Veldt Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Savanna",
+   "matched_pointe": "CONTESSA SIENA/FLAX",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580021299",
+   "mfr_sku": "JD-FRANCISCAN-CAF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Latte \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Caf\u00e9",
+   "matched_pointe": "SKINTEX SF RETRO/ARABICA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282228787",
+   "mfr_sku": "JD-BANDOLIER-ADOBE-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Umber Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Adobe Brown",
+   "matched_pointe": "SKINTEX SF RHYME/ARROYO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700924467",
+   "mfr_sku": "JD-ANNENDALE-STAMPED-CONCRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Tsunami Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Stamped Concrete",
+   "matched_pointe": "GALLERIA TRIPOD/CIRRUS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700596787",
+   "mfr_sku": "JD-ANNENDALE-CRUISE-LINER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Yacht Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Cruise Liner",
+   "matched_pointe": "GALLERIA TRIPOD/STERLING",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694010419",
+   "mfr_sku": "JD-ALASTAIR-CORAL-GLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Sunrise Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Coral Glow",
+   "matched_pointe": "TEKLOOM REVELRY/PERSIMMON",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294713395",
+   "mfr_sku": "JD-BIJOU-ANGEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Halcyon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Angel",
+   "matched_pointe": "SKINTEX SF POP/WHITE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279017523",
+   "mfr_sku": "JD-AURA-SERENGETTI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Acacia Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Serengetti",
+   "matched_pointe": "BEYOND SYNERGY/STEM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433548339",
+   "mfr_sku": "JD-ALEUTIAN-RED-TOMATO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Hibiscus \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Red Tomato",
+   "matched_pointe": "SKINTEX SF ASPECT/CORAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457534515",
+   "mfr_sku": "JD-BOULEVARD-RANDOLPH-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Dovetail \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Randolph Gray",
+   "matched_pointe": "GALLERIA STITCH/GRIS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457403443",
+   "mfr_sku": "JD-BOULEVARD-GRAND-CANAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Venetian \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Grand Canal",
+   "matched_pointe": "GALLERIA STITCH/SEA BLUE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561409075",
+   "mfr_sku": "JD-CONFLUENCE-ARMORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Arsenal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Armory",
+   "matched_pointe": "GALLERIA SF HAMILTON/GRAPHITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452652083",
+   "mfr_sku": "JD-BIJOU-ANGEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Halcyon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Angel",
+   "matched_pointe": "SKINTEX SF POP/WHITE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452717619",
+   "mfr_sku": "JD-BIJOU-BRIGHT-SKY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cerulean \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Bright Sky",
+   "matched_pointe": "SKINTEX SF POP/LAPIS BLUE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566848563",
+   "mfr_sku": "JD-DIEGUITO-BULLS-BLOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Sangria \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Bull's Blood",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/CARMINE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566914099",
+   "mfr_sku": "JD-DIEGUITO-DEERHUNTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Bushwhack \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Deerhunter",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/CANYON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557902899",
+   "mfr_sku": "JD-CESTINO-OAT-BRAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Sisal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Oat Bran",
+   "matched_pointe": "GALLERIA SF NEVIS/BRANCH",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557739059",
+   "mfr_sku": "JD-CESTINO-NEWSPRINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Tabloid \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Newsprint",
+   "matched_pointe": "GALLERIA SF NEVIS/FOG",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557575219",
+   "mfr_sku": "JD-CESTINO-LIGHTNING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Thunder \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Lightning",
+   "matched_pointe": "GALLERIA SF NEVIS/TINSEL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432696371",
+   "mfr_sku": "JD-ALASTAIR-ALMONDINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Vanilla \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Almondine",
+   "matched_pointe": "TEKLOOM REVELRY/FOSSIL",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297465907",
+   "mfr_sku": "JD-BODIE-VAGABOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Nomad Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Vagabond",
+   "matched_pointe": "NEW WAVE POSH/LATTE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434662451",
+   "mfr_sku": "JD-AMAZONIA-DRAGONS-SCALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Iguana \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Dragon's Scale",
+   "matched_pointe": "NEW WAVE MAMBA II/WILLOW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561605683",
+   "mfr_sku": "JD-CONFLUENCE-HAYES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Sisal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Hayes",
+   "matched_pointe": "GALLERIA SF HAMILTON/BISQUE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448293939",
+   "mfr_sku": "JD-BELMONT-EMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Ember",
+   "matched_pointe": "SKINTEX SF SERENITY/SAFFRON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448195635",
+   "mfr_sku": "JD-BELMONT-CANARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Mango \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Canary",
+   "matched_pointe": "SKINTEX SF SERENITY/MORNING GLORY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448425011",
+   "mfr_sku": "JD-BELMONT-GRASS-SKIRT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Raffia \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Grass Skirt",
+   "matched_pointe": "SKINTEX SF SERENITY/SPRING",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448752691",
+   "mfr_sku": "JD-BELMONT-WHITE-WATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Rapids \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/White Water",
+   "matched_pointe": "SKINTEX SF SERENITY/PLATINUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448097331",
+   "mfr_sku": "JD-BELMONT-BRIAR-PATCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Undergrowth \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Briar Patch",
+   "matched_pointe": "SKINTEX SF SERENITY/FENNEL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448556083",
+   "mfr_sku": "JD-BELMONT-ROOT-BEER-FLOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Vanilla \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Root Beer Float",
+   "matched_pointe": "SKINTEX SF SERENITY/CURRY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575794227",
+   "mfr_sku": "JD-FAIRFAX-FRESHWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Creek \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Freshwater",
+   "matched_pointe": "NEW WAVE STORM/STREAM",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575892531",
+   "mfr_sku": "JD-FAIRFAX-PRUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Datefruit \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Prune",
+   "matched_pointe": "NEW WAVE STORM/BORDEAUX",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575695923",
+   "mfr_sku": "JD-FAIRFAX-EXPO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Fairground \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Expo",
+   "matched_pointe": "NEW WAVE STORM/TWILIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575990835",
+   "mfr_sku": "JD-FAIRFAX-STAGE-DOOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Grotto \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Stage Door",
+   "matched_pointe": "NEW WAVE STORM/COCOA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575958067",
+   "mfr_sku": "JD-FAIRFAX-SPALDING-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Gull \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Spalding Gray",
+   "matched_pointe": "NEW WAVE STORM/IRON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575925299",
+   "mfr_sku": "JD-FAIRFAX-SOLARIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Sunbeam \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Solaris",
+   "matched_pointe": "NEW WAVE STORM/SPRING",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575630387",
+   "mfr_sku": "JD-FAIRFAX-CHANDON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Tiki \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Chandon",
+   "matched_pointe": "NEW WAVE STORM/CHABLIS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283179059",
+   "mfr_sku": "JD-BANDOLIER-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Nomad Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Rover",
+   "matched_pointe": "SKINTEX SF RHYME/FIELD",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432958515",
+   "mfr_sku": "JD-ALASTAIR-PARTRIDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Quail \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Partridge",
+   "matched_pointe": "TEKLOOM REVELRY/FIELD",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444165171",
+   "mfr_sku": "JD-BANDOLIER-BUTTERCUP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Marigold \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Buttercup",
+   "matched_pointe": "SKINTEX SF RHYME/CASHEW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444099635",
+   "mfr_sku": "JD-BANDOLIER-ADOBE-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Umber \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Adobe Brown",
+   "matched_pointe": "SKINTEX SF RHYME/ARROYO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561802291",
+   "mfr_sku": "JD-CONFLUENCE-TINKERBELL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Firefly \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Tinkerbell",
+   "matched_pointe": "GALLERIA SF HAMILTON/NECTAR",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435416115",
+   "mfr_sku": "JD-ANNENDALE-COBALT-TURQUOISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Aquatic \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Cobalt Turquoise",
+   "matched_pointe": "GALLERIA TRIPOD/AEGEAN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541256755",
+   "mfr_sku": "JD-BRANNAN-BRUNETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Espresso \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Brunette",
+   "matched_pointe": "GALLERIA CENTRAL/COCOA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541846579",
+   "mfr_sku": "JD-BRANNAN-TIERRA-DEL-FUEGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Patagonia \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Tierra Del Fuego",
+   "matched_pointe": "GALLERIA CENTRAL/CLAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541813811",
+   "mfr_sku": "JD-BRANNAN-TEA-LEAF-GREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Sencha \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Tea Leaf Green",
+   "matched_pointe": "GALLERIA CENTRAL/APPLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541617203",
+   "mfr_sku": "JD-BRANNAN-MUSTARD-SEED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Sinapis \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Mustard Seed",
+   "matched_pointe": "GALLERIA CENTRAL/GRAIN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547712051",
+   "mfr_sku": "JD-CALLIE-GRAINS-OF-PARADISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Allspice \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Grains Of Paradise",
+   "matched_pointe": "BLACKOUT VIVALDI/CANVAS",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547613747",
+   "mfr_sku": "JD-CALLIE-CASTLE-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Keep \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Castle Grey",
+   "matched_pointe": "BLACKOUT VIVALDI/PEWTER",
+   "pointe_status": "DISCONTINUED",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544959539",
+   "mfr_sku": "JD-BRYCE-COPPERHEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Anaconda \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Copperhead",
+   "matched_pointe": "CONTESSA MADEIRA/QUARRY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545123379",
+   "mfr_sku": "JD-BRYCE-MATTE-BRONZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Artifact \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Matte Bronze",
+   "matched_pointe": "CONTESSA MADEIRA/CLAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544828467",
+   "mfr_sku": "JD-BRYCE-BUSTER-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Chapati \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Buster Brown",
+   "matched_pointe": "CONTESSA MADEIRA/TRAIL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545188915",
+   "mfr_sku": "JD-BRYCE-RED-WING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Flamingo \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Red Wing",
+   "matched_pointe": "CONTESSA MADEIRA/THRILL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545025075",
+   "mfr_sku": "JD-BRYCE-DARKNESS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Midnightsun \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Darkness",
+   "matched_pointe": "CONTESSA MADEIRA/GRAPHITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545156147",
+   "mfr_sku": "JD-BRYCE-NIGHTSWIMMING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Moonlit \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Nightswimming",
+   "matched_pointe": "CONTESSA MADEIRA/HARBOR",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455765043",
+   "mfr_sku": "JD-BOLIVAR-FROMAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Ricotta \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Fromage",
+   "matched_pointe": "NUVTEX CROCO/WHITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566815795",
+   "mfr_sku": "JD-DIEGUITO-ALAMO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Canyon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Alamo",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/SADDLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580152371",
+   "mfr_sku": "JD-FRANCISCAN-KESTREL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Falcon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Kestrel",
+   "matched_pointe": "SKINTEX SF RETRO/GOBI",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693912115",
+   "mfr_sku": "JD-ALASTAIR-CITY-HALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Capitol Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/City Hall",
+   "matched_pointe": "TEKLOOM REVELRY/PHANTOM",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694370867",
+   "mfr_sku": "JD-ALASTAIR-SHREDDED-DENIM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Lagoon Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Shredded Denim",
+   "matched_pointe": "TEKLOOM REVELRY/PIER",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694272563",
+   "mfr_sku": "JD-ALASTAIR-PARTRIDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Quail Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Partridge",
+   "matched_pointe": "TEKLOOM REVELRY/FIELD",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694436403",
+   "mfr_sku": "JD-ALASTAIR-TROPICAL-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Seagrass Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Tropical Grass",
+   "matched_pointe": "TEKLOOM REVELRY/BALSAMIC",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694174259",
+   "mfr_sku": "JD-ALASTAIR-EARL-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Tamarind Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Earl Grey",
+   "matched_pointe": "TEKLOOM REVELRY/FOG",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568683571",
+   "mfr_sku": "JD-DOLOMIEU-TESORO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Galleon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Tesoro",
+   "matched_pointe": "GALLERIA SF TRESOR/SUNSET",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432729139",
+   "mfr_sku": "JD-ALASTAIR-CITY-HALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Capitol \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/City Hall",
+   "matched_pointe": "TEKLOOM REVELRY/PHANTOM",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296908851",
+   "mfr_sku": "JD-BODIE-LAKESHORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Beachside Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Lakeshore",
+   "matched_pointe": "NEW WAVE POSH/SKY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296712243",
+   "mfr_sku": "JD-BODIE-DRAFTING-TABLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Blueprint Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Drafting Table",
+   "matched_pointe": "NEW WAVE POSH/PEBBLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296581171",
+   "mfr_sku": "JD-BODIE-COGNAC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Brandy Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Cognac",
+   "matched_pointe": "NEW WAVE POSH/AMBER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297564211",
+   "mfr_sku": "JD-BODIE-WIRE-MESH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Cyclonefence Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Wire Mesh",
+   "matched_pointe": "NEW WAVE POSH/HAZE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297203763",
+   "mfr_sku": "JD-BODIE-POMEGRANATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Guavablood Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Pomegranate",
+   "matched_pointe": "NEW WAVE POSH/RUBY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297302067",
+   "mfr_sku": "JD-BODIE-TATAMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Pandanus Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Tatami",
+   "matched_pointe": "NEW WAVE POSH/BARLEY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296450099",
+   "mfr_sku": "JD-BODIE-BLADES-OF-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Savanna Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Blades of Grass",
+   "matched_pointe": "NEW WAVE POSH/PASTURE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296974387",
+   "mfr_sku": "JD-BODIE-MANDOLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Seabreeze Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Mandolin",
+   "matched_pointe": "NEW WAVE POSH/BOULEVARD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297662515",
+   "mfr_sku": "JD-BODIE-YOSEMITE-HAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Sierra Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Yosemite Haze",
+   "matched_pointe": "NEW WAVE POSH/TWILIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296679475",
+   "mfr_sku": "JD-BODIE-COPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Copper",
+   "matched_pointe": "NEW WAVE POSH/AZTEC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297039923",
+   "mfr_sku": "JD-BODIE-MISTY-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Misty Mountain",
+   "matched_pointe": "NEW WAVE POSH/FROSTY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453667891",
+   "mfr_sku": "JD-BODIE-MISTY-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Misty Mountain",
+   "matched_pointe": "NEW WAVE POSH/FROSTY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296810547",
+   "mfr_sku": "JD-BODIE-FRENCH-OAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Walnut Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/French Oak",
+   "matched_pointe": "NEW WAVE POSH/CHOCOLATE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559246387",
+   "mfr_sku": "JD-CHEVIOT-BEMUSED-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Tamarind \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Bemused Brown",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/ELK",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453471283",
+   "mfr_sku": "JD-BODIE-COGNAC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Brandy \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Cognac",
+   "matched_pointe": "NEW WAVE POSH/AMBER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453635123",
+   "mfr_sku": "JD-BODIE-MANDOLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Seabreeze \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Mandolin",
+   "matched_pointe": "NEW WAVE POSH/BOULEVARD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453930035",
+   "mfr_sku": "JD-BODIE-YOSEMITE-HAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Sierra \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Yosemite Haze",
+   "matched_pointe": "NEW WAVE POSH/TWILIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453569587",
+   "mfr_sku": "JD-BODIE-FRENCH-OAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Walnut \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/French Oak",
+   "matched_pointe": "NEW WAVE POSH/CHOCOLATE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576973875",
+   "mfr_sku": "JD-FEDERICO-GLACIAL-GROUNDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Moraine \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Glacial Grounds",
+   "matched_pointe": "NEW WAVE ARCADIA/MARBLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442756147",
+   "mfr_sku": "JD-BALBOA-ANDALUSIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Castanet \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Andalusian",
+   "matched_pointe": "CONTESSA SIENA/BLUE JAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442821683",
+   "mfr_sku": "JD-BALBOA-ERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Eon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Era",
+   "matched_pointe": "CONTESSA SIENA/IVORY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442887219",
+   "mfr_sku": "JD-BALBOA-HERITAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ancestry \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Heritage",
+   "matched_pointe": "CONTESSA SIENA/CHAMPAGNE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443378739",
+   "mfr_sku": "JD-BALBOA-MINGEI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Craftwork \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Mingei",
+   "matched_pointe": "CONTESSA SIENA/BRICK",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443444275",
+   "mfr_sku": "JD-BALBOA-PLAZA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Courtyard \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Plaza",
+   "matched_pointe": "CONTESSA SIENA/DOE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443804723",
+   "mfr_sku": "JD-BALBOA-RAILROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ironwood \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Railroad",
+   "matched_pointe": "CONTESSA SIENA/BLACK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443837491",
+   "mfr_sku": "JD-BALBOA-SAVANNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Veldt \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Savanna",
+   "matched_pointe": "CONTESSA SIENA/FLAX",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443903027",
+   "mfr_sku": "JD-BALBOA-TIMKEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Bearing \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Timken",
+   "matched_pointe": "CONTESSA SIENA/RUSTIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443935795",
+   "mfr_sku": "JD-BALBOA-TOLEDO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Damascus \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Toledo",
+   "matched_pointe": "CONTESSA SIENA/FUDGE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444296243",
+   "mfr_sku": "JD-BANDOLIER-ELIXIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Nectar \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Elixir",
+   "matched_pointe": "SKINTEX SF RHYME/AQUA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444394547",
+   "mfr_sku": "JD-BANDOLIER-MOSSY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Bromeliad \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Mossy",
+   "matched_pointe": "SKINTEX SF RHYME/WILLOW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444460083",
+   "mfr_sku": "JD-BANDOLIER-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Nomad \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Rover",
+   "matched_pointe": "SKINTEX SF RHYME/FIELD",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456158259",
+   "mfr_sku": "JD-BOLIVAR-WHITE-MARBLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Calcite \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/White Marble",
+   "matched_pointe": "NUVTEX CROCO/ERMINE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457436211",
+   "mfr_sku": "JD-BOULEVARD-MIAMI-NIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Neon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Miami Night",
+   "matched_pointe": "GALLERIA STITCH/MIDNIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432761907",
+   "mfr_sku": "JD-ALASTAIR-CORAL-GLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Sunrise \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Coral Glow",
+   "matched_pointe": "TEKLOOM REVELRY/PERSIMMON",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432892979",
+   "mfr_sku": "JD-ALASTAIR-EARL-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Tamarind \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Earl Grey",
+   "matched_pointe": "TEKLOOM REVELRY/FOG",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432794675",
+   "mfr_sku": "JD-ALASTAIR-DIJON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Turmeric \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Dijon",
+   "matched_pointe": "TEKLOOM REVELRY/MARSALA",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540732467",
+   "mfr_sku": "JD-HOLLIS-BUTTERSCOTCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Caramelo \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Hollis/Butterscotch",
+   "matched_pointe": "SKINTEX SF LYCHEE/HONEY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585690163",
+   "mfr_sku": "JD-GRIFFIN-TIKI-CHIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Luau \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Tiki Chic",
+   "matched_pointe": "NEW WAVE TRAVERSE/THYME",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585657395",
+   "mfr_sku": "JD-GRIFFIN-THEBES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Pyramid \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Thebes",
+   "matched_pointe": "NEW WAVE TRAVERSE/OATMEAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433810483",
+   "mfr_sku": "JD-ALEUTIAN-VEIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Gossamer \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Veil",
+   "matched_pointe": "SKINTEX SF ASPECT/CLOUD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433744947",
+   "mfr_sku": "JD-ALEUTIAN-TECHNO-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Graphite \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Techno Grey",
+   "matched_pointe": "SKINTEX SF ASPECT/POWDER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444361779",
+   "mfr_sku": "JD-BANDOLIER-HOT-CHOCOLATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Cacao \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Hot Chocolate",
+   "matched_pointe": "SKINTEX SF RHYME/MOCHA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557411379",
+   "mfr_sku": "JD-CESTINO-GOSSAMER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Organza \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Gossamer",
+   "matched_pointe": "GALLERIA SF NEVIS/LINEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558066739",
+   "mfr_sku": "JD-CESTINO-VOLCANIC-ASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Pumice \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Volcanic Ash",
+   "matched_pointe": "GALLERIA SF NEVIS/NORI",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560852019",
+   "mfr_sku": "JD-COACHELLA-NIGHTSWIMMING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Moonlit \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Nightswimming",
+   "matched_pointe": "GALLERIA KALOONG/BAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577072179",
+   "mfr_sku": "JD-FEDERICO-HERBACEOUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Viridescent \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Herbaceous",
+   "matched_pointe": "NEW WAVE ARCADIA/GRANITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577104947",
+   "mfr_sku": "JD-FEDERICO-STALLION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Mustang \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Stallion",
+   "matched_pointe": "NEW WAVE ARCADIA/ABYSS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579890227",
+   "mfr_sku": "JD-FRANCISCAN-AQUATIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Marine \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Aquatic",
+   "matched_pointe": "SKINTEX SF RETRO/REEF",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580348979",
+   "mfr_sku": "JD-FRANCISCAN-WHEATFIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Pampas \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Wheatfield",
+   "matched_pointe": "SKINTEX SF RETRO/HAYSTICK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283113523",
+   "mfr_sku": "JD-BANDOLIER-HOT-CHOCOLATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Cacao Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Hot Chocolate",
+   "matched_pointe": "SKINTEX SF RHYME/MOCHA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453209139",
+   "mfr_sku": "JD-BIJOU-SHRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Temple \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Shrine",
+   "matched_pointe": "SKINTEX SF POP/BRASS",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580316211",
+   "mfr_sku": "JD-FRANCISCAN-SUNGLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Radiant \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Franciscan/Sunglow",
+   "matched_pointe": "SKINTEX SF RETRO/CANARY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810584248371",
+   "mfr_sku": "JD-GRIFFIN-DESERT-SPRING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Waterhole \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Desert Spring",
+   "matched_pointe": "NEW WAVE TRAVERSE/OCEAN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585067571",
+   "mfr_sku": "JD-GRIFFIN-LODGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Cabana \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Lodge",
+   "matched_pointe": "NEW WAVE TRAVERSE/MAPLE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698204723",
+   "mfr_sku": "JD-AMAZONIA-GRIFFIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tsunami Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Griffin",
+   "matched_pointe": "NEW WAVE MAMBA II/GRANITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698335795",
+   "mfr_sku": "JD-AMAZONIA-IVORIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tusk Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Ivorian",
+   "matched_pointe": "NEW WAVE MAMBA II/MARBLE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560524339",
+   "mfr_sku": "JD-COACHELLA-ANCIENT-GRAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Quinoa \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Ancient Grain",
+   "matched_pointe": "GALLERIA KALOONG/WHEAT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560589875",
+   "mfr_sku": "JD-COACHELLA-BRISKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Smoked \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Brisket",
+   "matched_pointe": "GALLERIA KALOONG/TRUFFLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565767219",
+   "mfr_sku": "JD-DELILAH-AU-LAIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Conleche \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/Au Lait",
+   "matched_pointe": "BLACKOUT PURCELL/CHALK",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565799987",
+   "mfr_sku": "JD-DELILAH-BAKED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Terracotta \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/Baked",
+   "matched_pointe": "BLACKOUT PURCELL/AZTEC",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568650803",
+   "mfr_sku": "JD-DOLOMIEU-SUFFUSION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Diffusion \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Suffusion",
+   "matched_pointe": "GALLERIA SF TRESOR/SUNSTONE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568552499",
+   "mfr_sku": "JD-DOLOMIEU-MAGNETITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Ironclad \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Magnetite",
+   "matched_pointe": "GALLERIA SF TRESOR/CHARCOAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568290355",
+   "mfr_sku": "JD-DOLOMIEU-CHALKWARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Seashell \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Chalkware",
+   "matched_pointe": "GALLERIA SF TRESOR/GESSO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568224819",
+   "mfr_sku": "JD-DOLOMIEU-AIR-FORCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Skydive \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Air Force",
+   "matched_pointe": "GALLERIA SF TRESOR/ALLOY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568355891",
+   "mfr_sku": "JD-DOLOMIEU-EMBLAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Sunrise \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Emblazon",
+   "matched_pointe": "GALLERIA SF TRESOR/AZURE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585264179",
+   "mfr_sku": "JD-GRIFFIN-NILE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Mangrove \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Nile",
+   "matched_pointe": "NEW WAVE TRAVERSE/CLIPPER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583887923",
+   "mfr_sku": "JD-GRIFFIN-CITRUS-ZEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Limon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Citrus Zest",
+   "matched_pointe": "NEW WAVE TRAVERSE/EVERGREEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583822387",
+   "mfr_sku": "JD-GRIFFIN-CABERNET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Vintage \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Cabernet",
+   "matched_pointe": "NEW WAVE TRAVERSE/BORDEAUX",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565996595",
+   "mfr_sku": "JD-DELILAH-SANDSTORM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Harmattan \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/Sandstorm",
+   "matched_pointe": "BLACKOUT PURCELL/LINEN",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457567283",
+   "mfr_sku": "JD-BOULEVARD-TORONTO-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Jay \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Toronto Blue",
+   "matched_pointe": "GALLERIA STITCH/RIVIERA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457337907",
+   "mfr_sku": "JD-BOULEVARD-CADET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Midshipman \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Cadet",
+   "matched_pointe": "GALLERIA STITCH/ARGENT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457501747",
+   "mfr_sku": "JD-BOULEVARD-POWELL-SMOKEHOUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Smokedfish \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Powell Smokehouse",
+   "matched_pointe": "GALLERIA STITCH/EVENING",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561736755",
+   "mfr_sku": "JD-CONFLUENCE-PESCARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Azzurro \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Pescara",
+   "matched_pointe": "GALLERIA SF HAMILTON/SOLSTICE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561769523",
+   "mfr_sku": "JD-CONFLUENCE-RIO-CELESTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Celestial \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Rio Celeste",
+   "matched_pointe": "GALLERIA SF HAMILTON/MARINA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561540147",
+   "mfr_sku": "JD-CONFLUENCE-DARLING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Orchidkiss \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Darling",
+   "matched_pointe": "GALLERIA SF HAMILTON/PLATINUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296056883",
+   "mfr_sku": "JD-BIJOU-SPEEDBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Catamaran Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Speedboat",
+   "matched_pointe": "SKINTEX SF POP/DEEP SEA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294844467",
+   "mfr_sku": "JD-BIJOU-BRIGHT-SKY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cerulean Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Bright Sky",
+   "matched_pointe": "SKINTEX SF POP/LAPIS BLUE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295401523",
+   "mfr_sku": "JD-BIJOU-MESH-METAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Chainmail Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Mesh Metal",
+   "matched_pointe": "SKINTEX SF POP/MALT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295532595",
+   "mfr_sku": "JD-BIJOU-MILAGRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Charm Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Milagro",
+   "matched_pointe": "SKINTEX SF POP/AUBURN",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295860275",
+   "mfr_sku": "JD-BIJOU-SANDCASTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Conch Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Sandcastle",
+   "matched_pointe": "SKINTEX SF POP/IVORY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296286259",
+   "mfr_sku": "JD-BIJOU-ZIRCONIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cubic Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Zirconia",
+   "matched_pointe": "SKINTEX SF POP/MERCURY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295630899",
+   "mfr_sku": "JD-BIJOU-OBSCURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Murky Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Obscura",
+   "matched_pointe": "SKINTEX SF POP/PEWTER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295696435",
+   "mfr_sku": "JD-BIJOU-PLUM-FAIRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Nymph Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Plum Fairy",
+   "matched_pointe": "SKINTEX SF POP/CONCORD",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294778931",
+   "mfr_sku": "JD-BIJOU-BING-CHERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Pomegranate Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Bing Cherry",
+   "matched_pointe": "SKINTEX SF POP/SALSA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294942771",
+   "mfr_sku": "JD-BIJOU-CAVIAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Roe Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Caviar",
+   "matched_pointe": "SKINTEX SF POP/BLACK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295794739",
+   "mfr_sku": "JD-BIJOU-RABOSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Rosella Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Raboso",
+   "matched_pointe": "SKINTEX SF POP/GERANIUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296220723",
+   "mfr_sku": "JD-BIJOU-TROPHY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Scallop Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Trophy",
+   "matched_pointe": "SKINTEX SF POP/PENNY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295204915",
+   "mfr_sku": "JD-BIJOU-MARIONETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Shadows Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Marionette",
+   "matched_pointe": "SKINTEX SF POP/APRICOT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296155187",
+   "mfr_sku": "JD-BIJOU-TEATRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Sunset Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Teatro",
+   "matched_pointe": "SKINTEX SF POP/BRIGHT GOLD",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295958579",
+   "mfr_sku": "JD-BIJOU-SHRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Temple Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Shrine",
+   "matched_pointe": "SKINTEX SF POP/BRASS",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295008307",
+   "mfr_sku": "JD-BIJOU-CITRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Topaz Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Citrine",
+   "matched_pointe": "SKINTEX SF POP/MINT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295303219",
+   "mfr_sku": "JD-BIJOU-MARTINIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Volcano Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Martinique",
+   "matched_pointe": "SKINTEX SF POP/BLUE BELL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433417267",
+   "mfr_sku": "JD-ALEUTIAN-ESPRESSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Kona \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Espresso",
+   "matched_pointe": "SKINTEX SF ASPECT/CHARCOAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568585267",
+   "mfr_sku": "JD-DOLOMIEU-NOBILITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Regalia \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Nobility",
+   "matched_pointe": "GALLERIA SF TRESOR/DIVE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568388659",
+   "mfr_sku": "JD-DOLOMIEU-FIGURINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Sculpture \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Figurine",
+   "matched_pointe": "GALLERIA SF TRESOR/NIMBUS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568323123",
+   "mfr_sku": "JD-DOLOMIEU-DRAGONSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Obsidian \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Dragonstone",
+   "matched_pointe": "GALLERIA SF TRESOR/SPRUCE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455666739",
+   "mfr_sku": "JD-BOLIVAR-CELADON-GREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Beryl \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Celadon Green",
+   "matched_pointe": "NUVTEX CROCO/SPRING",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455797811",
+   "mfr_sku": "JD-BOLIVAR-GATOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Cayman \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Gator",
+   "matched_pointe": "NUVTEX CROCO/TRUFFLE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455633971",
+   "mfr_sku": "JD-BOLIVAR-BISQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Custard \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Bisque",
+   "matched_pointe": "NUVTEX CROCO/COFFEE CREAM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455732275",
+   "mfr_sku": "JD-BOLIVAR-DARK-BREW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Kahlua \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Dark Brew",
+   "matched_pointe": "NUVTEX CROCO/ABYSS",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456125491",
+   "mfr_sku": "JD-BOLIVAR-TROPICAL-TURQUOISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Lagoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Tropical Turquoise",
+   "matched_pointe": "NUVTEX CROCO/JUNGLE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455994419",
+   "mfr_sku": "JD-BOLIVAR-SIERRA-HILLS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Overlook \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Sierra Hills",
+   "matched_pointe": "NUVTEX CROCO/MUSHROOM",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455961651",
+   "mfr_sku": "JD-BOLIVAR-SHRIMPBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Reef \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Shrimpboat",
+   "matched_pointe": "NUVTEX CROCO/LIPSTICK",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455568435",
+   "mfr_sku": "JD-BOLIVAR-ACORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Tamarind \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Acorn",
+   "matched_pointe": "NUVTEX CROCO/MAHOGANY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455601203",
+   "mfr_sku": "JD-BOLIVAR-BAJA-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Teal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Baja Blue",
+   "matched_pointe": "NUVTEX CROCO/ROYAL BLUE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455863347",
+   "mfr_sku": "JD-BOLIVAR-PANTHEON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Temple \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Pantheon",
+   "matched_pointe": "NUVTEX CROCO/ASH",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455830579",
+   "mfr_sku": "JD-BOLIVAR-MEDITATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Tranquility \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Meditation",
+   "matched_pointe": "NUVTEX CROCO/MUDDY BRONZE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455699507",
+   "mfr_sku": "JD-BOLIVAR-CURRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Turmeric \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Curry",
+   "matched_pointe": "NUVTEX CROCO/CARAMEL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277903411",
+   "mfr_sku": "JD-AURA-GRAVITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Abyss Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Gravity",
+   "matched_pointe": "BEYOND SYNERGY/VELLUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279738419",
+   "mfr_sku": "JD-AURA-TOTEM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Animist Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Totem",
+   "matched_pointe": "BEYOND SYNERGY/MAHOGANY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276985907",
+   "mfr_sku": "JD-AURA-ARCADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Boardwalk Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Arcade",
+   "matched_pointe": "BEYOND SYNERGY/PIER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277084211",
+   "mfr_sku": "JD-AURA-CLOUDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Cumuli Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Clouds",
+   "matched_pointe": "BEYOND SYNERGY/NORDIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277248051",
+   "mfr_sku": "JD-AURA-ETHEREAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Gossamer Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Ethereal",
+   "matched_pointe": "BEYOND SYNERGY/ANISE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277674035",
+   "mfr_sku": "JD-AURA-FOG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Haze Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Fog",
+   "matched_pointe": "BEYOND SYNERGY/DEW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796278165555",
+   "mfr_sku": "JD-AURA-MALACHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jade Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Malachite",
+   "matched_pointe": "BEYOND SYNERGY/SEA GREEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277149747",
+   "mfr_sku": "JD-AURA-COUNTRY-ROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pathways Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Country Road",
+   "matched_pointe": "BEYOND SYNERGY/MUSHROOM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279541811",
+   "mfr_sku": "JD-AURA-STILLWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pond Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Stillwater",
+   "matched_pointe": "BEYOND SYNERGY/PACIFIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796278624307",
+   "mfr_sku": "JD-AURA-OZONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Skyblue Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Ozone",
+   "matched_pointe": "BEYOND SYNERGY/STORM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281311283",
+   "mfr_sku": "JD-BALBOA-PLAZA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Courtyard Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Plaza",
+   "matched_pointe": "CONTESSA SIENA/DOE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281114675",
+   "mfr_sku": "JD-BALBOA-MINGEI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Craftwork Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Mingei",
+   "matched_pointe": "CONTESSA SIENA/BRICK",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286095411",
+   "mfr_sku": "JD-BELMONT-RUSHMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monument Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Rushmore",
+   "matched_pointe": "SKINTEX SF SERENITY/CAMEL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694108723",
+   "mfr_sku": "JD-ALASTAIR-DIJON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Turmeric Pattern Upholstery \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Dijon",
+   "matched_pointe": "TEKLOOM REVELRY/MARSALA",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297367603",
+   "mfr_sku": "JD-BODIE-TOASTED-OATS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Granola Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Toasted Oats",
+   "matched_pointe": "NEW WAVE POSH/CANYON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561441843",
+   "mfr_sku": "JD-CONFLUENCE-ASHBURTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Pumice \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Ashburton",
+   "matched_pointe": "GALLERIA SF HAMILTON/TRAIL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561474611",
+   "mfr_sku": "JD-CONFLUENCE-BAMBOO-BARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Rattan \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Bamboo Bark",
+   "matched_pointe": "GALLERIA SF HAMILTON/TOFFEE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561572915",
+   "mfr_sku": "JD-CONFLUENCE-GLISTENING-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Silica \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Glistening Sand",
+   "matched_pointe": "GALLERIA SF HAMILTON/BALSA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561703987",
+   "mfr_sku": "JD-CONFLUENCE-MOSELLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Starfruit \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Confluence/Moselle",
+   "matched_pointe": "GALLERIA SF HAMILTON/PACIFIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695648819",
+   "mfr_sku": "JD-ALEUTIAN-BURLAP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Hessian Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Burlap",
+   "matched_pointe": "SKINTEX SF ASPECT/SAND",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695714355",
+   "mfr_sku": "JD-ALEUTIAN-DARK-DUCK-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - LagoonDeep Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Dark Duck Blue",
+   "matched_pointe": "SKINTEX SF ASPECT/TEAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696173107",
+   "mfr_sku": "JD-ALEUTIAN-RESTFUL-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Seashell Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Restful White",
+   "matched_pointe": "SKINTEX SF ASPECT/SNOW",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695583283",
+   "mfr_sku": "JD-ALEUTIAN-AUSTERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Spartan Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Austere",
+   "matched_pointe": "SKINTEX SF ASPECT/CLIPPER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696042035",
+   "mfr_sku": "JD-ALEUTIAN-LEAPFROG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Treefrog Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Leapfrog",
+   "matched_pointe": "SKINTEX SF ASPECT/GRASS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695910963",
+   "mfr_sku": "JD-ALEUTIAN-GREEN-EARTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Verdant Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Green Earth",
+   "matched_pointe": "SKINTEX SF ASPECT/GULL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558492723",
+   "mfr_sku": "JD-CHAINMAIL-WHISTLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Koel \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Whistler",
+   "matched_pointe": "TEKLOOM WICKER/CIRRUS",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565832755",
+   "mfr_sku": "JD-DELILAH-CATACOMBS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Crypt \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/Catacombs",
+   "matched_pointe": "BLACKOUT PURCELL/DUSK",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448162867",
+   "mfr_sku": "JD-BELMONT-BROWN-TAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Bitumen \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Brown Tar",
+   "matched_pointe": "SKINTEX SF SERENITY/COCOA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448621619",
+   "mfr_sku": "JD-BELMONT-SATCHEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Caramel \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Satchel",
+   "matched_pointe": "SKINTEX SF SERENITY/ETHIOPIA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448687155",
+   "mfr_sku": "JD-BELMONT-TAN-TEXTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Cinnamon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Tan Texture",
+   "matched_pointe": "SKINTEX SF SERENITY/RYE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448523315",
+   "mfr_sku": "JD-BELMONT-OVERALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Denim \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Overall",
+   "matched_pointe": "SKINTEX SF SERENITY/LAGOON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448359475",
+   "mfr_sku": "JD-BELMONT-FROST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Icing \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Frost",
+   "matched_pointe": "SKINTEX SF SERENITY/HAZE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448719923",
+   "mfr_sku": "JD-BELMONT-THUNDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monsoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Thunder",
+   "matched_pointe": "SKINTEX SF SERENITY/MIDNIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448588851",
+   "mfr_sku": "JD-BELMONT-RUSHMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monument \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Rushmore",
+   "matched_pointe": "SKINTEX SF SERENITY/CAMEL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448130099",
+   "mfr_sku": "JD-BELMONT-BROWN-SIENNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Ochre \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Brown Sienna",
+   "matched_pointe": "SKINTEX SF SERENITY/ARROYO",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448228403",
+   "mfr_sku": "JD-BELMONT-CARAMEL-CORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Popcorn \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Caramel Corn",
+   "matched_pointe": "SKINTEX SF SERENITY/MOREL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448261171",
+   "mfr_sku": "JD-BELMONT-CROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Royalty \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Crown",
+   "matched_pointe": "SKINTEX SF SERENITY/SORBET",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448064563",
+   "mfr_sku": "JD-BELMONT-BLUE-THRUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Songbird \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Blue Thrush",
+   "matched_pointe": "SKINTEX SF SERENITY/IRIS",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448654387",
+   "mfr_sku": "JD-BELMONT-SWEET-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Tangerine \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Sweet Orange",
+   "matched_pointe": "SKINTEX SF SERENITY/SUNBURST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448490547",
+   "mfr_sku": "JD-BELMONT-HORSE-FEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Trot \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Horse Feather",
+   "matched_pointe": "SKINTEX SF SERENITY/IRISH MIST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575728691",
+   "mfr_sku": "JD-FAIRFAX-EXTRA-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Brilliant \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Extra White",
+   "matched_pointe": "NEW WAVE STORM/ICECAP",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575761459",
+   "mfr_sku": "JD-FAIRFAX-FREEWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Highway \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Freeway",
+   "matched_pointe": "NEW WAVE STORM/BLACK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575859763",
+   "mfr_sku": "JD-FAIRFAX-PIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Jetty \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Pier",
+   "matched_pointe": "NEW WAVE STORM/AQUA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576023603",
+   "mfr_sku": "JD-FAIRFAX-TEAL-TROPIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Lagoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Teal Tropique",
+   "matched_pointe": "NEW WAVE STORM/SEAGREEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575597619",
+   "mfr_sku": "JD-FAIRFAX-BRAQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Mosaic \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairfax/Braque",
+   "matched_pointe": "NEW WAVE STORM/SLATE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453602355",
+   "mfr_sku": "JD-BODIE-LAKESHORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Beachside \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Lakeshore",
+   "matched_pointe": "NEW WAVE POSH/SKY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453536819",
+   "mfr_sku": "JD-BODIE-DRAFTING-TABLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Blueprint \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Drafting Table",
+   "matched_pointe": "NEW WAVE POSH/PEBBLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453897267",
+   "mfr_sku": "JD-BODIE-WIRE-MESH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Cyclonefence \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Wire Mesh",
+   "matched_pointe": "NEW WAVE POSH/HAZE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453831731",
+   "mfr_sku": "JD-BODIE-TOASTED-OATS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Granola \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Toasted Oats",
+   "matched_pointe": "NEW WAVE POSH/CANYON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453766195",
+   "mfr_sku": "JD-BODIE-POMEGRANATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Guavablood \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Pomegranate",
+   "matched_pointe": "NEW WAVE POSH/RUBY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453864499",
+   "mfr_sku": "JD-BODIE-VAGABOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Nomad \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Vagabond",
+   "matched_pointe": "NEW WAVE POSH/LATTE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453798963",
+   "mfr_sku": "JD-BODIE-TATAMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Pandanus \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Tatami",
+   "matched_pointe": "NEW WAVE POSH/BARLEY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453405747",
+   "mfr_sku": "JD-BODIE-BLADES-OF-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Savanna \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Blades of Grass",
+   "matched_pointe": "NEW WAVE POSH/PASTURE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453733427",
+   "mfr_sku": "JD-BODIE-OBSCURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Shaded \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Obscure",
+   "matched_pointe": "NEW WAVE POSH/MOCHA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453504051",
+   "mfr_sku": "JD-BODIE-COPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bodie/Copper",
+   "matched_pointe": "NEW WAVE POSH/AZTEC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697975347",
+   "mfr_sku": "JD-AMAZONIA-DRAGONS-SCALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Iguana Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Dragon's Scale",
+   "matched_pointe": "NEW WAVE MAMBA II/WILLOW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698270259",
+   "mfr_sku": "JD-AMAZONIA-INDULGENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Nectar Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Indulgence",
+   "matched_pointe": "NEW WAVE MAMBA II/CANYON",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541584435",
+   "mfr_sku": "JD-BRANNAN-INDIGO-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Abyss \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Indigo Blue",
+   "matched_pointe": "GALLERIA CENTRAL/BLUEBERRY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541649971",
+   "mfr_sku": "JD-BRANNAN-NATURAL-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Alabaster \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Natural White",
+   "matched_pointe": "GALLERIA CENTRAL/AVALANCHE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541551667",
+   "mfr_sku": "JD-BRANNAN-GOLDEN-FLEECE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Angora \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Golden Fleece",
+   "matched_pointe": "GALLERIA CENTRAL/MILKWEED",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541322291",
+   "mfr_sku": "JD-BRANNAN-CAPE-VERDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Archipelago \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Cape Verde",
+   "matched_pointe": "GALLERIA CENTRAL/FOREST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541223987",
+   "mfr_sku": "JD-BRANNAN-BRONZE-RELIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Artifact \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Bronze Relic",
+   "matched_pointe": "GALLERIA CENTRAL/CASHEW",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541191219",
+   "mfr_sku": "JD-BRANNAN-BOONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Cacao \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Boone",
+   "matched_pointe": "GALLERIA CENTRAL/CHESTNUT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541781043",
+   "mfr_sku": "JD-BRANNAN-SIMPLY-SIENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Earthen \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Simply Siena",
+   "matched_pointe": "GALLERIA CENTRAL/CINNAMON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541518899",
+   "mfr_sku": "JD-BRANNAN-FAIRFAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Gentry \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Fairfax",
+   "matched_pointe": "GALLERIA CENTRAL/SHELL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541158451",
+   "mfr_sku": "JD-BRANNAN-BODEGA-BAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Harbor \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Bodega Bay",
+   "matched_pointe": "GALLERIA CENTRAL/RAINSTORM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541486131",
+   "mfr_sku": "JD-BRANNAN-ESTATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Plantation \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Estate",
+   "matched_pointe": "GALLERIA CENTRAL/SMOKE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541715507",
+   "mfr_sku": "JD-BRANNAN-SHERIFF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Posse \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Sheriff",
+   "matched_pointe": "GALLERIA CENTRAL/ADOBE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541355059",
+   "mfr_sku": "JD-BRANNAN-CASCABEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Rattlesnake \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Cascabel",
+   "matched_pointe": "GALLERIA CENTRAL/CHILI",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541420595",
+   "mfr_sku": "JD-BRANNAN-DARK-SHADOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Twilighthaze \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Dark Shadow",
+   "matched_pointe": "GALLERIA CENTRAL/ONYX",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547744819",
+   "mfr_sku": "JD-CALLIE-GURU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Mystic \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Guru",
+   "matched_pointe": "BLACKOUT VIVALDI/CHABLIS",
+   "pointe_status": "DISCONTINUED",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547843123",
+   "mfr_sku": "JD-CALLIE-SISTER-MIDNIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Obscurity \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Sister Midnight",
+   "matched_pointe": "BLACKOUT VIVALDI/INK",
+   "pointe_status": "DISCONTINUED",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547580979",
+   "mfr_sku": "JD-CALLIE-BELMONT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Palmetto \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Belmont",
+   "matched_pointe": "BLACKOUT VIVALDI/LATTE",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547679283",
+   "mfr_sku": "JD-CALLIE-COOL-MERCURY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Quicksilver \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Cool Mercury",
+   "matched_pointe": "BLACKOUT VIVALDI/HELIUM",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547810355",
+   "mfr_sku": "JD-CALLIE-MELLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Serene \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Callie/Mellow",
+   "matched_pointe": "BLACKOUT VIVALDI/MOONBEAM",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544861235",
+   "mfr_sku": "JD-BRYCE-CHEROKEE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Canoe \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Cherokee",
+   "matched_pointe": "CONTESSA MADEIRA/SUMATRA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544894003",
+   "mfr_sku": "JD-BRYCE-COPACETIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Carefree \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Copacetic",
+   "matched_pointe": "CONTESSA MADEIRA/ALLOY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545057843",
+   "mfr_sku": "JD-BRYCE-MARCONA-ALMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Macadamia \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Marcona Almond",
+   "matched_pointe": "CONTESSA MADEIRA/FOSSIL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545254451",
+   "mfr_sku": "JD-BRYCE-YOUNG-HICKORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Sapling \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bryce/Young Hickory",
+   "matched_pointe": "CONTESSA MADEIRA/STORM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566979635",
+   "mfr_sku": "JD-DIEGUITO-ESTUARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Delta \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Estuary",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/STREAM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567077939",
+   "mfr_sku": "JD-DIEGUITO-RANGE-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Expedition \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Range Rover",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/ARROYO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567176243",
+   "mfr_sku": "JD-DIEGUITO-WHALE-WATCHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Migaloo \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Whale Watcher",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/NEPTUNE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566946867",
+   "mfr_sku": "JD-DIEGUITO-DRUMSTICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Moringa \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Drumstick",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/ABYSS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566881331",
+   "mfr_sku": "JD-DIEGUITO-COBBLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Pebble \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Cobble",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/SLATE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567143475",
+   "mfr_sku": "JD-DIEGUITO-TOWN-SQUARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Plaza \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Town Square",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/SHELL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567045171",
+   "mfr_sku": "JD-DIEGUITO-INCOGNITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Shadows \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Incognito",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/MIDNIGHT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567110707",
+   "mfr_sku": "JD-DIEGUITO-TERRACE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Veranda \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Terrace",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/FIELD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576908339",
+   "mfr_sku": "JD-FEDERICO-BUTTERSCOTCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Caramelo \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Butterscotch",
+   "matched_pointe": "NEW WAVE ARCADIA/CANYON",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577039411",
+   "mfr_sku": "JD-FEDERICO-GOLD-RUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Klondike \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Gold Rush",
+   "matched_pointe": "NEW WAVE ARCADIA/PARCHMENT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577137715",
+   "mfr_sku": "JD-FEDERICO-TOTAL-ECLIPSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Umbra \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Federico/Total Eclipse",
+   "matched_pointe": "NEW WAVE ARCADIA/BLACK PEARL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441773107",
+   "mfr_sku": "JD-AURA-CLOUDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Cumuli \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Clouds",
+   "matched_pointe": "BEYOND SYNERGY/NORDIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441904179",
+   "mfr_sku": "JD-AURA-ETHEREAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Gossamer \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Ethereal",
+   "matched_pointe": "BEYOND SYNERGY/ANISE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442002483",
+   "mfr_sku": "JD-AURA-FOG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Haze \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Fog",
+   "matched_pointe": "BEYOND SYNERGY/DEW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442100787",
+   "mfr_sku": "JD-AURA-MALACHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jade \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Malachite",
+   "matched_pointe": "BEYOND SYNERGY/SEA GREEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442199091",
+   "mfr_sku": "JD-AURA-STILLWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pond \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Stillwater",
+   "matched_pointe": "BEYOND SYNERGY/PACIFIC",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442133555",
+   "mfr_sku": "JD-AURA-OZONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Skyblue \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Ozone",
+   "matched_pointe": "BEYOND SYNERGY/STORM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567012403",
+   "mfr_sku": "JD-DIEGUITO-GHIRARDELLI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Cacao \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dieguito/Ghirardelli",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/TRUFFLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432991283",
+   "mfr_sku": "JD-ALASTAIR-SHREDDED-DENIM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Lagoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Shredded Denim",
+   "matched_pointe": "TEKLOOM REVELRY/PIER",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457272371",
+   "mfr_sku": "JD-BOULEVARD-AFRAME-CABIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Teakwood \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/A-Frame Cabin",
+   "matched_pointe": "GALLERIA STITCH/CHOCOLATE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557247539",
+   "mfr_sku": "JD-CESTINO-GEISEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Lagoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Geisel",
+   "matched_pointe": "GALLERIA SF NEVIS/SHITAKE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558033971",
+   "mfr_sku": "JD-CESTINO-TERRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Laterite \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Terra",
+   "matched_pointe": "GALLERIA SF NEVIS/BARISTA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557182003",
+   "mfr_sku": "JD-CESTINO-DENIM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Seafarer \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cestino/Denim",
+   "matched_pointe": "GALLERIA SF NEVIS/NEPTUNE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457305139",
+   "mfr_sku": "JD-BOULEVARD-AMAZONIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Wilderness \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Amazonia",
+   "matched_pointe": "GALLERIA STITCH/LICHEN",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457600051",
+   "mfr_sku": "JD-BOULEVARD-TRACK-AND-FIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Decathlon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Track And Field",
+   "matched_pointe": "GALLERIA STITCH/WOODLAND",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457468979",
+   "mfr_sku": "JD-BOULEVARD-PARISIAN-RED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Hibiscus \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Boulevard/Parisian Red",
+   "matched_pointe": "GALLERIA STITCH/KOI",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568519731",
+   "mfr_sku": "JD-DOLOMIEU-ISOMETRIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Facet \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Isometric",
+   "matched_pointe": "GALLERIA SF TRESOR/MICA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568257587",
+   "mfr_sku": "JD-DOLOMIEU-CEDAR-ROSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Rosewood \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Cedar Rose",
+   "matched_pointe": "GALLERIA SF TRESOR/MOREL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443870259",
+   "mfr_sku": "JD-BALBOA-SPANISH-LEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Cordovan \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Spanish Leather",
+   "matched_pointe": "CONTESSA SIENA/TRUFFLE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568486963",
+   "mfr_sku": "JD-DOLOMIEU-GOLD-ESSENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Nectar \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Dolomieu/Gold Essence",
+   "matched_pointe": "GALLERIA SF TRESOR/KARAT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453012531",
+   "mfr_sku": "JD-BIJOU-MILAGRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Charm \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Milagro",
+   "matched_pointe": "SKINTEX SF POP/AUBURN",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453241907",
+   "mfr_sku": "JD-BIJOU-SPEEDBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Catamaran \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Speedboat",
+   "matched_pointe": "SKINTEX SF POP/DEEP SEA",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452946995",
+   "mfr_sku": "JD-BIJOU-MESH-METAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Chainmail \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Mesh Metal",
+   "matched_pointe": "SKINTEX SF POP/MALT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453176371",
+   "mfr_sku": "JD-BIJOU-SANDCASTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Conch \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Sandcastle",
+   "matched_pointe": "SKINTEX SF POP/IVORY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453340211",
+   "mfr_sku": "JD-BIJOU-ZIRCONIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cubic \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Zirconia",
+   "matched_pointe": "SKINTEX SF POP/MERCURY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453110835",
+   "mfr_sku": "JD-BIJOU-PLUM-FAIRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Nymph \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Plum Fairy",
+   "matched_pointe": "SKINTEX SF POP/CONCORD",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452914227",
+   "mfr_sku": "JD-BIJOU-MARTINIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Volcano \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Martinique",
+   "matched_pointe": "SKINTEX SF POP/BLUE BELL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444230707",
+   "mfr_sku": "JD-BANDOLIER-DARK-ALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Shadows \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Dark Alley",
+   "matched_pointe": "SKINTEX SF RHYME/SMOKE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448457779",
+   "mfr_sku": "JD-BELMONT-HALF-DOLLAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Doubloon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Half Dollar",
+   "matched_pointe": "SKINTEX SF SERENITY/SILVER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448785459",
+   "mfr_sku": "JD-BELMONT-WROUGHT-IRON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Grillage \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Wrought Iron",
+   "matched_pointe": "SKINTEX SF SERENITY/SEAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559311923",
+   "mfr_sku": "JD-CHEVIOT-HOLLYWOOD-GOLD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Tinsel \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Hollywood Gold",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/HONEYCOMB",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559475763",
+   "mfr_sku": "JD-CHEVIOT-WITCH-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Volcano \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Witch Mountain",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/DARK ESPRESSO",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448392243",
+   "mfr_sku": "JD-BELMONT-GOLDEN-RETRIEVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Amber \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Belmont/Golden Retriever",
+   "matched_pointe": "SKINTEX SF SERENITY/CHARDONNAY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576351283",
+   "mfr_sku": "JD-FAIRWAY-GRASSY-FIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Pasture \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Grassy Field",
+   "matched_pointe": "TEKLOOM FORUM/MEADOW",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433024051",
+   "mfr_sku": "JD-ALASTAIR-TROPICAL-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Seagrass \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Alastair/Tropical Grass",
+   "matched_pointe": "TEKLOOM REVELRY/BALSAMIC",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559442995",
+   "mfr_sku": "JD-CHEVIOT-SHOOTING-STAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Meteor \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Shooting Star",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/LINEN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": 2.7,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559279155",
+   "mfr_sku": "JD-CHEVIOT-GATSBY-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Artdeco \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Gatsby Gray",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/CHARCOAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": 2.7,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559344691",
+   "mfr_sku": "JD-CHEVIOT-METALLIC-LIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Fluorite \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Metallic Lime",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/MATCHA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": 2.7,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559377459",
+   "mfr_sku": "JD-CHEVIOT-MINERAL-ICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Glacier \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Cheviot/Mineral Ice",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/PALLADIUM",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456027187",
+   "mfr_sku": "JD-BOLIVAR-SPICE-MARKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Bazaar \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Spice Market",
+   "matched_pointe": "NUVTEX CROCO/MUDDY GOLD",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456059955",
+   "mfr_sku": "JD-BOLIVAR-SQUID-INK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Abyss \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Squid Ink",
+   "matched_pointe": "NUVTEX CROCO/BLACK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455928883",
+   "mfr_sku": "JD-BOLIVAR-RELIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Artifact \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bolivar/Relic",
+   "matched_pointe": "NUVTEX CROCO/MUDDY COPPER",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541682739",
+   "mfr_sku": "JD-BRANNAN-OLIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Avocado \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Olive",
+   "matched_pointe": "GALLERIA CENTRAL/PAPYRUS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434793523",
+   "mfr_sku": "JD-AMAZONIA-INDULGENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Nectar \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Indulgence",
+   "matched_pointe": "NEW WAVE MAMBA II/CANYON",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434924595",
+   "mfr_sku": "JD-AMAZONIA-MAJESTIC-PURPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Royalty \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Majestic Purple",
+   "matched_pointe": "NEW WAVE MAMBA II/AUBERGINE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434727987",
+   "mfr_sku": "JD-AMAZONIA-GLITTERATI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Spectra \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Glitterati",
+   "matched_pointe": "NEW WAVE MAMBA II/PARCHMENT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434760755",
+   "mfr_sku": "JD-AMAZONIA-GRIFFIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tsunami \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Griffin",
+   "matched_pointe": "NEW WAVE MAMBA II/GRANITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434859059",
+   "mfr_sku": "JD-AMAZONIA-IVORIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tusk \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Amazonia/Ivorian",
+   "matched_pointe": "NEW WAVE MAMBA II/MARBLE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541453363",
+   "mfr_sku": "JD-BRANNAN-DEER-VALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Canyonridge \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Brannan/Deer Valley",
+   "matched_pointe": "GALLERIA CENTRAL/BEACH",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558296115",
+   "mfr_sku": "JD-CHAINMAIL-CHARRED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Embers \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Charred",
+   "matched_pointe": "TEKLOOM WICKER/NIGHTFALL",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558361651",
+   "mfr_sku": "JD-CHAINMAIL-COLT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Foal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Colt",
+   "matched_pointe": "TEKLOOM WICKER/RIDGE",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558230579",
+   "mfr_sku": "JD-CHAINMAIL-ARMAMENT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Harpoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Armament",
+   "matched_pointe": "TEKLOOM WICKER/CINDER",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558394419",
+   "mfr_sku": "JD-CHAINMAIL-EXOTICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Orchid \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Exotica",
+   "matched_pointe": "TEKLOOM WICKER/RESORT",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558328883",
+   "mfr_sku": "JD-CHAINMAIL-CITRANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Tangelo \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Chainmail/Citrange",
+   "matched_pointe": "TEKLOOM WICKER/AUTUMN",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576154675",
+   "mfr_sku": "JD-FAIRWAY-ATMOSPHERIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Ethereal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Atmospheric",
+   "matched_pointe": "TEKLOOM FORUM/PESCA",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565963827",
+   "mfr_sku": "JD-DELILAH-PALISADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Stockade \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/Palisade",
+   "matched_pointe": "BLACKOUT PURCELL/PEPPER",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565898291",
+   "mfr_sku": "JD-DELILAH-HIGH-SIERRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Elevation \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/High Sierra",
+   "matched_pointe": "BLACKOUT PURCELL/CANYON",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565931059",
+   "mfr_sku": "JD-DELILAH-OSIRIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Pharaoh \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Delilah/Osiris",
+   "matched_pointe": "BLACKOUT PURCELL/RYE",
+   "pointe_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574286899",
+   "mfr_sku": "JD-ESCALANTE-KEY-WEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Conch \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Key West",
+   "matched_pointe": "SKINTEX SF EXOTIC/PEACOCK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574319667",
+   "mfr_sku": "JD-ESCALANTE-PALACIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Hacienda \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Escalante/Palacio",
+   "matched_pointe": "SKINTEX SF EXOTIC/METAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543943731",
+   "mfr_sku": "JD-BROADCAST-ATMOSPHERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Skyglow \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Atmosphere",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/FROST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544140339",
+   "mfr_sku": "JD-BROADCAST-INTROSPECTIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Solitude \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Introspective",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/PEWTER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544042035",
+   "mfr_sku": "JD-BROADCAST-FIREWALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Barrier \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Firewall",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/AUTUMN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544336947",
+   "mfr_sku": "JD-BROADCAST-URBAN-ENERGY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Dynamo \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Urban Energy",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/REGATTA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543910963",
+   "mfr_sku": "JD-BROADCAST-ARTISANAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Handwoven \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Artisanal",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/SAGE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544304179",
+   "mfr_sku": "JD-BROADCAST-TORERO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Matador \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Torero",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/TAPAS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544271411",
+   "mfr_sku": "JD-BROADCAST-SOVEREIGN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Monarch \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Sovereign",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/VIOLET",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544205875",
+   "mfr_sku": "JD-BROADCAST-PLOT-LINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Narrative \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Plot Line",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/GRAPHITE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544173107",
+   "mfr_sku": "JD-BROADCAST-MONTES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Ridge \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Montes",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/BIRCH",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544107571",
+   "mfr_sku": "JD-BROADCAST-GULL-WING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Seabird \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Gull Wing",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/HELIUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543976499",
+   "mfr_sku": "JD-BROADCAST-BLUE-POINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Siren \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Broadcast/Blue Point",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/IRIS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585755699",
+   "mfr_sku": "JD-GRIFFIN-TOPAZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Amber \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Topaz",
+   "matched_pointe": "NEW WAVE TRAVERSE/SAFFRON",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585428019",
+   "mfr_sku": "JD-GRIFFIN-RITUAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Ceremony \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Ritual",
+   "matched_pointe": "NEW WAVE TRAVERSE/MOCHA",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452815923",
+   "mfr_sku": "JD-BIJOU-COLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Kola \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Cola",
+   "matched_pointe": "SKINTEX SF POP/CHOCOLATE",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585395251",
+   "mfr_sku": "JD-GRIFFIN-PALM-TREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Coconut \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Griffin/Palm Tree",
+   "matched_pointe": "NEW WAVE TRAVERSE/MEADOW",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433712179",
+   "mfr_sku": "JD-ALEUTIAN-SILT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Alluvium \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Silt",
+   "matched_pointe": "SKINTEX SF ASPECT/PORCELAIN",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433384499",
+   "mfr_sku": "JD-ALEUTIAN-DARK-DUCK-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Lagoondeep \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Dark Duck Blue",
+   "matched_pointe": "SKINTEX SF ASPECT/TEAL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433679411",
+   "mfr_sku": "JD-ALEUTIAN-RESTFUL-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Seashell \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Restful White",
+   "matched_pointe": "SKINTEX SF ASPECT/SNOW",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433253427",
+   "mfr_sku": "JD-ALEUTIAN-ALOE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Succulent \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Aloe",
+   "matched_pointe": "SKINTEX SF ASPECT/CAPRI",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433515571",
+   "mfr_sku": "JD-ALEUTIAN-LEAPFROG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Treefrog \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Leapfrog",
+   "matched_pointe": "SKINTEX SF ASPECT/GRASS",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433220659",
+   "mfr_sku": "JD-ALEUTIAN-ABYSS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Trench \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Abyss",
+   "matched_pointe": "SKINTEX SF ASPECT/INDIGO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433482803",
+   "mfr_sku": "JD-ALEUTIAN-GREEN-EARTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Verdant \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aleutian/Green Earth",
+   "matched_pointe": "SKINTEX SF ASPECT/GULL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576318515",
+   "mfr_sku": "JD-FAIRWAY-FIREPLACE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Hearth \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Fireplace",
+   "matched_pointe": "TEKLOOM FORUM/ASH",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576220211",
+   "mfr_sku": "JD-FAIRWAY-BOSC-PEAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Papaya \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Bosc Pear",
+   "matched_pointe": "TEKLOOM FORUM/CANARY",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576482355",
+   "mfr_sku": "JD-FAIRWAY-VERDIGREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Patina \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Verdigreen",
+   "matched_pointe": "TEKLOOM FORUM/GROVE",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453078067",
+   "mfr_sku": "JD-BIJOU-OBSCURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Murky \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Obscura",
+   "matched_pointe": "SKINTEX SF POP/PEWTER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576285747",
+   "mfr_sku": "JD-FAIRWAY-CAMELBACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Saddle \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Camelback",
+   "matched_pointe": "TEKLOOM FORUM/WHEAT",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576121907",
+   "mfr_sku": "JD-FAIRWAY-ATHENAEUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Sanctum \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Athenaeum",
+   "matched_pointe": "TEKLOOM FORUM/MARBLE",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576416819",
+   "mfr_sku": "JD-FAIRWAY-SIENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Terracotta \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Siena",
+   "matched_pointe": "TEKLOOM FORUM/HENNA",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576384051",
+   "mfr_sku": "JD-FAIRWAY-NOVA-SCOTIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Tidepool \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Fairway/Nova Scotia",
+   "matched_pointe": "TEKLOOM FORUM/LAPIS",
+   "pointe_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452750387",
+   "mfr_sku": "JD-BIJOU-CAVIAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Roe \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Caviar",
+   "matched_pointe": "SKINTEX SF POP/BLACK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453143603",
+   "mfr_sku": "JD-BIJOU-RABOSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Rosella \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Raboso",
+   "matched_pointe": "SKINTEX SF POP/GERANIUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453307443",
+   "mfr_sku": "JD-BIJOU-TROPHY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Scallop \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Trophy",
+   "matched_pointe": "SKINTEX SF POP/PENNY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453274675",
+   "mfr_sku": "JD-BIJOU-TEATRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Sunset \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Teatro",
+   "matched_pointe": "SKINTEX SF POP/BRIGHT GOLD",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435383347",
+   "mfr_sku": "JD-ANNENDALE-CANCUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Lagoon \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Cancun",
+   "matched_pointe": "GALLERIA TRIPOD/SURF",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441838643",
+   "mfr_sku": "JD-AURA-COYOTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jackal \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Coyote",
+   "matched_pointe": "BEYOND SYNERGY/REED",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700662323",
+   "mfr_sku": "JD-ANNENDALE-ELUSIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Mirage Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Elusive",
+   "matched_pointe": "GALLERIA TRIPOD/COCONUT",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435579955",
+   "mfr_sku": "JD-ANNENDALE-LANDSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Panorama \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Landscape",
+   "matched_pointe": "GALLERIA TRIPOD/REFRESH",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435711027",
+   "mfr_sku": "JD-ANNENDALE-TIN-LIZZIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Roadster \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Tin Lizzie",
+   "matched_pointe": "GALLERIA TRIPOD/MIST",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435350579",
+   "mfr_sku": "JD-ANNENDALE-ADMIRAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Seafarer \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Admiral",
+   "matched_pointe": "GALLERIA TRIPOD/STORM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435547187",
+   "mfr_sku": "JD-ANNENDALE-FERVENT-BRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Trumpet \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Fervent Brass",
+   "matched_pointe": "GALLERIA TRIPOD/MARSH",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435448883",
+   "mfr_sku": "JD-ANNENDALE-CRUISE-LINER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Yacht \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Annendale/Cruise Liner",
+   "matched_pointe": "GALLERIA TRIPOD/STERLING",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443509811",
+   "mfr_sku": "JD-BALBOA-PRADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Junglepath \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Prado",
+   "matched_pointe": "CONTESSA SIENA/CHESTNUT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442854451",
+   "mfr_sku": "JD-BALBOA-EUCALYPTUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Koala \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Eucalyptus",
+   "matched_pointe": "CONTESSA SIENA/DILL",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442952755",
+   "mfr_sku": "JD-BALBOA-MARSTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Atoll \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Marston",
+   "matched_pointe": "CONTESSA SIENA/MERLOT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280754227",
+   "mfr_sku": "JD-BALBOA-ERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Eon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Era",
+   "matched_pointe": "CONTESSA SIENA/IVORY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281475123",
+   "mfr_sku": "JD-BALBOA-RAILROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ironwood Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Balboa/Railroad",
+   "matched_pointe": "CONTESSA SIENA/BLACK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452881459",
+   "mfr_sku": "JD-BIJOU-MARIONETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Shadows \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Marionette",
+   "matched_pointe": "SKINTEX SF POP/APRICOT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452783155",
+   "mfr_sku": "JD-BIJOU-CITRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Topaz \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bijou/Citrine",
+   "matched_pointe": "SKINTEX SF POP/MINT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560786483",
+   "mfr_sku": "JD-COACHELLA-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Pinnacle \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Mountain",
+   "matched_pointe": "GALLERIA KALOONG/STONE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560720947",
+   "mfr_sku": "JD-COACHELLA-IGUANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Reptile \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Iguana",
+   "matched_pointe": "GALLERIA KALOONG/RESORT",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560655411",
+   "mfr_sku": "JD-COACHELLA-DUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Sanddrift \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Dune",
+   "matched_pointe": "GALLERIA KALOONG/HAZE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560688179",
+   "mfr_sku": "JD-COACHELLA-GAVIAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Mangrove \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Gavial",
+   "matched_pointe": "GALLERIA KALOONG/AVOCADO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560753715",
+   "mfr_sku": "JD-COACHELLA-MOCASSIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Palmfrond \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Mocassin",
+   "matched_pointe": "GALLERIA KALOONG/CAFE",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560557107",
+   "mfr_sku": "JD-COACHELLA-BRAZIL-NUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Cashew \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Brazil Nut",
+   "matched_pointe": "GALLERIA KALOONG/BAMBOO",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560819251",
+   "mfr_sku": "JD-COACHELLA-MUD-MASK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Clay \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Coachella/Mud Mask",
+   "matched_pointe": "GALLERIA KALOONG/MINK",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441740339",
+   "mfr_sku": "JD-AURA-ARCADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Boardwalk \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Arcade",
+   "matched_pointe": "BEYOND SYNERGY/PIER",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442068019",
+   "mfr_sku": "JD-AURA-GRAVITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Abyss \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Gravity",
+   "matched_pointe": "BEYOND SYNERGY/VELLUM",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442231859",
+   "mfr_sku": "JD-AURA-TOTEM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Animist \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Aura/Totem",
+   "matched_pointe": "BEYOND SYNERGY/MAHOGANY",
+   "pointe_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444263475",
+   "mfr_sku": "JD-BANDOLIER-DIAMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Brilliant \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Diamond",
+   "matched_pointe": "SKINTEX SF RHYME/FROST",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283211827",
+   "mfr_sku": "JD-BANDOLIER-TOPANGA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Canyon Faux Leather \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Topanga",
+   "matched_pointe": "SKINTEX SF RHYME/BIRCH",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444197939",
+   "mfr_sku": "JD-BANDOLIER-COPPERTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Emberglow \u00a6 Commercial Fabric \u00a6 Los Angeles Fabrics",
+   "matched_jd": "Bandolier/Coppertop",
+   "matched_pointe": "SKINTEX SF RHYME/PENNY",
+   "pointe_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  }
+ ]
+}
\ No newline at end of file

← 71eb013 auto-save: 2026-06-21T19:31:37 (1 files) — vendor-pricelists  ·  back to Dw Five Field Step0  ·  Fix drain PATH: add Homebrew postgresql@14/bin so psql resol f4affd2 →