Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta charset="utf-8"/>
  <meta content="no-snippet" name="robots"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <link href="https://www.costco.com/wcsstore/CostcoGLOBALSAS/images/favicon.ico" rel="icon"/>
  <title>
   Click to Save! Shop Online-Only Furniture, TVs, Patio, and More!
  </title>
  <style>
   html {-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%}
body {margin:0; padding:0; -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; -webkit-font-smoothing: antialiased !important; border-spacing:0}
table {border-collapse: collapse; mso-table-lspace: 0px; mso-table-rspace: 0px; }
table td {border-collapse: collapse; mso-line-height-rule: exactly;  }
table th { margin:0 !important; padding:0 !important; vertical-align:top; font-weight:normal; }
img, a img {border:none; outline:none; -ms-interpolation-mode: bicubic;} 
.ReadMsgBody {width: 100%;}
.ExternalClass {width: 100%;}
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height:100%;}
.yshortcuts a {border-bottom: none !important;}
.appleLinksGray a {color:#666666 !important; text-decoration:none !important;}
.appleLinksWhite a {color:#FFFFFF !important; text-decoration:none !important;}
.appleLinksBlack a {color:#000000 !important; text-decoration:none !important;}

 
a[x-apple-data-detectors] {
	color: inherit !important;
	text-decoration: none !important;
	font-size: inherit !important;
	font-family: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
}
  </style>
  <style>
   @media only screen and (max-width: 600px) {

.T-Size-2 {font-size:20px!important; line-height:28px!important;}
.T-Size-3	{font-size:18px!important;line-height:20px!important;}
.T-Size-4	{font-size:16px!important;line-height:18px!important;}
.T-Size-5	{font-size:12px!important;line-height:16px!important;}
.T-Size-6	{font-size:16px!important;line-height:18px!important;}
.T-Size-7 {font-size:36px!important;line-height:38px!important;}
.T-Size-8 {font-size:58px!important;line-height:60px!important;}
.T-Size-9 {font-size:70px!important;line-height:72px!important;}

 

.remove { display:none !important; width:0 !important; height:0 !important; }
.stack { display:block !important; }
.stack-header {display:table-header-group !important;}
.stack-footer {display:table-footer-group !important;}
.stack-image img {margin-bottom:20px !important;}

 

.center-align {text-align:center !important; margin:0 auto !important;}
.left-align {text-align:left !important;}
.right-align {text-align:right !important;}

 

.w-resize100 { width:100% !important; }
.w-resize90 { width:90% !important; }
.w-resize80 { width:80% !important; }
.w-resize50 { width:48% !important; }

 

.h-resize { height: 10px!important}
.h-resize30px { height:30px !important; }
.h-resize40px { height:40px !important; }


 

.resize90 img {width:90% !important; height:auto !important;}
.resize100 img {width:100% !important; height:auto !important;}


 

.showHidden {display: block !important;	margin: 0;	padding: 0;	overflow : visible !important;	width: auto !important;	max-height: inherit !important;	border: none !important;}
.mobile-hero img {width:100%; height:auto; margin:0 auto; display:block}
.break-hidden{ content: ''; display: block;}
.line-right{border-style: none!important;}
.line-bottom{border-bottom: 2px solid #494137 !important; width: 180px !important;}

}
  </style>
 </head>
 <body class="is-html-mode" data-contenteditable="true">
  <span class="acr-preheader" style="display:none !important;visibility:hidden;mso-hide:all;opacity:0;">
   $130 OFF Beautyrest 12" Queen Mattress, $60 OFF Shark FlexStyle, $40 OFF SodaStream Art Sparkling Water Maker Bundle and more!
  </span>
  <style type="text/css">
   div.preheader
{ display: none !important; }
  </style>
  <div class="preheader" style="font-size:1px;display:none !important;">
  </div>
  <div class="wcdm__">
   <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
    <tbody>
     <tr>
      <td height="10" style="font-size:0px;line-height:0px;">
      </td>
     </tr>
     <tr>
      <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:12px;color:#737474;">
       <a data-nl-type="mirrorPage" style="color:rgb(115, 116, 116);text-decoration:underline;" target="_blank">
        View in browser.
       </a>
      </td>
     </tr>
    </tbody>
   </table>
  </div>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="8" style="font-size:0px;line-height:0px;border-top:1px solid #d6d6d6;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:12px;color:#737474;">
      <a target="_blank">
       <img alt="Costco.com" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252Fstatic-email%252Fcostcodotcom-logo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTgwNzIxOH0:1u7dZF:_oSQcuO5lu06jwF8wZ9wcQf1IiXy2Vx7Dsod6NlkQtk" style="margin:0 auto;display:block;" width="134"/>
      </a>
     </td>
    </tr>
    <tr>
     <td height="8" style="font-size:0px;line-height:0px;border-bottom:1px solid #d6d6d6;">
     </td>
    </tr>
    <tr>
     <td height="16" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;border-spacing:0;border-collapse:separate;border-radius:25px;overflow:hidden;" width="696">
   <tbody>
    <tr>
     <td>
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;" width="696">
       <tbody>
        <tr>
         <td align="center" bgcolor="#eeeeee" height="35" style="vertical-align:middle;border-spacing:0;border-collapse:separate;overflow:hidden;border-top-left-radius:25px;border-top-right-radius:25px;">
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="696">
           <tbody>
            <tr>
             <td align="center" bgcolor="#0066CC" height="20" style="vertical-align:middle;border-spacing:0;border-collapse:separate;overflow:hidden;border-top-left-radius:25px;border-top-right-radius:25px;">
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <a target="_blank">
               <img alt="Found Exclusively Online Only" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fjfpjgkphksm39b64q8gm2gxj%252Fd_em5007_250423_em_hero_online_only.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgxNTcwOH0:1u7dZF:bG4f2hV3s2Upvq6sBdlcz0PTj5896fuhb7IzeWGfD08" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
               <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
                <img alt="Found Exclusively Online Only" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F797845msqmtpfqnqxh8gpckw%252Fm_b2c5007_us250423_em_hero_online_only.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D250/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgxNzc5Nn0:1u7dZF:Ui3llKSf3zQmCHdimORfPKO7bqHgHCDBMm5U7Lzz_M8"/>
               </div>
              </a>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Furniture
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="8">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Patio
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="8" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Appliances
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="8" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="8">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Computers
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Home and Kitchen
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="8">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Beauty
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="8" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Home Improvement
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="8" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="8">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" bgcolor="#005dab" class="resize100 h-resize75px" height="80" style="font-size:20px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-weight:bold;border-radius:10px;" width="162">
                  <a style="color:#ffffff;text-decoration:none;" target="_blank">
                   Sports
                   <br/>
                   and Fitness
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;border-spacing:0;border-collapse:separate;border-radius:25px;overflow:hidden;" width="696">
   <tbody>
    <tr>
     <td>
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;" width="696">
       <tbody>
        <tr>
         <td align="center" bgcolor="#eeeeee" height="35" style="vertical-align:middle;border-spacing:0;border-collapse:separate;overflow:hidden;border-top-left-radius:25px;border-top-right-radius:25px;">
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" width="696">
           <tbody>
            <tr>
             <td align="center" bgcolor="#0066CC" height="20" style="vertical-align:middle;border-spacing:0;border-collapse:separate;overflow:hidden;border-top-left-radius:25px;border-top-right-radius:25px;">
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F4-22-24%252Fb2c2892_us240422_4000235345.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTgxOTQ4NH0:1u7dZF:_CmLkbKnRD3RjfvwpTCzaVIKYdFoCOoNg-yCwzGu44k" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Thomasville Langdon Fabric Sectional with Storage Ottoman
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $999.99 Delivered
                          <br/>
                          After $600 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F4-14-24%252Fb2c2883_us240414_beautyrest.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTgyMTI4fQ:1u7dZF:OoudSxq6CWolw51G4Lee1dvSrG70wUM1G51l20e-vmg" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Beautyrest 12" Silver BRS900 Medium-Firm Queen Mattress
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $419.99 Delivered
                          <br/>
                          After $130 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F8-11-24%252Fb2c2986_us240811_4000262444.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTgyMjcwOH0:1u7dZF:Bvfp9vQ06qUh3y1PPpQJ4lQwesZE_5hewP-D4zETnNs" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Palm Bay 7-Piece Dining Table Set
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $899.99 Delivered
                          <br/>
                          After $300 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fp74gbs68p5chf5jbf3mc6ff%252Fb2c4008_us240125_4000271668.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgyNDJ9:1u7dZF:yI5y7RmzoZQuaCkGUK2kkhEtTm3OkKq2ys-Z4u9ISGo" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Estrella 72" Accent Cabinet
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $499.99 Delivered
                          <br/>
                          After $100 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fhhqs7tx5k28wg46cn86x676%252Fb2c4081_us250326_4000256854.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgyNTY5fQ:1u7dZF:120f7VO0x3oIqeZbVcg65B6g_YnGZ4MT__mvrZDoEJA" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Samsung 75" Class - DU7200D Series - 4K UHD LED LCD TV
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $549.99 Delivered
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F9pfqg39tm6ww6cmpsg64w839%252Fb2c5007_us250423_QLED4K.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgyODQyN30:1u7dZF:PRnpurKnLU9ubAtdyOhPF4g1H-2FykGrtVX4jHonLRU" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Samsung 65" Class - The Frame Series - QLED 4K - Art Mode Vision AI Smart TV
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,699.99 Delivered
                          <br/>
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                          Allstate 3-Year Protection Plan Bundle Included for 5 Years of Total Coverage
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Lenovo IdeaPad Slim 3 15.6-inch Touchscreen Laptop with AMD Ryzen 5 Processor" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fqc7q6xbfw6tcbbncvtf839b%252Fb2c5007_us250423_lenovo.png%253Fformat%253Dpng%2526width%253D275%2526height%253D275/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgyOTY3Mn0:1u7dZF:5IKPH6q2pk1eu41xDUmASrkdanQRPEE76dcFBtNjHeU" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Lenovo IdeaPad Slim 3 15.6" Touchscreen Laptop with AMD Ryzen 5 Processor
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $499.99 After $100 OFF
                          <br/>
                          Plus S&amp;H
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Oura Ring 4 Smart Ring, Exclusive Bundle, Ring + Additional Charger Included" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fn5nmnqw5h6m9wqwzn39kb8k%252Fb2c5007_us250423_oura.png%253Fformat%253Dpng%2526width%253D275%2526height%253D275/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgzMDg1Mn0:1u7dZF:0Dfj1V7jmzSEoXmPo21tCWx8XExmLuNKl1RjsWviP9g" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Oura Ring 4 Smart Ring, Exclusive Bundle, Ring + Additional Charger Included
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fsnjnzb9tr9s9474bq7ww7c%252Fb2c4018_us250113_4000190511.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgzMjAzfQ:1u7dZF:aD_0q7hKG4d8mmJFZ-aesr3jMTH8r7BJgMbVKx65pvQ" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          SunVilla Cypress 7-Piece Fire Modular Outdoor Patio Sectional Set
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,799.99 Delivered
                          <br/>
                          After $500 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fb7h744prv35vmhjjf6pp7kp%252Fb2c4087_us250401_Dillard.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgzMzIzNn0:1u7dZF:AIfx4p9694cDIEf-Ovp1F89fdSPxvHKY0LROCwqWCYU" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Thomasville Dillard 3-Piece Convertible Outdoor Sectional
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,999.99 Delivered
                          <br/>
                          After $500 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F9xjq2xnsqwvq87vt8z99prm%252Fb2c4041_us250212_Yardistry.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgzNDU5NX0:1u7dZF:CJbmIrMbC_4zkqhmJVgyq0aGeF3zX35UUXRjb_1XOME" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Yardistry 12' x 16' Gazebo with Aluminum Roof
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $2,199.99 Delivered
                          <br/>
                          After $600 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F4-5-24%252Fb2c2876_us240405_1266688.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTgzNTcyNX0:1u7dZF:wVknsFan5tWR8fXwaEVsOs6HwPzRqDVAN1H_U2bd-D4" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Lifetime Resin Outdoor 8' x 12.5' Storage Shed
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,199.99 Delivered
                          <br/>
                          After $300 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Frx3vqxfhks48nn434h36fwg4%252Fb2c4057_us250228_4000323547.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgzNjg3NH0:1u7dZF:hOF9zBEHxyFK4BNXU91s6ZxPPecN5PSOTrmONfx9PWA" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          ProSteel 18.6 cu. ft. HS19 Gun Safe UL Rated Electronic Lock, Fire Rated
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $799.99 Delivered
                          <br/>
                          After $700 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Kohler PureWash E815 Premium Bidet Toilet Seat with Remote Control" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F75qbw9mp64csqj85kpbcmt6q%252Fb2c5007_us250423_Kohler.png%253Fformat%253Dpng%2526width%253D275%2526height%253D275/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTgzODU3NH0:1u7dZF:ahDFKBCwKtvuXXX2IP0Dm--lzjzkW0Kz4ka0Ao3BvqI" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Kohler PureWash E815 Premium Bidet Toilet Seat with Remote Control
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $249.99 Delivered
                          <br/>
                          After $100 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Lorex Fusion 4K+ Wired System with 6-4K+ Bullet + 2-4K 180° Panoramic Cameras" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fvhk276f5x49q4tpgm28nf97%252Fb2c5007_us250423_Lorex.png%253Fformat%253Dpng%2526width%253D275%2526height%253D275/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0MDAwNX0:1u7dZF:etZ0RYl1c41SG13e2Q34HexXSlUHs3F_NHPDdC4G0V8" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Lorex Fusion 4K+ Wired System with 6-4K+ Bullet + 2-4K 180° Panoramic Cameras
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $999.99 Delivered
                          <br/>
                          After $300 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Jackery 3000 Pro Solar Generator + 2x 100W Solar Panels" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fqhg2p8htbhnmpg6x4w7x7%252Fb2c5007_us250423_Jackery.png%253Fformat%253Dpng%2526width%253D275%2526height%253D275/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0MTE5N30:1u7dZF:aRbPyIaNm8rwA1Y2ySEQBWXIYuhlL5tajOsxZh0j6PQ" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Jackery 3000 Pro Solar Generator + 2x 100W Solar Panels
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,699.99 Delivered
                          <br/>
                          After $900 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fw2jbnmc5hf4cm5sv5v6mrvj%252Fb2c4068-us250312_KidKraft.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0MzIxMn0:1u7dZF:lq6X7a1DIoENTwL8tzsfi6r83NdFhZRhfAiVjbfj8qw" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          KidKraft Summit View Swing Set
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,549.99 Delivered
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F4-24-24%252Fb2c2894_us240424_100804618.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTg0NDM2fQ:1u7dZF:CKKY4eCDskZdU-t_-fZWySg_1geK-gZBWEYgVzraiuA" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Bestway Platinum Series Power Steel 31'4" x 16' x 52" Above Ground Pool Set, Gray
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,549.99 Delivered
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Aquaterra Spas Montecito 45-Jet, 6-Person Rotomolded Spa" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fr4rxrgj3fchhksbn8hm8sc%252F100476158-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0NTcyN30:1u7dZF:u0pdKjQKyBFaMqDQPLzxwFGPey4FFW92uwISxUSYqnc" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Aquaterra Spas Montecito 45-Jet, 6-Person Rotomolded Spa
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $3,299.99 Delivered
                          <br/>
                          After $1,000 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F45xwx9xk7sm3tn9j84nqtn7%252Fb2c4059_us250301_Medal.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0NjkxNH0:1u7dZF:2k8XWdQNZjm_CclDBPvzVIuqQNrsZe3g2wsu2Fq0te4" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Medal Sports 89" Steel Leg Air Powered Hockey Table
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $549.99 Delivered
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Ninja Luxe Café Premier Series 3-in-1 Espresso, Coffee and Cold Brew Machine" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fmcqcbtmbrkwmth86vv49bg7%252Fb2c5007_us250423_ninja.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0ODA1NH0:1u7dZF:c49JXk2JjVdaliYMDpLvMPgbIIDUUTdj4O7Wp3Z68LI" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Ninja Luxe Café Premier Series 3-in-1 Espresso, Coffee and Cold Brew Machine
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Shark FlexStyle Air Styling and Drying System, Black" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ft6f5ss8wzmtnxxbgp5xzj%252Fb2c5007_us250423_shark.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg0OTEzNH0:1u7dZF:59-g5DqeQdG0tg8_ziMDf0CR0YE38lxyLKXgekoRmkI" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Shark FlexStyle Air Styling and Drying System, Black
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $60 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Osaki A.I. Envy 3D Massage Chair" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F6n7sxnt8ptnx6hc3m78s347h%252Fb2c5007_us250423_osaki.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1MDI0fQ:1u7dZF:8Gj91IdDCjcCIz-xUhauy5tEGpw3Bi_kl-Wpx5CVKrs" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Osaki A.I. Envy 3D Massage Chair
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $2,399.99 Delivered
                          <br/>
                          After $1,300 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Levoit Plasma Pro Core 300S Smart Air Purifier with Extra Filter Bundle" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F7fw9qcsfnr6z8qthg6sjxqc%252Fb2c5007_us250423_levoit.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1MTM3fQ:1u7dZF:YnZzE3hfBFLMTA5MH3srb1bbNV22ydfPGoCXjPp_olo" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Levoit Plasma Pro Core 300S Smart Air Purifier with Extra Filter Bundle
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $119.99 Delivered
                          <br/>
                          After $30 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="SodaStream Art Sparkling Water Maker Bundle" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F8b7ch77bkqrn8hkq45g737qx%252Fb2c5007_us250423_sodastream.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1MjV9:1u7dZF:kg_apVUn8AVfsnCn9PPiaDGE9rlSIfAuIVTlTZq26AY" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          SodaStream Art Sparkling Water Maker Bundle
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $79.99 Delivered
                          <br/>
                          After $40 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="All-Clad Copper Core 5-Ply Bonded Cookware, 15-Piece Set" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fqhrjbbw852vpqrnj3v9h6p%252Fb2c5007_us250423_allclad.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1MzkzfQ:1u7dZF:vfNuFsvsbjHbodEXU6JWEZngWlopitfHCScz-Ko4y3Q" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          All-Clad Copper Core 5-Ply Bonded Cookware, 15-Piece Set
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $1,699.99 Delivered
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Novaform ComfortGrande Plus Advanced Gel Memory Foam Mattress Topper" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fbg2xqt7tj4hzqhjcwskp4sq%252F4000347842-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1NTI2Nn0:1u7dZF:WoOz8yAK0Q8VDklyKH7jpgTUxjAOY8p__iAyN7aQ7UA" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Novaform ComfortGrande Plus Advanced Gel Memory Foam Mattress Topper
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $30 - $40 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Serenity by Tempur-Pedic Memory Foam Bed Pillow" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Ffrj38fjj823h2jf6tbwc96%252F4000306222-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1NjM5MX0:1u7dZF:DwxQ7h8AzdFqIzYrG94q8rut3LI6zCaA3vbKizKIN0U" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Serenity by Tempur-Pedic Memory Foam Bed Pillow, Standard Size
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $24.99 Delivered
                          <br/>
                          After $10 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="iRestore Professional 282 Laser Hair Growth Device + Anti-Hair Loss Serum" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ff4954kg5hnghc5qmpm8cxqg%252Fb2c5007_us250423_irestore.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg1NzUwMn0:1u7dZF:u1HUX8zUaqxS5IjWoUI_77HN4M6NNFFJKmGCyScCt2E" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          iRestore Professional 282 Laser Hair Growth Device + Anti-Hair Loss Serum
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $669.99 Delivered
                          <br/>
                          After $300 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="SeroVital Skin Revive, 240-Count" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ftqs3k9q6z35hts5bwb5c6h9%252Fb2c5007_us250423_serovital.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg2MDc3Nn0:1u7dZF:NqXARBYTq_LvhI43aADre2GHX8moJbSgdo9ny-lA0-g" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          SeroVital Skin Revive, 240-Count
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $54.99 Delivered
                          <br/>
                          After $15 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Kirkland Signature ProCare with Dual HMO's, Non-GMO Infant Formula 42 oz, 2-Pack" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fb8fpkr3hwnxjn84vb4qm6s5%252Fb2c5007_us250423_procare.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg2MjI3Nn0:1u7dZF:eYZp-ob6qTLqQKzj5IhoxB1Xs4jEiY1oiPlGMvJzYJ4" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Kirkland Signature ProCare with Dual HMO's, Non-GMO Infant Formula 42 oz, 2-Pack
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $12 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Sekkisei Emulsion Enriched Moisturizing Set" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fk4qnk4jm6rx5pc2jwj4hj%252Fb2c5007_us250423_sekkisei.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg2MzQ5OX0:1u7dZF:-RUWrzK294gajtR1RDXkgQ2W5SWsoRge0h1_dlUenbQ" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Sekkisei Emulsion Enriched Moisturizing Set
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $32.99 Delivered
                          <br/>
                          After $10 OFF
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#eeeeee;margin:0 auto;" width="696">
           <tbody>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
               <tbody>
                <tr>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F3j8rpwgh8q3fqqxqv8xz47bq%252Fb2c5007_us250423_toplg.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg2NTQwMX0:1u7dZF:c1MUY5NmnN39HT5-vTrjc1FC2FoWBtC03vc2PRxL8wo" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          LG 5.5 cu. ft. Top Load Washer and 7.3 cu. ft. Rear Control Dryer with Easy Unload Bundle
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $300 - $600 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F3-13-24%252Fb2c2854_us240313_4000103974.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTg2NzA5Nn0:1u7dZF:QqYBvBBD_SgfW2Z10YoqEx0rAcBGF7v_wHE9112KQtM" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          LG 26 cu. ft. Smart Counter-Depth MAX French Door Refrigerator
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $700 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
                 </td>
                 <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
                  <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
                   <tbody>
                    <tr>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F7-31-24%252Fb2c2977_us240731_100530232.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTg2ODQ1OH0:1u7dZF:9sm0BVK5NuL7bowdgmgaOwJ8EZJ0jpvxBur88Y5w2RE" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Samsung 22 cu. ft. Counter Depth Side-by-Side Refrigerator
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $350 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                     <td style="font-size:0px;line-height:0px;" width="20">
                     </td>
                     <td align="center" class="w-resize50" valign="top">
                      <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
                       <tbody>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td align="center" class="resize100">
                          <a style="color:#333333;text-decoration:none;" target="_blank">
                           <img alt="Costco Direct" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Flive%252Fresource%252Fimg%252F3-31-24%252Fb2c2873-us240331_100572.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTg2OTU3NH0:1u7dZF:bDBnUtkXLNLcByZFDh4s3lP5VKP5yhHCREWSJDK9GrA" style="display:block;" width="158"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td height="10" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                          Online-Only
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                          Whirlpool Top Control Dishwasher with 3rd Rack and Large Capacity
                         </td>
                        </tr>
                        <tr>
                         <td height="4" style="font-size:0px;line-height:0px;">
                         </td>
                        </tr>
                        <tr>
                         <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                          $500 OFF
                          <br/>
                         </td>
                        </tr>
                       </tbody>
                      </table>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                 <td class="remove" style="font-size:0px;line-height:0px;" width="30">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
          <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#eeeeee;" width="696">
           <tbody>
            <tr>
             <td height="20" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td bgcolor="#d32029" height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" bgcolor="#d32029" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:25px;color:#ffffff;" valign="top">
      <strong>
       Ends Today, 4/23/25!
      </strong>
     </td>
    </tr>
    <tr>
     <td bgcolor="#d32029" height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f0ece4;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#085b34;text-decoration:none;font-weight:bolder;" target="_blank">
           LG Appliances
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Earth Day Savings $50 - $1,200 OFF" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fqzjr55s7st9f8gc4mhwckj%252Fd_b2c4089_us250407_em_banner_lg_earth.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3MDc1OX0:1u7dZF:tI2gznPjb9ui2OmLKIpIypl8znQiHqSDNW9RRgzbFKE" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Earth Day Savings $50 - $1,200 OFF" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ffqg3x4hz4947f34tp5kzxr3j%252Fm_b2c4089_us250407_em_banner_lg_earth.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3MjE0fQ:1u7dZF:019t4oVtOKxRX7snMPOGDiWDcd7wvqjonMqtaV2-u4c"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f0ece4;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#085b34;text-decoration:none;font-weight:normal;" target="_blank">
       Valid Through 4/23/25 |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td bgcolor="#d32029" height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" bgcolor="#d32029" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:25px;color:#ffffff;" valign="top">
      <strong>
       Ends Today, 4/23/25!
      </strong>
     </td>
    </tr>
    <tr>
     <td bgcolor="#d32029" height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#003b71;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#ffffff;text-decoration:none;font-weight:bolder;" target="_blank">
           Spring Into Good Things!
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="GE Appliances $80-$1,500 OFF" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fvbmkh4vtkhh95sc5vrmpt8%252Fd_b2c5007_us250423_em_banner_springappliances.jpg%253Fformat%253Djpg%2526width%253D696%2526height%253D225/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3MzMwN30:1u7dZF:tUW9s8543kOIcTjt_qdCdgdqcPguUVCZSMX9U1Yr5Pw" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="GE Appliances $80-$1,500 OFF" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fr5pwnb2qmj6xmxs6r3jm4x25%252Fm_b2c5007_us250423_em_banner_springappliances.jpg%253Fformat%253Djpg%2526width%253D550%2526height%253D450/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3NDg3Nn0:1u7dZF:bwBZmBXNt24b3-ujUMEMc08oVyzoSpvKEbn7pPXIh9g"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#3db3e7;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#002A52;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="320">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td height="15" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="MSI Modern 15H 15.6-inch Touchscreen Laptop with Intel Core Ultra 9 Processor" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ff8sxqfr97jj9zvfxmgsbr2c%252Fb2c5007_us250423_MSI.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3NjY1NX0:1u7dZF:s9mN0gJPOJ1MjWcEmTImHqq9OfTvLCUemXDAMBSa99s" style="display:block;" width="330"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td align="left" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:20px;line-height:28px;">
                  <span style="color:#005dab;text-decoration:none;">
                   <strong>
                    Online-Only
                   </strong>
                  </span>
                 </td>
                </tr>
                <tr>
                 <td align="left" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:18px;line-height:22px;color:#000000;">
                  MSI Modern 15H 15.6" Touchscreen Laptop with Intel Core Ultra 9 Processor
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:20px;color:#000000;font-weight:bold;">
                  $799.99 After $200 OFF
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="320">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td height="15" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="HP Pavilion x360 14-inch 2-in-1 Laptop with Intel Core 5 Processor" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fvx4s93wncj9rgffbmcqjb%252F1825510-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3ODI0NX0:1u7dZF:LShiz_j2C2Q-Q_D7y26aXBcu6kmDnwlohVYteJJ1taA" style="display:block;" width="330"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td align="left" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:18px;line-height:22px;color:#000000;">
                  HP Pavilion x360 14" 2-in-1 Laptop with Intel Core 5 Processor
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:20px;color:#000000;font-weight:bold;">
                  $549.99 After $150 OFF
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#def0b2;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="650">
       <tbody>
        <tr>
         <td align="center" style="font-size:22px;line-height:25px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
          <a style="color:#333333;text-decoration:none;font-weight:bolder;" target="_blank">
           Mother's Day Gifts
          </a>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#F1FBE0;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Pre-Order Mother's Day Flowers" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F97kzh9h3qhrc4kr4cgbjpg%252F4000363433-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg3OTQ4NX0:1u7dZF:Tn0z_7xjsA3nqvQfC3RNu7R82_Jl4eNQACwbDJS9MA4" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Pre-Order Mother's Day Flowers
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $47.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="The Fruit Company's Savory Charcuterie Box" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fc79mrggw5ft6bbwzn3vnnpmn%252F1695285-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4MDU5OH0:1u7dZF:Y9S4lcXLWFFgDCEwhNOL1IyrER0H9c0tU3kG-ld71-U" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  The Fruit Company's Savory Charcuterie Box
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $79.99 Delivered
                  <br/>
                  After $20 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Round Brilliant 0.50 ctw VS2 Clarity, G Color Diamond 14kt White Gold Solitaire Pendant" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ffbt48qw4hqjn74jnt5wnc6v%252Fb2c5007_us250423_diamond.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4MjMwOH0:1u7dZF:SXNkG0uZFP8AQJlidgOKHG91ol5HmPoKsssSFrVrrMA" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Round Brilliant 0.50 ctw VS2 Clarity, G Color Diamond 14kt White Gold Solitaire Pendant
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $999.99 Delivered
                  <br/>
                  After $300 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Shark FlexStyle Air Styling and Drying System, Champagne" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fnt5hmgsx9c6nkvtv87qzh8qr%252Fb2c5007_us250423_champagne.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4MzUyfQ:1u7dZF:2KBYXoVI5LH5KFsSPUPuT2_rtV27okjJR-kUQI68CMY" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Shark FlexStyle Air Styling and Drying System, Champagne
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $60 OFF
                  <br/>
                  Free Shipping
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#F1FBE0;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Spend $999+ and Save $150 on select jewelry" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fsk5mmmkzqqgjrkgshxgcmxn%252Fd_em5005_us250421_Jewelry_Spend_and_Save.jpg%253Fformat%253Djpg%2526width%253D699%2526height%253D226/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4NTI1Mn0:1u7dZF:nwum5ESi-pcoo11uBAyZe6lpd6nO4uONdmiljbNHd3c" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Spend $999+ and Save $150 on select jewelry" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fvsxvw9gbkbxn495fgntvjp%252Fm_em5005_us250421_Jewelry_Spend_and_Save.jpg%253Fformat%253Djpg%2526width%253D551%2526height%253D451/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4NjY1NH0:1u7dZF:aTfk5nkNlyX4YAPBecTDAAnfQlwNn2kFhyXnYhjsz2I"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#ddf0b2;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333;text-decoration:none;font-weight:normal;" target="_blank">
       Online-Only | Valid 4/21/25 - 5/7/25
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Cuisinart 9-Cup Continuous Feed Food Processor" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fg8j3hfj5nxkjwjv6ccr73s%252F4000332989-847__1.jpg%253Fformat%253Djpg%2526width%253D175%2526height%253D175/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4ODI2M30:1u7dZF:2to6H7Y-XV4TBofbDCKXWn41IYk4lttLsLFgo7gbOMM" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Cuisinart 9-Cup Continuous Feed Food Processor
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $119.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="nutribullet Pro Plus Blender, Matte Black" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F5f2vpx3tm86txfm3r7mbq9%252F4000339274-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg4OTQ4Mn0:1u7dZF:Pa1A7GpoL6qqj_MoRXM8M-dyw_qecpyjdgVShL3HWUc" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  nutribullet Pro Plus Blender, Matte Black
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $99.99
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Philips 800 Series Automatic Espresso Machine" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F79wswrwh44gk74x34qkzbrvq%252F1738491-847__2.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5MDY2fQ:1u7dZF:megF21hoJzPdtnE_9xHnP8-eVMsXWEaseDe_8Z22j5Q" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#005dab;font-weight:bold;">
                  Online-Only
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Philips 800 Series Automatic Espresso Machine
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $299.99 After $100 OFF
                  <br/>
                  Plus S&amp;H
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Cuisinart Hurricane Blender" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fv7f7g4m4c8r9rt539gmf6%252F4000333055-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5MTc3M30:1u7dZF:mxq5MPxdnnDillTvplR5i1Olkee4h0gWkk4tI7QMepM" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Cuisinart Hurricane Blender
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Seville Acacia Top Kitchen Cart with Drawers" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Ff489rhmkjqtj7gvs5w63vw%252F4000296817-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5Mjg4MX0:1u7dZF:x8EgJoDQHSDQcJ4RpLP1jw8mTeyr6qyMnJ0ojgmTXY0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Seville Acacia Top Kitchen Cart with Drawers
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $124.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Ftq55q75jz3cw5bj37g8nwhk%252Fb2c4087_us250401_Holden.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5NDY1OH0:1u7dZF:JuNcnMOVQ_PkEnP_6rZkY34uWsR-6QTmtAMPFAL5Huw" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Holden 3-in-1 TV Console
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $479.99 Delivered
                  <br/>
                  After $120 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fgjrmfmv5r5th96xrf8npn4s%252Fb2c4059_us250301_keeley.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5NjMxfQ:1u7dZF:V1lln2UsdspgecaiDAiq5xXmoxljY0DSgNJE-8gkL70" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Keeley 72" Accent Cabinet
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $499.99 Delivered
                  <br/>
                  After $150 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Frz66n5r4f7wgxb5fvx5bt7%252Fb2c4098_us250414_4000321645.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5Nzk3OX0:1u7dZF:I_RnaLuniURvcJ-2J570GjmY_XzUHq6NZIJsSaVxlH8" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#d32929;font-weight:bold;">
                  Ends Tomorrow, 4/24/25!
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Rhodes Leather Power Reclining Sofa
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $1,199.99 Delivered
                  <br/>
                  After $400 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="WelHome Geometric Tub Mats, 2-Pack" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F89q3g8xv99vqghmt6b67j2v%252F4000300822-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTg5OTU0NX0:1u7dZF:aMqqSHclCpzBrFQEXYRQ8Emd2YZUFa41ApQsOI0eYvM" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  WelHome Geometric Tub Mats, 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $22.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Purely Indulgent Bath Rugs, 2-Pack" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fkzkg884msz7r89g9rsk8j8r%252F4000328939-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwMTMzOH0:1u7dZF:IXxDwkA8q_nDTjnO13Zt6WR5O1udgSwi0412_js0tTQ" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Purely Indulgent Bath Rugs, 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $29.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Natco Home 20-inch x 84-inch Runner, 2-Pack" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fm6hxw5nw46qs98h9xhq8xsv7%252F4000286486-847_gray_1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwMjY5fQ:1u7dZF:AIWTfkEGCDF4bFz1roFyGVDo5qTEgq2zH4aMjweh2vc" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Natco Home 20" x 84" Runner, 2-Pack
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $44.99 Delivered
                  <br/>
                  After $10 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Columbia Outdoor Blanket" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Ftxwqkxqmq98xbfbcrgrh5t%252F4000308133-847_green_1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwMzg0Nn0:1u7dZF:4eeoW7HBMxiFrmUrNeake0jzWtFeGeOy3yKxYY0BPik" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Columbia Outdoor Blanket
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $20.99 Delivered
                  <br/>
                  After $4 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Karcher S4 Twin Push Sweeper" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Ff6ckv84brpqf9h7p4w3fx%252F4000336607-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwNDk1N30:1u7dZF:op5RZybrxwZQZNhRN5ZWWPL8Kduw_MQJSmKg1vAitiQ" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Karcher S4 Twin Push Sweeper
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $129.99 Delivered
                  <br/>
                  After $20 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Direct" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fbn5chjs4pb9vnwjzq6773qcp%252Fb2c5007_us250423_greenworks.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwNjA2NH0:1u7dZF:beYu125ElEYUtAE227xoBwhqvlMiOTM3q3Jj4ELAm4c" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Greenworks 80V 42" Zero-Turn Ride-On Mower with (6) 8Ah Batteries, 1.5kW Charger and Bagger
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $4,999.99 Delivered
                  <br/>
                  After $700 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Value Express Cabinets by Tuscan Hills Quality Affordable Cabinets" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fkr2c5x8hv6pt3xj3rb7h56s%252F100725551-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwNzd9:1u7dZF:S1-mcwA9RUEbzZ-Pj_Iy6xEBfw0lHzwKWbiEJ2JAUW4" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Value Express Cabinets by Tuscan Hills Quality Affordable Cabinets
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Shipping Included and Delivery in as Little as 2 Weeks
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Shaw Flooring and Carpet" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fq4mt99jwc3fxcrj79vrxkhx%252Fb2C4096_us250411_shaws.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkwODkyN30:1u7dZF:-T6XFEVMXXRma0P-YKk4ZDKQCEFAzuFNQj9God1NoAg" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Shaw Flooring and Carpet
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Receive a 15% Costco Shop Card for Qualifying Shaw Flooring and Carpet Purchases
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="320">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td height="15" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Valid 4/1/25 - 4/30/25" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F2rxht56wb9xk4pmbs79k69t%252Fm_25w06310_email_banner_mar_connection.png%253Fformat%253Djpg%2526width%253D551%2526height%253D451/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxMDUzfQ:1u7dZF:PKl2AUzzvdnk01GXkWYiswQUhzwlhB6LuQscASq_SFA" style="display:block;" width="330"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:18px;line-height:22px;color:#000000;">
                  Valid 4/1/25 - 4/30/25
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="320">
          <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
           <tbody>
            <tr>
             <td height="15" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center" class="resize100">
              <a target="_blank">
               <img alt="Valid 4/9/25 - 5/4/25" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fczrc2p3wnwps3nnw5k55h8c%252Fm_25w07275_em_ban_april_mvm_cover.jpg%253Fformat%253Djpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxMTY3OH0:1u7dZF:4rDyuw_3guYL9dZRw96olNCEeHwtpxqKFy-qlMBSv2Y" style="display:block;" width="330"/>
              </a>
             </td>
            </tr>
            <tr>
             <td height="10" style="font-size:0px;line-height:0px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="85%">
               <tbody>
                <tr>
                 <td align="center" style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:18px;line-height:22px;color:#000000;">
                  Valid 4/9/25 - 5/4/25
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize40px" style="font-size:0px;line-height:0px;" width="20">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Kirkland Signature Aller-Fex Antihistamine 180 mg, 180 Tablets" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fwnng7c4smmmmxntxssfjqt7p%252F987677-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxMjc5NH0:1u7dZF:nGUB3fw2Zfov7wFa9DGPWpBWN4qNSmsbDeN6OORZDpo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Kirkland Signature Aller-Fex Antihistamine 180 mg, 180 Tablets
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $26.99 Delivered
                  <br/>
                  After $7.50 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Kirkland Signature Aller-Tec, 365 Tablets" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Ff5cv5cfc9wkb7fzh4s8qrjm%252F311676-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxNDAzNn0:1u7dZF:8Uo-Bu5M6NIlSTShiVqYAptJGf9DzPajhh45h8En9O4" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Kirkland Signature Aller-Tec, 365 Tablets
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $11.49 Delivered
                  <br/>
                  After $3 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Kirkland Signature Non-Drowsy AllerClear Antihistamine 10 mg" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fwbs3gz69qw5trfnp86ctrw4t%252F529688-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxNTE5M30:1u7dZF:dd5M9VypDS2Yf6MRMBnv_0lqbFau0qHIeNzMVcACYCE" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Kirkland Signature Non-Drowsy AllerClear Antihistamine, 10 mg
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $8.49 Delivered
                  <br/>
                  After $3 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Kirkland Signature Aller-Flo 50 mcg Allergy Spray" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Fj6m5twv3xpf8kfnk85wj8sx%252F1586629-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxNjMxOH0:1u7dZF:qLEOjkXHM7vH8Zh1SGtD4D262urVK6awBVy42qs_zOg" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Kirkland Signature Aller-Flo 50 mcg Allergy Spray
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $18.99 Delivered
                  <br/>
                  After $4 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Fresh protection day &amp; night $10 OFF" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fxxw3fjnc6p868cpchjw46rn%252Fd_b2c5007_us250423_em_hero_depend.jpg%253Fformat%253Djpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxNzQyN30:1u7dZF:lGvyCll21ueonFK-Ad5CK9riQ5RWW0XKDU7XOA1ugQg" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Fresh protection day &amp; night $10 OFF" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F6wvb3vcqf8sv8xj8k7rsrf%252Fm_b2c5007_us250423_em_hero_depend.jpg%253Fformat%253Djpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkxODUxOX0:1u7dZF:j3tGfs3g3UEXM7ZOAqoRvAtASc50hDO8OPAoK7ibt_8"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#eef4ff;" width="696">
   <tbody>
    <tr>
     <td height="5" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333;text-decoration:none;font-weight:normal;" target="_blank">
       Valid 4/9/25 - 5/4/25
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:18px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#333333;text-decoration:none;font-weight:normal;" target="_blank">
       While Supplies Last |
       <strong>
        Shop Now
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Tide Pods with Ultra Oxi Laundry Detergent Pods, 104-Count" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fqkhccb75g3tfh79b7m6mfsbz%252F3247022-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkyMDA2M30:1u7dZF:puLjepeZ4wRHxloetmQVvlIZQ3_OKYezO7ZytuzrBL0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Tide Pods with Ultra Oxi Laundry Detergent Pods, 104-Count
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $5.40 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Tide Ultra Concentrated Liquid Laundry Detergent, 152 Loads, 170 fl oz" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F8rkr3w5f6twqjnvj8xxwhcks%252F1709318-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkyMjM3NH0:1u7dZF:QbZsSfsotRNDqivk1w9CsdSa4EVxO5K7rcsAlN6fDo0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Tide Ultra Concentrated Liquid Laundry Detergent, 152 Loads, 170 fl oz
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $5 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Tide Plus Ultra Oxi Powder Laundry Detergent, Original, 143 Loads, 225 oz" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fkh4zmr69xqwjscjt7wphffkx%252F4000350964-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkyNDU4fQ:1u7dZF:dLTbFrHKGR_eJzLeXEIWtaBFg-Wjrc_uz3Q54KiAJZ0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Tide Plus Ultra Oxi Powder Laundry Detergent, Original, 143 Loads, 225 oz
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $6 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Tide Pods with Downy Laundry Detergent Pods, April Fresh, 104-Count" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fnx9t3cpw5nn7k27f66v7wr%252F3222470-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkyNjc5fQ:1u7dZF:9D7HbK0zZ9UgUE6sEQK3mm2xoYbp_gRuoEwqisAfJKg" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Tide Pods with Downy Laundry Detergent Pods, April Fresh, 104-Count
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $5.40 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="SkinnyPop Popcorn, Variety, 36-Count" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Ffjrb84cch9nnw679pcvx3zjb%252F100737185-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkyODk3fQ:1u7dZF:LB3Namvcr1pk9Zx-hCIp10aRnoM91ZCvl910-U78rAU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  SkinnyPop Popcorn, Variety, 36-Count
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $4 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Snyder's of Hanover Mini Pretzels, 0.9 oz, 60-Count" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fm6stcjfkpwqmq824js9vfjg%252F622061-inc__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkzMTAzOH0:1u7dZF:EoK6cqBfYcV4PXt2eShdauEYqo3NZJXonyj2MQXVkGo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Snyder's of Hanover Mini Pretzels, 0.9 oz, 60-Count
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $3 OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize30px" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Nutrient Survival Freeze Dried Emergency Food Supply 6-Count (122 Total Servings)" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252Fgn8bnbgqq5rbm4pjkczkz%252F1628941-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkzMjg4OH0:1u7dZF:yM9e-mY-_Z1avLVPcrnEYyHOCLYHDlJJoJRgR5n5z-4" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Nutrient Survival Freeze Dried Emergency Food Supply 6-Count (122 Total Servings)
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $139.99 Delivered
                  <br/>
                  After $60 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Great Southern Grass Fed Beef, ABF NY Strip CC Steak,(14/12 oz Per Steak), 14 Total Packs, 10.5 lbs Total" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F8s2rh4qsbpkj4mv9rmk92b%252F1012553-847__1.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkzNDU4M30:1u7dZF:4uLKab-h3AiYB--QiwMH0U2OlLyJQ1G8ZXL4U3xV9F0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;line-height:16px;font-size:14px;color:#333333;">
                  Great Southern Grass Fed Beef, ABF NY Strip CC Steak, (14/12 oz Per Steak), 14 Total Packs, 10.5 lbs Total
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $199.99 Delivered
                  <br/>
                  After $50 OFF
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f4e8d6;" width="696">
   <tbody>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:24px;line-height:28px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#d32029;text-decoration:none;font-weight:normal;" target="_blank">
       <strong>
        SPECIAL EVENTS
       </strong>
      </a>
     </td>
    </tr>
    <tr>
     <td align="center" style="font-size:16px;line-height:20px;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;">
      <a style="color:#000000;text-decoration:none;font-weight:normal;" target="_blank">
       Exciting products for a limited time.
      </a>
     </td>
    </tr>
    <tr>
     <td height="10" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
    <tr>
     <td align="center">
      <div>
       <!--[if mso]> <v:rect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.costco.com/special-events.html?EMID=B2C_2025_0423_OnlineOnly_USE" style="height:30px;v-text-anchor:middle;width:150px;" stroke="f" fillcolor="#000000"> <w:anchorlock/> <center> <![endif]-->
       <a style="border-radius:25px;background-color:#000000;color:#ffffff;display:inline-block;font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:16px;font-weight:bold;line-height:40px;text-align:center;text-decoration:none;width:150px;-webkit-text-size-adjust:none;" target="_blank">
        Shop Now
       </a>
       <!--[if mso]> </center> </v:rect> <![endif]-->
      </div>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#f4e8d6;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Human Touch Massage Chairs" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F48kcrq44g84vz88wvvpn5vm%252Fb2c5007_us250423_massage.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkzNjUwN30:1u7dZF:YE0X22fXkaF0F51RLz_VItwqnT9zQoJyDe9cWJpC6M0" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Human Touch Massage Chairs
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Eureka Ergonomic Serene Ella Executive Office Chair" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F6tgrbbrhz2fxtcbmz665m6b%252F4000312537-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTkzODcyN30:1u7dZF:vP2Rsq-WVIYlpIPPZ4IVJsS-Z8-i9dpnfWRjSQKLhuk" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Eureka Ergonomic Serene Ella Executive Office Chair
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $999.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Transformer Table Extendable Outdoor Dining Set" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F45n339k6xqgpxq6cgq2schtn%252F4000358771-847_6piece_darkbrown_1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk0MTE0NH0:1u7dZF:9DFs2NBgW8dngVEs1T_Y5lRZ6zYSKcozOY8ToOtsqR0" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Transformer Table Extendable Outdoor Dining Set
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $2,999.99 Delivered
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="EcoFlow Power Stations with Solar" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F8v5bwxvsjxzmmrz7j29tjh6%252Fb2c4089_us250403_ecoflow.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk0MzY0OH0:1u7dZF:EdUGI_5VKNq7RgnrMCopchMFjI9xN0EtcMvWyrL-MZU" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  EcoFlow Power Stations with Solar
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#f4e8d6;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Jennifer Adams LUX Collection Bedding" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252Frrc49w65mhfcvkjkp763wpr%252F4000355207-847_gray_1.jpg%253Fformat%253Djpg%2526width%253D175%2526height%253D175/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk0NTgwM30:1u7dZF:Z0i6QffZ2_wqVPVT6TJgyxWTkVAbElUG-EEEJFL6Ux8" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Jennifer Adams LUX Collection Bedding
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $89.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Bucked Up Pre-Workout and Creatine" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F24x3rr59w9f8jhb97gjx9xk%252Fb2c4093_us250407_4000358306.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk0Nzc4N30:1u7dZF:3uw-HFW61wTZRwuoCGlE4yEFeuWxh6RE_LodMB-BzP0" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Bucked Up Pre-Workout and Creatine
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Starting at $35.99
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Lovesac PillowSac Accent Chair Bundle with Ottoman" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fm7rtxvrjmknpsf69x9mfm8r%252Fb2c4082_us250328_4000357567.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk0OTIzMn0:1u7dZF:MNO6Eq93941hf-RzePb_7vpyKo043RG7po2OWsj5QTE" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Lovesac PillowSac Accent Chair Bundle with Ottoman
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Traeger Mesa Pellet Grill" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fas%252F68fcxcc6xmcx883j3cckjq%252F1712298-847__1%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk1MDY2Mn0:1u7dZF:jso3bRB24qB-Rz2XdW4wsQcycg5ZU0NlTPb46TlygDE" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Traeger Mesa Pellet Grill
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $599.99 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#f4e8d6;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Costco Next. Member only value more products and brands" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F9-29-24%252Fd_b2c2545-us230413_em_banner_costconextslim.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTk1MjUyNH0:1u7dZF:wF8WJC5NhArr5dhHxHhBuBWWxRTnIH1RI8TyG2EsRRY" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Costco Next. Member only value more products and brands" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F9-29-24%252Fm_b2c2545-us230413_em_banner_costconextslim.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTk1NDk0N30:1u7dZF:mA1X_fHqonB_f8-ohMwYb_LuuD9SJX-gEeCFqGE48lc"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="background-color:#EEEEEE;margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="K-Beauty and Lifestyle products" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252FU447IH35%252Fat%252F9985g4bcbch66stfj98wfr6%252F100351459-847__2.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk1NzE3OH0:1u7dZF:aOHGaL4DL-QPYH3usC_J7XLGNGJOJdr1EhdKUuimIX0" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  by Sophie
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  K-Beauty and Lifestyle products
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Additional 15% OFF
                  <br/>
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:11px;line-height:12px;color:#0b6e22;">
                  Minimum purchase of $50 to check out.
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Sovereign Solid Bronze Casket (96 oz)" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fg8s24vwcvr93vfqst4hprw%252Fb2c5007_us250423_bronze.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk1OTU3fQ:1u7dZF:FNiehNolc_DF6d4mz49F7yQYKJqJ9zWuGREU7iY_tRQ" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  Titan Casket
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Sovereign Solid Bronze Casket (96 oz)
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  $15,999 Delivered
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack h-resize" style="font-size:0px;line-height:0px;" width="35">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="330">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="330">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Do-It-All Bags" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fhknt48k44q5c6qsb7tm9tn%252Fb2c5007_us250423_bag.jpg%253Fformat%253Djpg%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk2MjMxfQ:1u7dZF:cs9ntjCclD__LJ8GTL6Udrsk7V4eDfVxRdCZfrXHHFY" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  baggallini
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Do-It-All Bags
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Additional 30% OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="20">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Fine Art that makes a House a Home" border="0" height="158" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F49wp46b2h6j84tpx3n368t%252Fb2c5007_us250423_art.png%253Fformat%253Dpng%2526width%253D350%2526height%253D350/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk2NDQ4OH0:1u7dZF:_rWpoIWQ6mQT1EDqV-1v1PUHYVzuDsdZ61ZrX_1cmSk" style="display:block;" width="158"/>
                  </a>
                 </td>
                </tr>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;color:#005dab;font-weight:bold;">
                  Thomas Kinkade Studios
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#333333;">
                  Fine Art that makes a House a Home
                 </td>
                </tr>
                <tr>
                 <td height="4" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                  Additional 10% OFF
                  <br/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="remove" style="font-size:0px;line-height:0px;" width="30">
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;background-color:#EEEEEE;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <a target="_blank">
       <img alt="Download the Costco App Today!" border="0" class="remove" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F22w0299%252Fd-em-banner-22w0299-app.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTk2NjU5OH0:1u7dZF:SNezvpM_-1tNx0HM1tGPS7jh6QISqPuPCipUJj61zO4" style="display:block;margin:0 auto;font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;color:#000000;" width="696"/>
       <div class="showHidden mobile-hero" style="display:none;width:0px;max-width:100%;max-height:0px;overflow:hidden;mso-hide:all;">
        <img alt="Download the Costco App Today!" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmobilecontent.costco.com%252Fstaging%252Fresource%252Fimg%252F22w0299%252Fm-em-banner-22w0299-app.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtb2JpbGVjb250ZSIsInRpbWUiOjE3NDU0MjgwNDUuMTk2ODczMn0:1u7dZF:cQ2iUhD9t9Xx9PPNsZdvjcA0PZrMuo0f_kawxNmWddw"/>
       </div>
      </a>
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td height="20" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Price reductions, while supplies last." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fczjnn4cmc6qq8t7fnngqv3nw%252F25w06190_app_icons_while_supplies_last.png%253Fformat%253Dpng%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk3MTE0Mn0:1u7dZF:eEqb-jO7RaN-NRFVj3rQPld2PelBtoJFozGVoYaf7l0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="This week's treasure hunt." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F53gwpqcrwh4prh74qh9xxrhz%252F25w06190_app_icons_treasure_hunt.png%253Fformat%253Dpng%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk3MzQ3NH0:1u7dZF:PZnDjOoajtvWBr4ZJZjqbA-jZtBjeYk5MXlNUclQ9kw" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="New items added, what's new." border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fmh3pfmzj9ghcwftst3t2sfn%252F25w06190_app_icons_whats_new.png%253Fformat%253Dpng%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk3NTEzOH0:1u7dZF:qP-nRd1rBZNSlkxaO6vzOlYTib6YY_UKl_bNqF6fkLU" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
               <tbody>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;color:#000000;font-weight:bold;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a target="_blank">
                   <img alt="Member Favorites" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fkbw32hxzsg9wpjffrtqvz77%252F25w06190_app_icons_member_favorites.png%253Fformat%253Dpng%2526width%253D350%2526height%253D147/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk3Njk0fQ:1u7dZF:slBIuIpjQRd1CDPqQZvn6uXew5mhc_K1j44oFKml_HI" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="15" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td align="center">
      <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" width="696">
       <tbody>
        <tr>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#eff7fb;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#008000;font-weight:bold;text-align:center;">
                  Same-Day Delivery
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  All groceries including fresh, frozen and household essentials.
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Powered by Instacart Costco Grocery" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252Fhr77rjq7jns8rfjm5mbjhr8p%252F25w06139_medium_feature_sameday.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk3ODY3OX0:1u7dZF:53ZfteA0N1lO7Ni1Fd7hdtEmovPm-UqiUhqBWPrFOZ0" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#eff7fb;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#0033a1;font-weight:bold;text-align:center;">
                  2-Day Delivery
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  Non-perishable food and household essentials.
                 </td>
                </tr>
                <tr>
                 <td height="15" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Grocery" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F9nw88tjrs5ggjtm9wtxv5%252F25w06139_medium_feature_2day.png%253Fformat%253Dpng%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk4MDk0NH0:1u7dZF:QPbonxVqwWyQyem7SRIr4ahHLgq4CcUDWlukKcrnCNo" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
         <td class="stack w-resize100 h-resize" style="font-size:0px;line-height:0px;" width="16">
         </td>
         <td align="center" class="stack w-resize100" style="vertical-align:top;" width="340">
          <table border="0" cellpadding="0" cellspacing="0" class="w-resize100" role="presentation" width="340">
           <tbody>
            <tr>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#eff7fb;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#134a81;font-weight:bold;text-align:center;">
                  Costco Connection
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  Read the online edition
                 </td>
                </tr>
                <tr>
                 <td height="30" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Costco Connection" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F56O3HXZ9%252Fat%252F23b9mkqcq3689rq3n2bqrnt%252Fem4030_apr_connection.png%253Fformat%253Djpg%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk4MzQ3M30:1u7dZF:RxA2BcrrhK1g0l67bWEdRwK6_hMaUg43jqNs4li-vIA" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
             <td style="font-size:0px;line-height:0px;" width="16">
             </td>
             <td align="center" class="w-resize50" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#dff0d8;" width="100%">
               <tbody>
                <tr>
                 <td height="10" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:16px;line-height:16px;color:#333333;font-weight:bold;text-align:center;">
                  Digital Connection
                 </td>
                </tr>
                <tr>
                 <td height="5" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;color:#333333;text-align:center;">
                  Sign up for
                  <br/>
                  email reminders
                 </td>
                </tr>
                <tr>
                 <td height="15" style="font-size:0px;line-height:0px;">
                 </td>
                </tr>
                <tr>
                 <td align="center" class="resize100">
                  <a style="color:#333333;text-decoration:none;" target="_blank">
                   <img alt="Go Paperless" border="0" height="162" src="https://inboxflows.com/_/image/https%253A%252F%252Fbfasset.costco-static.com%252F%252F56O3HXZ9%252Fat%252Fx4s9g42qnf6637fnt68wnx8c%252Fem4030_blocks_apr_paperless.png%253Fformat%253Djpg%2526width%253D366%2526height%253D366/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZiZmFzc2V0LmNvcyIsInRpbWUiOjE3NDU0MjgwNDUuMTk4NTQxOX0:1u7dZF:EyVZwir5aYOvNFQCDlIgmE5QWgHc3niMZuiDIkbe57A" style="display:block;" width="162"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
     </td>
    </tr>
    <tr>
     <td height="25" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="w-resize90" role="presentation" style="margin:0 auto;" width="696">
   <tbody>
    <tr>
     <td style="font-family:'Helvetica Neue', Arial, Helvetica, sans-serif;font-size:12px;line-height:14px;color:#333333;">
      <div>
       <p>
        Not all items are available at all Costco locations and selection and pricing may vary. Alaska, Hawaii and Puerto Rico may be higher than the advertised price. Items shipped to Alaska, Hawaii and Puerto Rico will include an additional shipping and handling fee.  See Costco.com for the most current information.
       </p>
       <p>
        Most online instant coupons at
        <a style="text-decoration:underline;color:#069;" target="_blank">
         costco.com
        </a>
        are manufacturer's coupons, which will automatically be applied at checkout. See specific item page for promotion valid dates. State sales tax may be due on the pre-discounted price of the item when purchased using an online coupon. These taxes, if any, are in addition to the amount that you are paying for the product.
       </p>
       <p>
        In the past you provided Costco with your email address [6410071d@uifeed.com]. Occasionally, you will receive brief advertising announcements regarding special items and services. If you no longer want to receive these advertisements, please click
        <a class="" data-nl-type="landingPage" style="text-decoration:underline;color:#069;" target="_blank">
         unsubscribe
        </a>
        . Please DO NOT CLICK REPLY, as the email will not be read.
       </p>
       <p>
        To contact us please
        <a style="text-decoration:underline;color:#069;">
         click here
        </a>
        .
        <br/>
        Costco Wholesale, Customer Service | P.O. Box 34535 -- Seattle, WA 98124-1535
        <br/>
        © 1998-2025 Costco Wholesale Corporation. All rights reserved.
        <a style="text-decoration:underline;color:#069;">
         Your Privacy Rights
        </a>
        <a style="text-decoration:underline;color:#069;">
         Terms and Conditions
        </a>
       </p>
      </div>
     </td>
    </tr>
    <tr>
     <td height="30" style="font-size:0px;line-height:0px;">
     </td>
    </tr>
   </tbody>
  </table>
  <img height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fdata.digital.costco.com%252Fee%252Fv1%252Fopen%253Fparams%253Dv1.RJtpsjTRAOr88FdUDREQL898qRFWxoG8PrvuM87yW5SfJ2eUEzSAhDKhHeoLEcUv2HBbUDlqQDxMZQ-TUUl4tLz-z2xRMV0a2upsHjgt1Cm2lwYSUzQMGgPMh7Kw2rf0C_K1KmXKN1OgDYp32jZ-MdfXt-xDk2xGZ892s0qKLqk3BQX8jZaafX7gS1K6D8H2c9jokSezFeVH9mWIAwlbolTrUyX2vngPrObSJYXchcUa0dTDW6uXImMUPoqgdnwdvN7BrzEY0Qx5cx_ooRGG5Ix6tT2Qtme5M-MvL7C8tdVgTz16hyrTYpIPBLIqjw%2526pid%253Dv1.pRk-d93XY_UFGsWtbz6vvePaZhk-Y4sJbAExU4B4-6tNClfVnplaGebqfGN3UNH-PleBRU3WgPm-_l78AFZIyhuVxcso3ubhy-pbtZL4esKngsDRfSxXaWi4BCZOCpqkjGNiygRhehZwuM-65Jg1lfztIe8sDMR0BWN2sMs%2526tuid%253D6808f9c0b6bc5a5e97f8135e%2526configId%253De544e3a0-7485-453d-a0b6-39229f6afe35/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZkYXRhLmRpZ2l0YSIsInRpbWUiOjE3NDU0MjgwNDUuMTk4OTE2fQ:1u7dZF:qzJYABsUGG8F1ouzXKEMoV8kx7pgEp__TJvmMDoZgBQ" width="1"/>
 </body>
</html>