diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f44918b00222e8537e86ae22a5b2c5ba403a9b87 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# Synthetic Packaging Slip Donut Dataset + +Synthetic packaging slip dataset for Donut fine-tuning. + +## Contents + +- `train`: 50 PNG images + labels +- `val`: 50 PNG images + labels +- `test`: 50 PNG images + labels +- Total: 150 images + +Each split has: + +- `metadata.jsonl`: Donut/imagefolder-ready metadata. `ground_truth` is a JSON string containing `gt_parse`. +- `annotations_with_sequences.jsonl`: structured JSON plus a pre-built Donut target sequence. +- `annotations.json`: pretty JSON version for inspection. + +## Schema + +```json +{ + "packaging": { + "seller": {"company_name": "", "address": "", "phone_number": ""}, + "buyer": {"bill_to_name": "", "bill_to_address": "", "ship_to_name": "", "ship_to_address": ""}, + "document": {"package_number": "", "order_date": "", "sales_order_number": "", "po_number": ""}, + "items": [{"sr_no": "", "item_description": "", "sku": "", "quantity": "", "unit_price": "", "total_price": ""}], + "summary": {"total_quantity": "", "sub_total": "", "tax": "", "freight": "", "grand_total": ""}, + "notes": "" + } +} +``` + +## Load with Hugging Face datasets + +```python +from datasets import load_dataset + +dataset = load_dataset("imagefolder", data_dir="packaging_slip_donut_dataset") +print(dataset) +``` + +All records are synthetic. Totals are validated during generation. diff --git a/dataset_info.json b/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..c77be35ecbff2044cc9cee57592acd6be6f554e0 --- /dev/null +++ b/dataset_info.json @@ -0,0 +1,12 @@ +{ + "name": "synthetic_packaging_slip_donut_dataset", + "version": "1.0.0", + "splits": { + "train": 50, + "val": 50, + "test": 50 + }, + "total_images": 150, + "schema_root": "packaging", + "seed": 314159 +} \ No newline at end of file diff --git a/generate_dataset.py b/generate_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..34f4240553b343375630a9c5272d34cd8c7e7298 --- /dev/null +++ b/generate_dataset.py @@ -0,0 +1,242 @@ +import json, random, shutil, zipfile, time +from pathlib import Path +from datetime import date, timedelta +from PIL import Image, ImageDraw, ImageFont + +ROOT = Path('/mnt/data/packaging_slip_donut_dataset') +ZIP_PATH = Path('/mnt/data/packaging_slip_donut_dataset.zip') +SEED = 314159 +random.seed(SEED) +SPLIT_SIZES = {'train': 50, 'val': 50, 'test': 50} + +# Scaled A4-like page. Good enough for Donut fine-tuning and much faster to render than 150 DPI A4. +W, H = 900, 1272 +S = W / 1240.0 + +def sc(v): return int(round(v * S)) + +def font_size(v): return max(8, int(round(v * S))) +FONT_REG = '/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf' +FONT_BOLD = '/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf' +FONT_MONO = '/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf' +FONT_SERIF_BOLD = '/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf' + +def font(path, size): return ImageFont.truetype(path, size=font_size(size)) +F = { + 'title': font(FONT_SERIF_BOLD, 40), 'h1': font(FONT_BOLD, 25), 'h2': font(FONT_BOLD, 20), + 'body': font(FONT_REG, 18), 'small': font(FONT_REG, 16), 'tiny': font(FONT_REG, 14), + 'mono': font(FONT_MONO, 17), 'mono_small': font(FONT_MONO, 15), 'table_head': font(FONT_BOLD, 18), +} +SELLERS = [ + ('Apex Cartons Ltd', '4799 Highland View Drive, Sacramento, CA 95815', '+91-78778-81186'), + ('Northline Supplies', '7455 Drew Court, White City, KS 66872', '+91-88390-36062'), + ('BluePeak Packaging Co', '214 Pine Ridge Lane, Boulder, CO 80302', '+1-303-555-0194'), + ('Crestline Box Works', '8800 Valley Crest Road, Austin, TX 78745', '+1-512-555-0176'), + ('MetroWrap Logistics', '1024 Harbor Street, Newark, NJ 07105', '+1-973-555-0182'), + ('Pacific Label House', '311 Ocean Park Blvd, San Diego, CA 92109', '+1-619-555-0154'), + ('GreenLeaf Cartons', '58 Rosewood Avenue, Portland, OR 97205', '+1-503-555-0141'), + ('Summit Packaging Hub', '1700 Market Street, Denver, CO 80202', '+1-720-555-0188'), + ('PrimePack Traders', '27 Industrial Estate, Pune, MH 411045', '+91-98810-44231'), + ('SilverBox Enterprises', '18 Race Course Road, Chennai, TN 600032', '+91-94444-70981'), + ('UrbanCarton Supply', '91 Sector 44 Road, Gurugram, HR 122003', '+91-98122-55340'), + ('EverReady Packaging', '301 Lakeside Drive, Madison, WI 53703', '+1-608-555-0139'), +] +CUSTOMERS = [ + ('Jeff Ritchie Stores', '980 Industrial Road, Hyderabad, TS 500081', '7455 Drew Court, White City, KS 66872'), + ('Riverside Retail Group', '72 Market Square, Chennai, TN 600001', '18 Park Street, Pune, MH 411001'), + ('Hilltop Office Depot', '140 Cedar Lane, Albany, NY 12207', '500 River Road, Troy, NY 12180'), + ('Mason Distribution', '89 Foundry Street, Detroit, MI 48207', '44 Logistics Park, Warren, MI 48089'), + ('Nova General Stores', '6 MG Road, Bengaluru, KA 560001', '42 Whitefield Main Road, Bengaluru, KA 560066'), + ('Prairie Wholesale', '210 North 8th Street, Omaha, NE 68102', '95 Warehouse Avenue, Lincoln, NE 68508'), + ('Sunrise Stationers', '55 Ashok Nagar, Jaipur, RJ 302001', '9 Transport Nagar, Jaipur, RJ 302003'), + ('Vertex Home Mart', '312 King Street, Seattle, WA 98104', '810 Depot Road, Tacoma, WA 98421'), + ('Canyon Craft Supplies', '460 Mesa Drive, Phoenix, AZ 85004', '77 South Yard Way, Tempe, AZ 85281'), + ('Orbit Commerce Pvt Ltd', '404 SG Highway, Ahmedabad, GJ 380015', '22 Narol Industrial Area, Ahmedabad, GJ 382405'), + ('OakBridge Market', '15 Elm Street, Boston, MA 02108', '112 Dock Road, Everett, MA 02149'), + ('Central Furnishing Co', '100 Broad Avenue, Atlanta, GA 30303', '2300 Freight Drive, Marietta, GA 30060'), +] +ITEMS = [ + ('Shipping Label Pack', 'LBL-450'), ('Packing Tape', 'TAPE-338'), ('Product Manual', 'MAN-780'), + ('Warranty Card', 'WAR-110'), ('Invoice Copy', 'INV-COPY'), ('Plastic Sleeve', 'SLV-890'), + ('Printed Carton', 'CRT-670'), ('Ad Design', 'AD-DES-003'), ('Foam Insert', 'FOM-560'), + ('Barcode Sticker Roll', 'BAR-244'), ('Fragile Label Set', 'FRG-112'), ('Bubble Wrap Roll', 'BUB-908'), + ('Corrugated Divider', 'DIV-731'), ('Return Label Sheet', 'RTN-509'), ('Custom Poly Mailer', 'POLY-620'), + ('Die Cut Insert', 'DCI-725'), ('Pallet Label Card', 'PAL-318'), ('Security Seal Strip', 'SEC-401'), + ('Mailer Box Small', 'MBOX-SM'), ('Mailer Box Large', 'MBOX-LG'), ('Kraft Paper Roll', 'KRAFT-221'), + ('Thermal Label Roll', 'THR-612'), ('Corner Protector', 'CRN-019'), ('Documentation Pouch', 'DOC-872'), + ('Hang Tag Bundle', 'TAG-149'), ('Instruction Leaflet', 'LEAF-557'), ('Packing Slip Copy', 'PSC-391'), + ('Gift Wrap Sheet', 'GFT-812'), ('Logo Sticker Pack', 'LOGO-754'), ('Moisture Guard Bag', 'MGB-309'), +] +NOTES = ['Partial shipment allowed', 'Handle cartons with care', 'Deliver during business hours', 'Use dock entrance for unloading', 'Customer signature required', 'Keep goods dry during transit', 'Verify carton count before dispatch', 'Shipment can be split by item line', 'Do not stack above five cartons', 'Priority delivery requested', 'Attach invoice copy to shipment', 'Contact buyer before final delivery'] +PRICES = [10, 12, 15, 20, 25, 30, 40, 50, 60, 75, 90, 100, 125, 150, 175, 200, 225, 250] + +def clean_dir(path): + if path.exists(): shutil.rmtree(path) + path.mkdir(parents=True, exist_ok=True) + +def text(draw, xy, value, fnt, fill=(25,25,25)): + draw.text((sc(xy[0]), sc(xy[1])), str(value), font=fnt, fill=fill) + +def line(draw, coords, fill=(70,70,70), width=1): + draw.line([sc(v) for v in coords], fill=fill, width=max(1, sc(width))) + +def rect(draw, coords, outline=(70,70,70), width=1): + draw.rectangle([sc(v) for v in coords], outline=outline, width=max(1, sc(width))) + +def wrapped(draw, xy, value, fnt, max_width, line_gap=4, fill=(25,25,25)): + words = str(value).split() + lines, current = [], '' + maxw = sc(max_width) + for w in words: + cand = (current + ' ' + w).strip() + bb = draw.textbbox((0,0), cand, font=fnt) + if bb[2] - bb[0] <= maxw or not current: + current = cand + else: + lines.append(current); current = w + if current: lines.append(current) + x, y = xy + lh = (draw.textbbox((0,0), 'Ag', font=fnt)[3] + sc(line_gap)) / S + for ln in lines: + text(draw, (x, y), ln, fnt, fill) + y += lh + return y + +def generate_record(global_idx): + seller = random.choice(SELLERS); customer = random.choice(CUSTOMERS) + order_date = date(2026,1,15) + timedelta(days=random.randint(0,330)) + n_items = random.randint(3,8) + rows=[]; qty_sum=0; subtotal=0 + for sr,(desc,sku) in enumerate(random.sample(ITEMS, n_items), 1): + qty=random.randint(1,20); unit=random.choice(PRICES); total=qty*unit + qty_sum += qty; subtotal += total + rows.append({'sr_no':str(sr),'item_description':desc,'sku':sku,'quantity':str(qty),'unit_price':str(unit),'total_price':str(total)}) + tax=random.choice([0,0,0,50,100,125,150,200]); freight=random.choice([0,50,75,100,125,150,200,250,300]) + return { + 'seller': {'company_name': seller[0], 'address': seller[1], 'phone_number': seller[2]}, + 'buyer': {'bill_to_name': customer[0], 'bill_to_address': customer[1], 'ship_to_name': customer[0], 'ship_to_address': customer[2]}, + 'document': {'package_number': f'PKG{global_idx:05d}', 'order_date': order_date.isoformat(), 'sales_order_number': str(random.randint(500000,599999)), 'po_number': f'PO-{random.randint(30000,69999)}'}, + 'items': rows, + 'summary': {'total_quantity': str(qty_sum), 'sub_total': str(subtotal), 'tax': str(tax), 'freight': str(freight), 'grand_total': str(subtotal+tax+freight)}, + 'notes': random.choice(NOTES), + } + +def to_donut_sequence(obj): + def tok(k,v): return f'{v}' + seq = '' + for sec in ['seller','buyer','document']: + seq += f'' + ''.join(tok(k,v) for k,v in obj[sec].items()) + f'' + seq += '' + for item in obj['items']: + seq += '' + ''.join(tok(k,item[k]) for k in ['sr_no','item_description','sku','quantity','unit_price','total_price']) + '' + seq += '' + seq += ''.join(tok(k,obj['summary'][k]) for k in ['total_quantity','sub_total','tax','freight','grand_total']) + seq += '' + tok('notes', obj['notes']) + '' + return seq + +def validate(obj): + qty=sum(int(i['quantity']) for i in obj['items']); subtotal=sum(int(i['total_price']) for i in obj['items']) + assert qty == int(obj['summary']['total_quantity']) + assert subtotal == int(obj['summary']['sub_total']) + assert subtotal + int(obj['summary']['tax']) + int(obj['summary']['freight']) == int(obj['summary']['grand_total']) + for i,row in enumerate(obj['items'],1): + assert row['sr_no'] == str(i) + assert int(row['quantity']) * int(row['unit_price']) == int(row['total_price']) + +def render(obj, out_path): + paper=random.choice([(255,255,255),(253,253,251),(252,253,255)]) + img=Image.new('RGB',(W,H),paper); d=ImageDraw.Draw(img) + black=(25,25,25); light=(226,226,226) + rect(d,[50,50,1190,1704],width=2); rect(d,[62,62,1178,1692],outline=(230,230,230)) + text(d,(70,92),'PACKAGE SLIP',F['title']); text(d,(740,100),f"Package# - {obj['document']['package_number']}",F['h2']) + y=170; text(d,(70,y),obj['seller']['company_name'],F['h2']); y=wrapped(d,(70,y+32),obj['seller']['address'],F['small'],620); text(d,(70,y+3),obj['seller']['phone_number'],F['small']) + y=300; xs=[70,365,655,940]; labs=['Package #','Order Date #','Sales Order #','PO #']; vals=[obj['document']['package_number'],obj['document']['order_date'],obj['document']['sales_order_number'],obj['document']['po_number']] + for x,lab,val in zip(xs,labs,vals): text(d,(x,y),lab,F['h2']); text(d,(x,y+36),val,F['small']) + line(d,[70,405,1170,405],width=2) + text(d,(70,445),'Bill To:',F['h2']); text(d,(70,483),obj['buyer']['bill_to_name'],F['small']); wrapped(d,(70,508),obj['buyer']['bill_to_address'],F['small'],430) + text(d,(635,445),'Ship To:',F['h2']); text(d,(635,483),obj['buyer']['ship_to_name'],F['small']); wrapped(d,(635,508),obj['buyer']['ship_to_address'],F['small'],430) + line(d,[70,620,1170,620],width=2) + y=650; cols={'sr':70,'desc':155,'sku':565,'qty':750,'unit':875,'total':1050} + for key,label in [('sr','SR No.'),('desc','ITEM DESCRIPTION'),('sku','SKU'),('qty','QTY'),('unit','UNIT PRICE'),('total','TOTAL')]: text(d,(cols[key],y),label,F['table_head']) + line(d,[70,y+34,1170,y+34]) + row_y=y+58 + for item in obj['items']: + text(d,(cols['sr'],row_y),item['sr_no'],F['mono_small']); text(d,(cols['desc'],row_y),item['item_description'],F['small']); text(d,(cols['sku'],row_y),item['sku'],F['mono_small']) + text(d,(cols['qty']+18,row_y),item['quantity'],F['mono_small']); text(d,(cols['unit'],row_y),item['unit_price'],F['mono_small']); text(d,(cols['total'],row_y),item['total_price'],F['mono_small']) + row_y += 36 + bottom=max(row_y+20,930); line(d,[70,bottom,1170,bottom],fill=light) + sy=bottom+34 + for lab,key in [('Total Qty','total_quantity'),('Sub Total','sub_total'),('Tax','tax'),('Freight','freight'),('Grand Total','grand_total')]: + f=F['h2'] if lab=='Grand Total' else F['small']; text(d,(770,sy),lab,f); text(d,(1015,sy),obj['summary'][key],f); sy += 35 + ny=max(bottom+210,1210); text(d,(70,ny),'Notes:',F['h2']); text(d,(70,ny+34),obj['notes'],F['small']) + if random.random()<0.25: + x=random.randint(sc(90),sc(1150)); d.line([x,sc(60),x,sc(1690)],fill=(238,238,238),width=1) + img.save(out_path, format='PNG', compress_level=1) + +def write_readme(root): + readme = """# Synthetic Packaging Slip Donut Dataset + +Synthetic packaging slip dataset for Donut fine-tuning. + +## Contents + +- `train`: 50 PNG images + labels +- `val`: 50 PNG images + labels +- `test`: 50 PNG images + labels +- Total: 150 images + +Each split has: + +- `metadata.jsonl`: Donut/imagefolder-ready metadata. `ground_truth` is a JSON string containing `gt_parse`. +- `annotations_with_sequences.jsonl`: structured JSON plus a pre-built Donut target sequence. +- `annotations.json`: pretty JSON version for inspection. + +## Schema + +```json +{ + "packaging": { + "seller": {"company_name": "", "address": "", "phone_number": ""}, + "buyer": {"bill_to_name": "", "bill_to_address": "", "ship_to_name": "", "ship_to_address": ""}, + "document": {"package_number": "", "order_date": "", "sales_order_number": "", "po_number": ""}, + "items": [{"sr_no": "", "item_description": "", "sku": "", "quantity": "", "unit_price": "", "total_price": ""}], + "summary": {"total_quantity": "", "sub_total": "", "tax": "", "freight": "", "grand_total": ""}, + "notes": "" + } +} +``` + +## Load with Hugging Face datasets + +```python +from datasets import load_dataset + +dataset = load_dataset("imagefolder", data_dir="packaging_slip_donut_dataset") +print(dataset) +``` + +All records are synthetic. Totals are validated during generation. +""" + (root/'README.md').write_text(readme,encoding='utf-8') + +def main(): + t0=time.time(); clean_dir(ROOT); global_idx=1 + info={'name':'synthetic_packaging_slip_donut_dataset','version':'1.0.0','splits':SPLIT_SIZES,'total_images':sum(SPLIT_SIZES.values()),'schema_root':'packaging','seed':SEED} + for split,count in SPLIT_SIZES.items(): + sd=ROOT/split; sd.mkdir(parents=True,exist_ok=True); metas=[]; seqs=[]; records=[] + for _ in range(count): + obj=generate_record(global_idx); validate(obj); fname=f'package_{global_idx:05d}.png'; render(obj,sd/fname) + sequence=to_donut_sequence(obj); gt={'gt_parse':{'packaging':obj}} + metas.append(json.dumps({'file_name':fname,'ground_truth':json.dumps(gt,ensure_ascii=False)},ensure_ascii=False)) + rec={'file_name':fname,'split':split,'ground_truth':{'packaging':obj},'target_sequence':sequence} + seqs.append(json.dumps(rec,ensure_ascii=False)); records.append(rec); global_idx += 1 + (sd/'metadata.jsonl').write_text('\n'.join(metas)+'\n',encoding='utf-8') + (sd/'annotations_with_sequences.jsonl').write_text('\n'.join(seqs)+'\n',encoding='utf-8') + (sd/'annotations.json').write_text(json.dumps(records,ensure_ascii=False,indent=2),encoding='utf-8') + (ROOT/'dataset_info.json').write_text(json.dumps(info,indent=2),encoding='utf-8'); write_readme(ROOT) + if ZIP_PATH.exists(): ZIP_PATH.unlink() + with zipfile.ZipFile(ZIP_PATH,'w',compression=zipfile.ZIP_STORED) as z: + for p in ROOT.rglob('*'): z.write(p,arcname=p.relative_to(ROOT.parent)) + print('created',ZIP_PATH,'in',round(time.time()-t0,2),'sec') + +if __name__=='__main__': main() diff --git a/test/annotations.json b/test/annotations.json new file mode 100644 index 0000000000000000000000000000000000000000..fe8521341b6c9d7223b16eb4fc73e10f3e9d2447 --- /dev/null +++ b/test/annotations.json @@ -0,0 +1,4122 @@ +[ + { + "file_name": "package_00101.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00101", + "order_date": "2026-04-19", + "sales_order_number": "521374", + "po_number": "PO-42740" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "12", + "unit_price": "12", + "total_price": "144" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "9", + "unit_price": "175", + "total_price": "1575" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "60", + "total_price": "1080" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "4", + "unit_price": "25", + "total_price": "100" + }, + { + "sr_no": "5", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "6", + "unit_price": "10", + "total_price": "60" + }, + { + "sr_no": "6", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "8", + "unit_price": "25", + "total_price": "200" + }, + { + "sr_no": "7", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "17", + "unit_price": "40", + "total_price": "680" + }, + { + "sr_no": "8", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "15", + "unit_price": "125", + "total_price": "1875" + } + ], + "summary": { + "total_quantity": "89", + "sub_total": "5714", + "tax": "200", + "freight": "0", + "grand_total": "5914" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001012026-04-19521374PO-427401Instruction LeafletLEAF-55712121442Thermal Label RollTHR-612917515753Printed CartonCRT-670186010804Ad DesignAD-DES-0034251005Packing TapeTAPE-338610606Barcode Sticker RollBAR-2448252007Die Cut InsertDCI-72517406808Plastic SleeveSLV-89015125187589571420005914Use dock entrance for unloading" + }, + { + "file_name": "package_00102.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00102", + "order_date": "2026-03-03", + "sales_order_number": "531896", + "po_number": "PO-45706" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "16", + "unit_price": "175", + "total_price": "2800" + }, + { + "sr_no": "2", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "12", + "unit_price": "60", + "total_price": "720" + }, + { + "sr_no": "3", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "7", + "unit_price": "125", + "total_price": "875" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "17", + "unit_price": "40", + "total_price": "680" + }, + { + "sr_no": "5", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "15", + "unit_price": "30", + "total_price": "450" + }, + { + "sr_no": "6", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "17", + "unit_price": "15", + "total_price": "255" + }, + { + "sr_no": "7", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "40", + "total_price": "720" + }, + { + "sr_no": "8", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "16", + "unit_price": "175", + "total_price": "2800" + } + ], + "summary": { + "total_quantity": "118", + "sub_total": "9300", + "tax": "200", + "freight": "50", + "grand_total": "9550" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001022026-03-03531896PO-457061Warranty CardWAR-1101617528002Pallet Label CardPAL-31812607203Gift Wrap SheetGFT-81271258754Barcode Sticker RollBAR-24417406805Hang Tag BundleTAG-14915304506Plastic SleeveSLV-89017152557Printed CartonCRT-67018407208Logo Sticker PackLOGO-7541617528001189300200509550Handle cartons with care" + }, + { + "file_name": "package_00103.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00103", + "order_date": "2026-12-02", + "sales_order_number": "565962", + "po_number": "PO-66319" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "10", + "unit_price": "175", + "total_price": "1750" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "5", + "unit_price": "50", + "total_price": "250" + }, + { + "sr_no": "3", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "5", + "unit_price": "90", + "total_price": "450" + }, + { + "sr_no": "4", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "19", + "unit_price": "90", + "total_price": "1710" + } + ], + "summary": { + "total_quantity": "39", + "sub_total": "4160", + "tax": "0", + "freight": "75", + "grand_total": "4235" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001032026-12-02565962PO-663191Thermal Label RollTHR-6121017517502Die Cut InsertDCI-7255502503Security Seal StripSEC-4015904504Bubble Wrap RollBUB-908199017103941600754235Deliver during business hours" + }, + { + "file_name": "package_00104.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00104", + "order_date": "2026-07-26", + "sales_order_number": "532906", + "po_number": "PO-58849" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "1", + "unit_price": "125", + "total_price": "125" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "13", + "unit_price": "20", + "total_price": "260" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "30", + "total_price": "540" + }, + { + "sr_no": "4", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "17", + "unit_price": "175", + "total_price": "2975" + }, + { + "sr_no": "5", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "4", + "unit_price": "15", + "total_price": "60" + }, + { + "sr_no": "6", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "11", + "unit_price": "250", + "total_price": "2750" + }, + { + "sr_no": "7", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "13", + "unit_price": "125", + "total_price": "1625" + }, + { + "sr_no": "8", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "17", + "unit_price": "90", + "total_price": "1530" + } + ], + "summary": { + "total_quantity": "94", + "sub_total": "9865", + "tax": "0", + "freight": "150", + "grand_total": "10015" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001042026-07-26532906PO-588491Barcode Sticker RollBAR-24411251252Thermal Label RollTHR-61213202603Printed CartonCRT-67018305404Pallet Label CardPAL-3181717529755Mailer Box SmallMBOX-SM415606Custom Poly MailerPOLY-6201125027507Kraft Paper RollKRAFT-2211312516258Packing Slip CopyPSC-39117901530949865015010015Use dock entrance for unloading" + }, + { + "file_name": "package_00105.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00105", + "order_date": "2026-10-15", + "sales_order_number": "579774", + "po_number": "PO-35435" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "9", + "unit_price": "175", + "total_price": "1575" + }, + { + "sr_no": "2", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "5", + "unit_price": "12", + "total_price": "60" + }, + { + "sr_no": "3", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "19", + "unit_price": "12", + "total_price": "228" + }, + { + "sr_no": "4", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "4", + "unit_price": "20", + "total_price": "80" + }, + { + "sr_no": "5", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "13", + "unit_price": "125", + "total_price": "1625" + }, + { + "sr_no": "6", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "12", + "unit_price": "225", + "total_price": "2700" + }, + { + "sr_no": "7", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "6", + "unit_price": "20", + "total_price": "120" + } + ], + "summary": { + "total_quantity": "68", + "sub_total": "6388", + "tax": "50", + "freight": "100", + "grand_total": "6538" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001052026-10-15579774PO-354351Security Seal StripSEC-401917515752Moisture Guard BagMGB-309512603Fragile Label SetFRG-11219122284Return Label SheetRTN-509420805Shipping Label PackLBL-4501312516256Ad DesignAD-DES-0031222527007Pallet Label CardPAL-318620120686388501006538Keep goods dry during transit" + }, + { + "file_name": "package_00106.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00106", + "order_date": "2026-08-08", + "sales_order_number": "563165", + "po_number": "PO-45533" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "8", + "unit_price": "25", + "total_price": "200" + }, + { + "sr_no": "2", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "2", + "unit_price": "125", + "total_price": "250" + }, + { + "sr_no": "3", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "14", + "unit_price": "175", + "total_price": "2450" + }, + { + "sr_no": "4", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "8", + "unit_price": "100", + "total_price": "800" + } + ], + "summary": { + "total_quantity": "32", + "sub_total": "3700", + "tax": "150", + "freight": "300", + "grand_total": "4150" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001062026-08-08563165PO-455331Gift Wrap SheetGFT-8128252002Custom Poly MailerPOLY-62021252503Logo Sticker PackLOGO-7541417524504Packing Slip CopyPSC-39181008003237001503004150Partial shipment allowed" + }, + { + "file_name": "package_00107.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Vertex Home Mart", + "bill_to_address": "312 King Street, Seattle, WA 98104", + "ship_to_name": "Vertex Home Mart", + "ship_to_address": "810 Depot Road, Tacoma, WA 98421" + }, + "document": { + "package_number": "PKG00107", + "order_date": "2026-06-12", + "sales_order_number": "529895", + "po_number": "PO-55563" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "14", + "unit_price": "150", + "total_price": "2100" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "18", + "unit_price": "90", + "total_price": "1620" + }, + { + "sr_no": "3", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "10", + "unit_price": "125", + "total_price": "1250" + }, + { + "sr_no": "4", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "14", + "unit_price": "20", + "total_price": "280" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "17", + "unit_price": "60", + "total_price": "1020" + } + ], + "summary": { + "total_quantity": "73", + "sub_total": "6270", + "tax": "100", + "freight": "250", + "grand_total": "6620" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG001072026-06-12529895PO-555631Logo Sticker PackLOGO-7541415021002Kraft Paper RollKRAFT-221189016203Ad DesignAD-DES-0031012512504Fragile Label SetFRG-11214202805Foam InsertFOM-560176010207362701002506620Verify carton count before dispatch" + }, + { + "file_name": "package_00108.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00108", + "order_date": "2026-12-04", + "sales_order_number": "588140", + "po_number": "PO-32792" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "4", + "unit_price": "225", + "total_price": "900" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "18", + "unit_price": "200", + "total_price": "3600" + }, + { + "sr_no": "3", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "15", + "unit_price": "40", + "total_price": "600" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "10", + "unit_price": "10", + "total_price": "100" + } + ], + "summary": { + "total_quantity": "47", + "sub_total": "5200", + "tax": "0", + "freight": "50", + "grand_total": "5250" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001082026-12-04588140PO-327921Kraft Paper RollKRAFT-22142259002Die Cut InsertDCI-7251820036003Hang Tag BundleTAG-14915406004Invoice CopyINV-COPY10101004752000505250Deliver during business hours" + }, + { + "file_name": "package_00109.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00109", + "order_date": "2026-06-28", + "sales_order_number": "530367", + "po_number": "PO-44358" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "2", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "11", + "unit_price": "90", + "total_price": "990" + }, + { + "sr_no": "3", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "6", + "unit_price": "100", + "total_price": "600" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "12", + "unit_price": "20", + "total_price": "240" + }, + { + "sr_no": "5", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "6", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "16", + "unit_price": "100", + "total_price": "1600" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "9", + "unit_price": "12", + "total_price": "108" + } + ], + "summary": { + "total_quantity": "66", + "sub_total": "4093", + "tax": "50", + "freight": "150", + "grand_total": "4293" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001092026-06-28530367PO-443581Logo Sticker PackLOGO-75431253752Ad DesignAD-DES-00311909903Pallet Label CardPAL-31861006004Documentation PouchDOC-87212202405Packing Slip CopyPSC-3919201806Packing TapeTAPE-3381610016007Hang Tag BundleTAG-149912108664093501504293Keep goods dry during transit" + }, + { + "file_name": "package_00110.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00110", + "order_date": "2026-11-16", + "sales_order_number": "502289", + "po_number": "PO-38497" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "2", + "unit_price": "10", + "total_price": "20" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "1", + "unit_price": "40", + "total_price": "40" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "8", + "unit_price": "90", + "total_price": "720" + }, + { + "sr_no": "4", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "10", + "unit_price": "60", + "total_price": "600" + }, + { + "sr_no": "5", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "2", + "unit_price": "125", + "total_price": "250" + }, + { + "sr_no": "6", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "4", + "unit_price": "10", + "total_price": "40" + } + ], + "summary": { + "total_quantity": "27", + "sub_total": "1670", + "tax": "150", + "freight": "50", + "grand_total": "1870" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG001102026-11-16502289PO-384971Mailer Box SmallMBOX-SM210202Corner ProtectorCRN-019140403Instruction LeafletLEAF-5578907204Fragile Label SetFRG-11210606005Printed CartonCRT-67021252506Logo Sticker PackLOGO-75441040271670150501870Deliver during business hours" + }, + { + "file_name": "package_00111.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00111", + "order_date": "2026-10-29", + "sales_order_number": "546550", + "po_number": "PO-34222" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "2", + "unit_price": "90", + "total_price": "180" + }, + { + "sr_no": "2", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "3", + "unit_price": "10", + "total_price": "30" + }, + { + "sr_no": "3", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "19", + "unit_price": "75", + "total_price": "1425" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "9", + "unit_price": "30", + "total_price": "270" + }, + { + "sr_no": "5", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "17", + "unit_price": "20", + "total_price": "340" + } + ], + "summary": { + "total_quantity": "50", + "sub_total": "2245", + "tax": "0", + "freight": "0", + "grand_total": "2245" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001112026-10-29546550PO-342221Thermal Label RollTHR-6122901802Plastic SleeveSLV-890310303Corner ProtectorCRN-019197514254Invoice CopyINV-COPY9302705Documentation PouchDOC-8721720340502245002245Shipment can be split by item line" + }, + { + "file_name": "package_00112.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00112", + "order_date": "2026-02-27", + "sales_order_number": "505662", + "po_number": "PO-68504" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "8", + "unit_price": "225", + "total_price": "1800" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "3", + "unit_price": "175", + "total_price": "525" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "15", + "unit_price": "250", + "total_price": "3750" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "6", + "unit_price": "75", + "total_price": "450" + }, + { + "sr_no": "5", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "19", + "unit_price": "20", + "total_price": "380" + }, + { + "sr_no": "6", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "11", + "unit_price": "30", + "total_price": "330" + }, + { + "sr_no": "7", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "17", + "unit_price": "175", + "total_price": "2975" + } + ], + "summary": { + "total_quantity": "79", + "sub_total": "10210", + "tax": "150", + "freight": "50", + "grand_total": "10410" + }, + "notes": "Contact buyer before final delivery" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001122026-02-27505662PO-685041Return Label SheetRTN-509822518002Corner ProtectorCRN-01931755253Instruction LeafletLEAF-5571525037504Packing TapeTAPE-3386754505Pallet Label CardPAL-31819203806Security Seal StripSEC-40111303307Die Cut InsertDCI-72517175297579102101505010410Contact buyer before final delivery" + }, + { + "file_name": "package_00113.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00113", + "order_date": "2026-11-08", + "sales_order_number": "551337", + "po_number": "PO-35417" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "6", + "unit_price": "175", + "total_price": "1050" + }, + { + "sr_no": "2", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "13", + "unit_price": "175", + "total_price": "2275" + }, + { + "sr_no": "3", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "13", + "unit_price": "200", + "total_price": "2600" + } + ], + "summary": { + "total_quantity": "32", + "sub_total": "5925", + "tax": "0", + "freight": "100", + "grand_total": "6025" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001132026-11-08551337PO-354171Gift Wrap SheetGFT-812617510502Shipping Label PackLBL-4501317522753Product ManualMAN-78013200260032592501006025Use dock entrance for unloading" + }, + { + "file_name": "package_00114.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00114", + "order_date": "2026-06-26", + "sales_order_number": "510576", + "po_number": "PO-68835" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "2", + "unit_price": "150", + "total_price": "300" + }, + { + "sr_no": "2", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "7", + "unit_price": "100", + "total_price": "700" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "14", + "unit_price": "175", + "total_price": "2450" + }, + { + "sr_no": "4", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "12", + "unit_price": "10", + "total_price": "120" + }, + { + "sr_no": "5", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "14", + "unit_price": "225", + "total_price": "3150" + }, + { + "sr_no": "6", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "12", + "unit_price": "12", + "total_price": "144" + } + ], + "summary": { + "total_quantity": "61", + "sub_total": "6864", + "tax": "0", + "freight": "0", + "grand_total": "6864" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001142026-06-26510576PO-688351Plastic SleeveSLV-89021503002Bubble Wrap RollBUB-90871007003Die Cut InsertDCI-7251417524504Hang Tag BundleTAG-14912101205Return Label SheetRTN-5091422531506Shipping Label PackLBL-4501212144616864006864Use dock entrance for unloading" + }, + { + "file_name": "package_00115.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00115", + "order_date": "2026-07-14", + "sales_order_number": "548187", + "po_number": "PO-38839" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "18", + "unit_price": "25", + "total_price": "450" + }, + { + "sr_no": "2", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "6", + "unit_price": "100", + "total_price": "600" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "4", + "unit_price": "225", + "total_price": "900" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "5", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "6", + "unit_price": "15", + "total_price": "90" + }, + { + "sr_no": "6", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "10", + "unit_price": "15", + "total_price": "150" + }, + { + "sr_no": "7", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "4", + "unit_price": "40", + "total_price": "160" + } + ], + "summary": { + "total_quantity": "51", + "sub_total": "2725", + "tax": "0", + "freight": "150", + "grand_total": "2875" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001152026-07-14548187PO-388391Hang Tag BundleTAG-14918254502Corrugated DividerDIV-73161006003Mailer Box SmallMBOX-SM42259004Instruction LeafletLEAF-55731253755Plastic SleeveSLV-890615906Kraft Paper RollKRAFT-22110151507Foam InsertFOM-56044016051272501502875Partial shipment allowed" + }, + { + "file_name": "package_00116.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00116", + "order_date": "2026-07-06", + "sales_order_number": "579361", + "po_number": "PO-55209" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "7", + "unit_price": "125", + "total_price": "875" + }, + { + "sr_no": "2", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "19", + "unit_price": "90", + "total_price": "1710" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "8", + "unit_price": "20", + "total_price": "160" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "16", + "unit_price": "100", + "total_price": "1600" + }, + { + "sr_no": "5", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "19", + "unit_price": "30", + "total_price": "570" + }, + { + "sr_no": "6", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "1", + "unit_price": "150", + "total_price": "150" + } + ], + "summary": { + "total_quantity": "70", + "sub_total": "5065", + "tax": "0", + "freight": "100", + "grand_total": "5165" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG001162026-07-06579361PO-552091Thermal Label RollTHR-61271258752Foam InsertFOM-560199017103Documentation PouchDOC-8728201604Ad DesignAD-DES-0031610016005Kraft Paper RollKRAFT-22119305706Printed CartonCRT-670115015070506501005165Use dock entrance for unloading" + }, + { + "file_name": "package_00117.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00117", + "order_date": "2026-10-03", + "sales_order_number": "503606", + "po_number": "PO-47473" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "17", + "unit_price": "15", + "total_price": "255" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "17", + "unit_price": "150", + "total_price": "2550" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "16", + "unit_price": "175", + "total_price": "2800" + }, + { + "sr_no": "4", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "2", + "unit_price": "40", + "total_price": "80" + } + ], + "summary": { + "total_quantity": "52", + "sub_total": "5685", + "tax": "50", + "freight": "150", + "grand_total": "5885" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001172026-10-03503606PO-474731Product ManualMAN-78017152552Mailer Box SmallMBOX-SM1715025503Documentation PouchDOC-8721617528004Hang Tag BundleTAG-14924080525685501505885Customer signature required" + }, + { + "file_name": "package_00118.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00118", + "order_date": "2026-05-15", + "sales_order_number": "571541", + "po_number": "PO-68483" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "11", + "unit_price": "25", + "total_price": "275" + }, + { + "sr_no": "2", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "1", + "unit_price": "75", + "total_price": "75" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "1", + "unit_price": "225", + "total_price": "225" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "12", + "unit_price": "225", + "total_price": "2700" + }, + { + "sr_no": "5", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "13", + "unit_price": "15", + "total_price": "195" + }, + { + "sr_no": "6", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "18", + "unit_price": "175", + "total_price": "3150" + } + ], + "summary": { + "total_quantity": "56", + "sub_total": "6620", + "tax": "50", + "freight": "150", + "grand_total": "6820" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001182026-05-15571541PO-684831Printed CartonCRT-67011252752Plastic SleeveSLV-890175753Die Cut InsertDCI-72512252254Barcode Sticker RollBAR-2441222527005Corrugated DividerDIV-73113151956Bubble Wrap RollBUB-908181753150566620501506820Priority delivery requested" + }, + { + "file_name": "package_00119.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00119", + "order_date": "2026-02-04", + "sales_order_number": "538805", + "po_number": "PO-30215" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "7", + "unit_price": "20", + "total_price": "140" + }, + { + "sr_no": "2", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "13", + "unit_price": "10", + "total_price": "130" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "8", + "unit_price": "150", + "total_price": "1200" + } + ], + "summary": { + "total_quantity": "28", + "sub_total": "1470", + "tax": "0", + "freight": "75", + "grand_total": "1545" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001192026-02-04538805PO-302151Security Seal StripSEC-4017201402Packing TapeTAPE-33813101303Mailer Box LargeMBOX-LG815012002814700751545Keep goods dry during transit" + }, + { + "file_name": "package_00120.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00120", + "order_date": "2026-07-25", + "sales_order_number": "567762", + "po_number": "PO-36148" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "11", + "unit_price": "75", + "total_price": "825" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "2", + "unit_price": "90", + "total_price": "180" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "2", + "unit_price": "40", + "total_price": "80" + }, + { + "sr_no": "4", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "20", + "unit_price": "60", + "total_price": "1200" + }, + { + "sr_no": "5", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "8", + "unit_price": "25", + "total_price": "200" + } + ], + "summary": { + "total_quantity": "43", + "sub_total": "2485", + "tax": "0", + "freight": "200", + "grand_total": "2685" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001202026-07-25567762PO-361481Logo Sticker PackLOGO-75411758252Mailer Box LargeMBOX-LG2901803Die Cut InsertDCI-725240804Corner ProtectorCRN-019206012005Invoice CopyINV-COPY82520043248502002685Partial shipment allowed" + }, + { + "file_name": "package_00121.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00121", + "order_date": "2026-03-10", + "sales_order_number": "502492", + "po_number": "PO-38629" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "16", + "unit_price": "100", + "total_price": "1600" + }, + { + "sr_no": "2", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "3", + "unit_price": "225", + "total_price": "675" + }, + { + "sr_no": "3", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "16", + "unit_price": "40", + "total_price": "640" + }, + { + "sr_no": "4", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "17", + "unit_price": "125", + "total_price": "2125" + } + ], + "summary": { + "total_quantity": "52", + "sub_total": "5040", + "tax": "50", + "freight": "250", + "grand_total": "5340" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001212026-03-10502492PO-386291Foam InsertFOM-5601610016002Packing TapeTAPE-33832256753Kraft Paper RollKRAFT-22116406404Corner ProtectorCRN-019171252125525040502505340Priority delivery requested" + }, + { + "file_name": "package_00122.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00122", + "order_date": "2026-05-13", + "sales_order_number": "594242", + "po_number": "PO-34926" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "7", + "unit_price": "90", + "total_price": "630" + }, + { + "sr_no": "2", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "7", + "unit_price": "150", + "total_price": "1050" + }, + { + "sr_no": "3", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "13", + "unit_price": "225", + "total_price": "2925" + }, + { + "sr_no": "4", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "2", + "unit_price": "15", + "total_price": "30" + } + ], + "summary": { + "total_quantity": "29", + "sub_total": "4635", + "tax": "125", + "freight": "300", + "grand_total": "5060" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG001222026-05-13594242PO-349261Mailer Box LargeMBOX-LG7906302Instruction LeafletLEAF-557715010503Logo Sticker PackLOGO-7541322529254Printed CartonCRT-670215302946351253005060Attach invoice copy to shipment" + }, + { + "file_name": "package_00123.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00123", + "order_date": "2026-01-30", + "sales_order_number": "524463", + "po_number": "PO-63623" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "12", + "unit_price": "225", + "total_price": "2700" + }, + { + "sr_no": "2", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "18", + "unit_price": "175", + "total_price": "3150" + }, + { + "sr_no": "3", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "19", + "unit_price": "40", + "total_price": "760" + }, + { + "sr_no": "4", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "7", + "unit_price": "250", + "total_price": "1750" + }, + { + "sr_no": "5", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "7", + "unit_price": "225", + "total_price": "1575" + } + ], + "summary": { + "total_quantity": "63", + "sub_total": "9935", + "tax": "125", + "freight": "250", + "grand_total": "10310" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001232026-01-30524463PO-636231Corner ProtectorCRN-0191222527002Product ManualMAN-7801817531503Moisture Guard BagMGB-30919407604Logo Sticker PackLOGO-754725017505Mailer Box LargeMBOX-LG7225157563993512525010310Priority delivery requested" + }, + { + "file_name": "package_00124.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Northline Supplies", + "address": "7455 Drew Court, White City, KS 66872", + "phone_number": "+91-88390-36062" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00124", + "order_date": "2026-01-24", + "sales_order_number": "552547", + "po_number": "PO-54167" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "1", + "unit_price": "225", + "total_price": "225" + }, + { + "sr_no": "2", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "8", + "unit_price": "200", + "total_price": "1600" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "18", + "unit_price": "15", + "total_price": "270" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "16", + "unit_price": "60", + "total_price": "960" + }, + { + "sr_no": "5", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "16", + "unit_price": "125", + "total_price": "2000" + }, + { + "sr_no": "6", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "20", + "unit_price": "25", + "total_price": "500" + }, + { + "sr_no": "7", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "3", + "unit_price": "10", + "total_price": "30" + }, + { + "sr_no": "8", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "11", + "unit_price": "30", + "total_price": "330" + } + ], + "summary": { + "total_quantity": "93", + "sub_total": "5915", + "tax": "150", + "freight": "75", + "grand_total": "6140" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001242026-01-24552547PO-541671Kraft Paper RollKRAFT-22112252252Warranty CardWAR-110820016003Mailer Box SmallMBOX-SM18152704Invoice CopyINV-COPY16609605Corner ProtectorCRN-0191612520006Ad DesignAD-DES-00320255007Logo Sticker PackLOGO-754310308Die Cut InsertDCI-7251130330935915150756140Shipment can be split by item line" + }, + { + "file_name": "package_00125.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00125", + "order_date": "2026-10-17", + "sales_order_number": "514209", + "po_number": "PO-59561" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "250", + "total_price": "4500" + }, + { + "sr_no": "2", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "18", + "unit_price": "15", + "total_price": "270" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "1", + "unit_price": "100", + "total_price": "100" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "10", + "unit_price": "60", + "total_price": "600" + }, + { + "sr_no": "5", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "4", + "unit_price": "15", + "total_price": "60" + }, + { + "sr_no": "6", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "13", + "unit_price": "50", + "total_price": "650" + }, + { + "sr_no": "7", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "18", + "unit_price": "25", + "total_price": "450" + } + ], + "summary": { + "total_quantity": "82", + "sub_total": "6630", + "tax": "200", + "freight": "200", + "grand_total": "7030" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001252026-10-17514209PO-595611Printed CartonCRT-6701825045002Corrugated DividerDIV-73118152703Barcode Sticker RollBAR-24411001004Packing TapeTAPE-33810606005Mailer Box LargeMBOX-LG415606Hang Tag BundleTAG-14913506507Ad DesignAD-DES-00318254508266302002007030Partial shipment allowed" + }, + { + "file_name": "package_00126.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00126", + "order_date": "2026-01-19", + "sales_order_number": "521776", + "po_number": "PO-49003" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "19", + "unit_price": "10", + "total_price": "190" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "18", + "unit_price": "50", + "total_price": "900" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "5", + "unit_price": "30", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "20", + "unit_price": "50", + "total_price": "1000" + }, + { + "sr_no": "5", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "19", + "unit_price": "225", + "total_price": "4275" + }, + { + "sr_no": "6", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "11", + "unit_price": "50", + "total_price": "550" + }, + { + "sr_no": "7", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "14", + "unit_price": "50", + "total_price": "700" + } + ], + "summary": { + "total_quantity": "106", + "sub_total": "7765", + "tax": "200", + "freight": "75", + "grand_total": "8040" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001262026-01-19521776PO-490031Foam InsertFOM-56019101902Kraft Paper RollKRAFT-22118509003Die Cut InsertDCI-7255301504Barcode Sticker RollBAR-244205010005Invoice CopyINV-COPY1922542756Return Label SheetRTN-50911505507Moisture Guard BagMGB-30914507001067765200758040Handle cartons with care" + }, + { + "file_name": "package_00127.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00127", + "order_date": "2026-08-11", + "sales_order_number": "556258", + "po_number": "PO-50711" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "3", + "unit_price": "100", + "total_price": "300" + }, + { + "sr_no": "2", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "12", + "unit_price": "12", + "total_price": "144" + }, + { + "sr_no": "3", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "12", + "unit_price": "60", + "total_price": "720" + }, + { + "sr_no": "4", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "16", + "unit_price": "15", + "total_price": "240" + }, + { + "sr_no": "5", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "13", + "unit_price": "175", + "total_price": "2275" + }, + { + "sr_no": "6", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "8", + "unit_price": "100", + "total_price": "800" + }, + { + "sr_no": "7", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "2", + "unit_price": "175", + "total_price": "350" + } + ], + "summary": { + "total_quantity": "66", + "sub_total": "4829", + "tax": "50", + "freight": "300", + "grand_total": "5179" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG001272026-08-11556258PO-507111Plastic SleeveSLV-89031003002Logo Sticker PackLOGO-75412121443Hang Tag BundleTAG-14912607204Pallet Label CardPAL-31816152405Packing TapeTAPE-3381317522756Gift Wrap SheetGFT-81281008007Kraft Paper RollKRAFT-2212175350664829503005179Keep goods dry during transit" + }, + { + "file_name": "package_00128.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00128", + "order_date": "2026-06-28", + "sales_order_number": "505355", + "po_number": "PO-49890" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "20", + "unit_price": "30", + "total_price": "600" + }, + { + "sr_no": "2", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "4", + "unit_price": "12", + "total_price": "48" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "12", + "unit_price": "175", + "total_price": "2100" + }, + { + "sr_no": "4", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "17", + "unit_price": "60", + "total_price": "1020" + }, + { + "sr_no": "5", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "2", + "unit_price": "50", + "total_price": "100" + }, + { + "sr_no": "6", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "2", + "unit_price": "50", + "total_price": "100" + }, + { + "sr_no": "7", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "20", + "unit_price": "50", + "total_price": "1000" + }, + { + "sr_no": "8", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "7", + "unit_price": "100", + "total_price": "700" + } + ], + "summary": { + "total_quantity": "84", + "sub_total": "5668", + "tax": "0", + "freight": "75", + "grand_total": "5743" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001282026-06-28505355PO-498901Ad DesignAD-DES-00320306002Packing Slip CopyPSC-391412483Die Cut InsertDCI-7251217521004Logo Sticker PackLOGO-754176010205Instruction LeafletLEAF-5572501006Custom Poly MailerPOLY-6202501007Corrugated DividerDIV-731205010008Fragile Label SetFRG-11271007008456680755743Handle cartons with care" + }, + { + "file_name": "package_00129.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00129", + "order_date": "2026-07-14", + "sales_order_number": "513330", + "po_number": "PO-42973" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "1", + "unit_price": "30", + "total_price": "30" + }, + { + "sr_no": "2", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "8", + "unit_price": "20", + "total_price": "160" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "20", + "unit_price": "30", + "total_price": "600" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "7", + "unit_price": "175", + "total_price": "1225" + }, + { + "sr_no": "5", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "19", + "unit_price": "250", + "total_price": "4750" + }, + { + "sr_no": "6", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "13", + "unit_price": "75", + "total_price": "975" + } + ], + "summary": { + "total_quantity": "68", + "sub_total": "7740", + "tax": "0", + "freight": "250", + "grand_total": "7990" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001292026-07-14513330PO-429731Packing TapeTAPE-338130302Documentation PouchDOC-8728201603Custom Poly MailerPOLY-62020306004Invoice CopyINV-COPY717512255Logo Sticker PackLOGO-7541925047506Hang Tag BundleTAG-149137597568774002507990Verify carton count before dispatch" + }, + { + "file_name": "package_00130.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00130", + "order_date": "2026-01-20", + "sales_order_number": "599229", + "po_number": "PO-39421" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "12", + "unit_price": "200", + "total_price": "2400" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "1", + "unit_price": "25", + "total_price": "25" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "3", + "unit_price": "60", + "total_price": "180" + }, + { + "sr_no": "4", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "18", + "unit_price": "25", + "total_price": "450" + }, + { + "sr_no": "5", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "10", + "unit_price": "100", + "total_price": "1000" + } + ], + "summary": { + "total_quantity": "44", + "sub_total": "4055", + "tax": "0", + "freight": "50", + "grand_total": "4105" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001302026-01-20599229PO-394211Pallet Label CardPAL-3181220024002Corner ProtectorCRN-019125253Instruction LeafletLEAF-5573601804Custom Poly MailerPOLY-62018254505Documentation PouchDOC-8721010010004440550504105Partial shipment allowed" + }, + { + "file_name": "package_00131.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00131", + "order_date": "2026-09-26", + "sales_order_number": "563898", + "po_number": "PO-34845" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "17", + "unit_price": "90", + "total_price": "1530" + }, + { + "sr_no": "2", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "3", + "unit_price": "12", + "total_price": "36" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "15", + "unit_price": "150", + "total_price": "2250" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "11", + "unit_price": "75", + "total_price": "825" + }, + { + "sr_no": "5", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "9", + "unit_price": "30", + "total_price": "270" + }, + { + "sr_no": "6", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "3", + "unit_price": "30", + "total_price": "90" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "17", + "unit_price": "150", + "total_price": "2550" + }, + { + "sr_no": "8", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "18", + "unit_price": "125", + "total_price": "2250" + } + ], + "summary": { + "total_quantity": "93", + "sub_total": "9801", + "tax": "0", + "freight": "100", + "grand_total": "9901" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001312026-09-26563898PO-348451Logo Sticker PackLOGO-754179015302Plastic SleeveSLV-890312363Custom Poly MailerPOLY-6201515022504Invoice CopyINV-COPY11758255Corrugated DividerDIV-7319302706Printed CartonCRT-670330907Mailer Box SmallMBOX-SM1715025508Packing TapeTAPE-33818125225093980101009901Customer signature required" + }, + { + "file_name": "package_00132.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00132", + "order_date": "2026-12-08", + "sales_order_number": "504720", + "po_number": "PO-38321" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "18", + "unit_price": "30", + "total_price": "540" + }, + { + "sr_no": "2", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "17", + "unit_price": "60", + "total_price": "1020" + }, + { + "sr_no": "3", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "14", + "unit_price": "75", + "total_price": "1050" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "3", + "unit_price": "60", + "total_price": "180" + }, + { + "sr_no": "5", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "13", + "unit_price": "100", + "total_price": "1300" + } + ], + "summary": { + "total_quantity": "65", + "sub_total": "4090", + "tax": "0", + "freight": "200", + "grand_total": "4290" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG001322026-12-08504720PO-383211Security Seal StripSEC-40118305402Gift Wrap SheetGFT-812176010203Return Label SheetRTN-509147510504Packing TapeTAPE-3383601805Ad DesignAD-DES-00313100130065409002004290Priority delivery requested" + }, + { + "file_name": "package_00133.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00133", + "order_date": "2026-07-11", + "sales_order_number": "556522", + "po_number": "PO-60067" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "18", + "unit_price": "150", + "total_price": "2700" + }, + { + "sr_no": "2", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "9", + "unit_price": "90", + "total_price": "810" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "4", + "unit_price": "60", + "total_price": "240" + }, + { + "sr_no": "4", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "17", + "unit_price": "20", + "total_price": "340" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "15", + "unit_price": "75", + "total_price": "1125" + } + ], + "summary": { + "total_quantity": "63", + "sub_total": "5215", + "tax": "0", + "freight": "50", + "grand_total": "5265" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001332026-07-11556522PO-600671Documentation PouchDOC-8721815027002Packing TapeTAPE-3389908103Die Cut InsertDCI-7254602404Moisture Guard BagMGB-30917203405Foam InsertFOM-560157511256352150505265Keep goods dry during transit" + }, + { + "file_name": "package_00134.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00134", + "order_date": "2026-02-17", + "sales_order_number": "535143", + "po_number": "PO-34935" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "11", + "unit_price": "225", + "total_price": "2475" + }, + { + "sr_no": "2", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "18", + "unit_price": "10", + "total_price": "180" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "3", + "unit_price": "15", + "total_price": "45" + }, + { + "sr_no": "4", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "4", + "unit_price": "175", + "total_price": "700" + }, + { + "sr_no": "5", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "6", + "unit_price": "25", + "total_price": "150" + }, + { + "sr_no": "6", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "15", + "unit_price": "12", + "total_price": "180" + }, + { + "sr_no": "7", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "10", + "unit_price": "10", + "total_price": "100" + } + ], + "summary": { + "total_quantity": "67", + "sub_total": "3830", + "tax": "125", + "freight": "300", + "grand_total": "4255" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001342026-02-17535143PO-349351Documentation PouchDOC-8721122524752Ad DesignAD-DES-00318101803Custom Poly MailerPOLY-620315454Die Cut InsertDCI-72541757005Mailer Box SmallMBOX-SM6251506Plastic SleeveSLV-89015121807Gift Wrap SheetGFT-81210101006738301253004255Do not stack above five cartons" + }, + { + "file_name": "package_00135.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00135", + "order_date": "2026-06-09", + "sales_order_number": "569721", + "po_number": "PO-38753" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "1", + "unit_price": "30", + "total_price": "30" + }, + { + "sr_no": "2", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "20", + "unit_price": "100", + "total_price": "2000" + }, + { + "sr_no": "3", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "16", + "unit_price": "50", + "total_price": "800" + }, + { + "sr_no": "4", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "3", + "unit_price": "15", + "total_price": "45" + }, + { + "sr_no": "5", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "6", + "unit_price": "30", + "total_price": "180" + }, + { + "sr_no": "6", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "7", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "1", + "unit_price": "75", + "total_price": "75" + } + ], + "summary": { + "total_quantity": "50", + "sub_total": "3505", + "tax": "50", + "freight": "50", + "grand_total": "3605" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001352026-06-09569721PO-387531Moisture Guard BagMGB-309130302Warranty CardWAR-1102010020003Product ManualMAN-78016508004Plastic SleeveSLV-890315455Barcode Sticker RollBAR-2446301806Kraft Paper RollKRAFT-22131253757Logo Sticker PackLOGO-7541757550350550503605Verify carton count before dispatch" + }, + { + "file_name": "package_00136.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00136", + "order_date": "2026-03-30", + "sales_order_number": "569631", + "po_number": "PO-63403" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "15", + "unit_price": "25", + "total_price": "375" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "15", + "unit_price": "150", + "total_price": "2250" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "10", + "unit_price": "12", + "total_price": "120" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "17", + "unit_price": "90", + "total_price": "1530" + }, + { + "sr_no": "5", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "15", + "unit_price": "12", + "total_price": "180" + }, + { + "sr_no": "6", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "17", + "unit_price": "10", + "total_price": "170" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "15", + "unit_price": "225", + "total_price": "3375" + } + ], + "summary": { + "total_quantity": "104", + "sub_total": "8000", + "tax": "50", + "freight": "125", + "grand_total": "8175" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001362026-03-30569631PO-634031Corrugated DividerDIV-73115253752Printed CartonCRT-6701515022503Instruction LeafletLEAF-55710121204Invoice CopyINV-COPY179015305Packing TapeTAPE-33815121806Pallet Label CardPAL-31817101707Hang Tag BundleTAG-1491522533751048000501258175Use dock entrance for unloading" + }, + { + "file_name": "package_00137.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00137", + "order_date": "2026-09-26", + "sales_order_number": "555134", + "po_number": "PO-44228" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "1", + "unit_price": "125", + "total_price": "125" + }, + { + "sr_no": "2", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "10", + "unit_price": "125", + "total_price": "1250" + }, + { + "sr_no": "3", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "7", + "unit_price": "25", + "total_price": "175" + }, + { + "sr_no": "4", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "19", + "unit_price": "60", + "total_price": "1140" + }, + { + "sr_no": "5", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "20", + "unit_price": "200", + "total_price": "4000" + } + ], + "summary": { + "total_quantity": "57", + "sub_total": "6690", + "tax": "125", + "freight": "100", + "grand_total": "6915" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001372026-09-26555134PO-442281Pallet Label CardPAL-31811251252Corrugated DividerDIV-7311012512503Foam InsertFOM-5607251754Hang Tag BundleTAG-149196011405Packing Slip CopyPSC-3912020040005766901251006915Attach invoice copy to shipment" + }, + { + "file_name": "package_00138.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00138", + "order_date": "2026-10-13", + "sales_order_number": "560747", + "po_number": "PO-51932" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "14", + "unit_price": "75", + "total_price": "1050" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "4", + "unit_price": "20", + "total_price": "80" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "10", + "unit_price": "150", + "total_price": "1500" + }, + { + "sr_no": "4", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "17", + "unit_price": "100", + "total_price": "1700" + }, + { + "sr_no": "5", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "5", + "unit_price": "100", + "total_price": "500" + }, + { + "sr_no": "6", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + }, + { + "sr_no": "7", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "1", + "unit_price": "100", + "total_price": "100" + }, + { + "sr_no": "8", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "7", + "unit_price": "12", + "total_price": "84" + } + ], + "summary": { + "total_quantity": "64", + "sub_total": "5086", + "tax": "200", + "freight": "125", + "grand_total": "5411" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001382026-10-13560747PO-519321Fragile Label SetFRG-112147510502Mailer Box SmallMBOX-SM420803Instruction LeafletLEAF-5571015015004Return Label SheetRTN-5091710017005Gift Wrap SheetGFT-81251005006Foam InsertFOM-560612727Corner ProtectorCRN-01911001008Shipping Label PackLBL-450712846450862001255411Verify carton count before dispatch" + }, + { + "file_name": "package_00139.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00139", + "order_date": "2026-10-05", + "sales_order_number": "589503", + "po_number": "PO-38880" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "2", + "unit_price": "90", + "total_price": "180" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "8", + "unit_price": "100", + "total_price": "800" + }, + { + "sr_no": "3", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "5", + "unit_price": "175", + "total_price": "875" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "11", + "unit_price": "40", + "total_price": "440" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "4", + "unit_price": "100", + "total_price": "400" + }, + { + "sr_no": "6", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "11", + "unit_price": "75", + "total_price": "825" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "12", + "unit_price": "175", + "total_price": "2100" + } + ], + "summary": { + "total_quantity": "53", + "sub_total": "5620", + "tax": "150", + "freight": "100", + "grand_total": "5870" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001392026-10-05589503PO-388801Logo Sticker PackLOGO-7542901802Printed CartonCRT-67081008003Fragile Label SetFRG-11251758754Instruction LeafletLEAF-55711404405Foam InsertFOM-56041004006Product ManualMAN-78011758257Hang Tag BundleTAG-1491217521005356201501005870Deliver during business hours" + }, + { + "file_name": "package_00140.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00140", + "order_date": "2026-11-02", + "sales_order_number": "575155", + "po_number": "PO-56879" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "14", + "unit_price": "125", + "total_price": "1750" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "18", + "unit_price": "250", + "total_price": "4500" + }, + { + "sr_no": "3", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "9", + "unit_price": "15", + "total_price": "135" + } + ], + "summary": { + "total_quantity": "41", + "sub_total": "6385", + "tax": "200", + "freight": "0", + "grand_total": "6585" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001402026-11-02575155PO-568791Packing TapeTAPE-3381412517502Mailer Box SmallMBOX-SM1825045003Pallet Label CardPAL-31891513541638520006585Deliver during business hours" + }, + { + "file_name": "package_00141.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00141", + "order_date": "2026-10-31", + "sales_order_number": "568255", + "po_number": "PO-50284" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "125", + "total_price": "2250" + }, + { + "sr_no": "2", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "4", + "unit_price": "15", + "total_price": "60" + }, + { + "sr_no": "3", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "14", + "unit_price": "15", + "total_price": "210" + }, + { + "sr_no": "4", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "6", + "unit_price": "50", + "total_price": "300" + }, + { + "sr_no": "5", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "16", + "unit_price": "175", + "total_price": "2800" + }, + { + "sr_no": "6", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "3", + "unit_price": "12", + "total_price": "36" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "2", + "unit_price": "10", + "total_price": "20" + } + ], + "summary": { + "total_quantity": "63", + "sub_total": "5676", + "tax": "0", + "freight": "100", + "grand_total": "5776" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001412026-10-31568255PO-502841Printed CartonCRT-6701812522502Product ManualMAN-780415603Bubble Wrap RollBUB-90814152104Die Cut InsertDCI-7256503005Logo Sticker PackLOGO-7541617528006Invoice CopyINV-COPY312367Mailer Box LargeMBOX-LG2102063567601005776Do not stack above five cartons" + }, + { + "file_name": "package_00142.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00142", + "order_date": "2026-11-01", + "sales_order_number": "505586", + "po_number": "PO-66108" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "6", + "unit_price": "200", + "total_price": "1200" + }, + { + "sr_no": "2", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "6", + "unit_price": "150", + "total_price": "900" + }, + { + "sr_no": "3", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "19", + "unit_price": "50", + "total_price": "950" + } + ], + "summary": { + "total_quantity": "31", + "sub_total": "3050", + "tax": "200", + "freight": "300", + "grand_total": "3550" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001422026-11-01505586PO-661081Invoice CopyINV-COPY620012002Shipping Label PackLBL-45061509003Pallet Label CardPAL-31819509503130502003003550Do not stack above five cartons" + }, + { + "file_name": "package_00143.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00143", + "order_date": "2026-05-02", + "sales_order_number": "566256", + "po_number": "PO-61873" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "10", + "unit_price": "25", + "total_price": "250" + }, + { + "sr_no": "2", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "13", + "unit_price": "250", + "total_price": "3250" + }, + { + "sr_no": "3", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "11", + "unit_price": "175", + "total_price": "1925" + }, + { + "sr_no": "4", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "15", + "unit_price": "125", + "total_price": "1875" + }, + { + "sr_no": "5", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "10", + "unit_price": "60", + "total_price": "600" + }, + { + "sr_no": "6", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "6", + "unit_price": "25", + "total_price": "150" + }, + { + "sr_no": "7", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "7", + "unit_price": "150", + "total_price": "1050" + }, + { + "sr_no": "8", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "7", + "unit_price": "125", + "total_price": "875" + } + ], + "summary": { + "total_quantity": "79", + "sub_total": "9975", + "tax": "150", + "freight": "150", + "grand_total": "10275" + }, + "notes": "Contact buyer before final delivery" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001432026-05-02566256PO-618731Instruction LeafletLEAF-55710252502Plastic SleeveSLV-8901325032503Corner ProtectorCRN-0191117519254Security Seal StripSEC-4011512518755Printed CartonCRT-67010606006Mailer Box SmallMBOX-SM6251507Ad DesignAD-DES-003715010508Documentation PouchDOC-872712587579997515015010275Contact buyer before final delivery" + }, + { + "file_name": "package_00144.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00144", + "order_date": "2026-11-05", + "sales_order_number": "533006", + "po_number": "PO-38331" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "19", + "unit_price": "40", + "total_price": "760" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "2", + "unit_price": "10", + "total_price": "20" + }, + { + "sr_no": "4", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "1", + "unit_price": "40", + "total_price": "40" + } + ], + "summary": { + "total_quantity": "25", + "sub_total": "1195", + "tax": "125", + "freight": "150", + "grand_total": "1470" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001442026-11-05533006PO-383311Kraft Paper RollKRAFT-22131253752Fragile Label SetFRG-11219407603Mailer Box SmallMBOX-SM210204Return Label SheetRTN-509140402511951251501470Attach invoice copy to shipment" + }, + { + "file_name": "package_00145.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00145", + "order_date": "2026-10-18", + "sales_order_number": "567280", + "po_number": "PO-63767" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "13", + "unit_price": "10", + "total_price": "130" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "2", + "unit_price": "150", + "total_price": "300" + }, + { + "sr_no": "3", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "5", + "unit_price": "225", + "total_price": "1125" + }, + { + "sr_no": "4", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "16", + "unit_price": "60", + "total_price": "960" + }, + { + "sr_no": "5", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "1", + "unit_price": "40", + "total_price": "40" + }, + { + "sr_no": "6", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "14", + "unit_price": "225", + "total_price": "3150" + }, + { + "sr_no": "7", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "10", + "unit_price": "75", + "total_price": "750" + }, + { + "sr_no": "8", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "17", + "unit_price": "12", + "total_price": "204" + } + ], + "summary": { + "total_quantity": "78", + "sub_total": "6659", + "tax": "125", + "freight": "50", + "grand_total": "6834" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001452026-10-18567280PO-637671Fragile Label SetFRG-11213101302Mailer Box SmallMBOX-SM21503003Hang Tag BundleTAG-149522511254Pallet Label CardPAL-31816609605Barcode Sticker RollBAR-244140406Kraft Paper RollKRAFT-2211422531507Die Cut InsertDCI-72510757508Custom Poly MailerPOLY-6201712204786659125506834Attach invoice copy to shipment" + }, + { + "file_name": "package_00146.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00146", + "order_date": "2026-10-02", + "sales_order_number": "562680", + "po_number": "PO-68259" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "11", + "unit_price": "75", + "total_price": "825" + }, + { + "sr_no": "2", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "17", + "unit_price": "50", + "total_price": "850" + }, + { + "sr_no": "3", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "11", + "unit_price": "10", + "total_price": "110" + } + ], + "summary": { + "total_quantity": "39", + "sub_total": "1785", + "tax": "50", + "freight": "150", + "grand_total": "1985" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001462026-10-02562680PO-682591Documentation PouchDOC-87211758252Return Label SheetRTN-50917508503Moisture Guard BagMGB-3091110110391785501501985Partial shipment allowed" + }, + { + "file_name": "package_00147.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Vertex Home Mart", + "bill_to_address": "312 King Street, Seattle, WA 98104", + "ship_to_name": "Vertex Home Mart", + "ship_to_address": "810 Depot Road, Tacoma, WA 98421" + }, + "document": { + "package_number": "PKG00147", + "order_date": "2026-11-21", + "sales_order_number": "566418", + "po_number": "PO-45283" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + }, + { + "sr_no": "2", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "9", + "unit_price": "10", + "total_price": "90" + }, + { + "sr_no": "3", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "3", + "unit_price": "175", + "total_price": "525" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "18", + "unit_price": "20", + "total_price": "360" + }, + { + "sr_no": "5", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "18", + "unit_price": "10", + "total_price": "180" + }, + { + "sr_no": "6", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "1", + "unit_price": "100", + "total_price": "100" + }, + { + "sr_no": "7", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "10", + "unit_price": "125", + "total_price": "1250" + }, + { + "sr_no": "8", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "11", + "unit_price": "225", + "total_price": "2475" + } + ], + "summary": { + "total_quantity": "76", + "sub_total": "5052", + "tax": "0", + "freight": "300", + "grand_total": "5352" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG001472026-11-21566418PO-452831Logo Sticker PackLOGO-754612722Bubble Wrap RollBUB-908910903Thermal Label RollTHR-61231755254Instruction LeafletLEAF-55718203605Packing Slip CopyPSC-39118101806Documentation PouchDOC-87211001007Fragile Label SetFRG-1121012512508Barcode Sticker RollBAR-24411225247576505203005352Deliver during business hours" + }, + { + "file_name": "package_00148.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00148", + "order_date": "2026-04-20", + "sales_order_number": "545460", + "po_number": "PO-43631" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "5", + "unit_price": "125", + "total_price": "625" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "12", + "unit_price": "75", + "total_price": "900" + }, + { + "sr_no": "3", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "18", + "unit_price": "50", + "total_price": "900" + }, + { + "sr_no": "4", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "13", + "unit_price": "20", + "total_price": "260" + }, + { + "sr_no": "5", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "12", + "unit_price": "100", + "total_price": "1200" + } + ], + "summary": { + "total_quantity": "60", + "sub_total": "3885", + "tax": "0", + "freight": "75", + "grand_total": "3960" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001482026-04-20545460PO-436311Mailer Box LargeMBOX-LG51256252Thermal Label RollTHR-61212759003Packing Slip CopyPSC-39118509004Product ManualMAN-78013202605Moisture Guard BagMGB-3091210012006038850753960Partial shipment allowed" + }, + { + "file_name": "package_00149.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00149", + "order_date": "2026-07-31", + "sales_order_number": "524739", + "po_number": "PO-48658" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "4", + "unit_price": "75", + "total_price": "300" + }, + { + "sr_no": "2", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "14", + "unit_price": "20", + "total_price": "280" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "11", + "unit_price": "75", + "total_price": "825" + } + ], + "summary": { + "total_quantity": "29", + "sub_total": "1405", + "tax": "0", + "freight": "50", + "grand_total": "1455" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG001492026-07-31524739PO-486581Corrugated DividerDIV-7314753002Barcode Sticker RollBAR-24414202803Instruction LeafletLEAF-55711758252914050501455Shipment can be split by item line" + }, + { + "file_name": "package_00150.png", + "split": "test", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00150", + "order_date": "2026-08-13", + "sales_order_number": "520683", + "po_number": "PO-42794" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "4", + "unit_price": "250", + "total_price": "1000" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "15", + "unit_price": "20", + "total_price": "300" + }, + { + "sr_no": "3", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "17", + "unit_price": "10", + "total_price": "170" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "16", + "unit_price": "10", + "total_price": "160" + }, + { + "sr_no": "5", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "9", + "unit_price": "175", + "total_price": "1575" + } + ], + "summary": { + "total_quantity": "61", + "sub_total": "3205", + "tax": "150", + "freight": "50", + "grand_total": "3405" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG001502026-08-13520683PO-427941Foam InsertFOM-560425010002Die Cut InsertDCI-72515203003Bubble Wrap RollBUB-90817101704Barcode Sticker RollBAR-24416101605Mailer Box LargeMBOX-LG91751575613205150503405Handle cartons with care" + } +] \ No newline at end of file diff --git a/test/annotations_with_sequences.jsonl b/test/annotations_with_sequences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0a4cc3c4c1d37540e82e9c5bec840dbafd857755 --- /dev/null +++ b/test/annotations_with_sequences.jsonl @@ -0,0 +1,50 @@ +{"file_name": "package_00101.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00101", "order_date": "2026-04-19", "sales_order_number": "521374", "po_number": "PO-42740"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "12", "unit_price": "12", "total_price": "144"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "9", "unit_price": "175", "total_price": "1575"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "60", "total_price": "1080"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "4", "unit_price": "25", "total_price": "100"}, {"sr_no": "5", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "6", "unit_price": "10", "total_price": "60"}, {"sr_no": "6", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "8", "unit_price": "25", "total_price": "200"}, {"sr_no": "7", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "17", "unit_price": "40", "total_price": "680"}, {"sr_no": "8", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "15", "unit_price": "125", "total_price": "1875"}], "summary": {"total_quantity": "89", "sub_total": "5714", "tax": "200", "freight": "0", "grand_total": "5914"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001012026-04-19521374PO-427401Instruction LeafletLEAF-55712121442Thermal Label RollTHR-612917515753Printed CartonCRT-670186010804Ad DesignAD-DES-0034251005Packing TapeTAPE-338610606Barcode Sticker RollBAR-2448252007Die Cut InsertDCI-72517406808Plastic SleeveSLV-89015125187589571420005914Use dock entrance for unloading"} +{"file_name": "package_00102.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00102", "order_date": "2026-03-03", "sales_order_number": "531896", "po_number": "PO-45706"}, "items": [{"sr_no": "1", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "16", "unit_price": "175", "total_price": "2800"}, {"sr_no": "2", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "12", "unit_price": "60", "total_price": "720"}, {"sr_no": "3", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "7", "unit_price": "125", "total_price": "875"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "17", "unit_price": "40", "total_price": "680"}, {"sr_no": "5", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "15", "unit_price": "30", "total_price": "450"}, {"sr_no": "6", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "17", "unit_price": "15", "total_price": "255"}, {"sr_no": "7", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "40", "total_price": "720"}, {"sr_no": "8", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "16", "unit_price": "175", "total_price": "2800"}], "summary": {"total_quantity": "118", "sub_total": "9300", "tax": "200", "freight": "50", "grand_total": "9550"}, "notes": "Handle cartons with care"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001022026-03-03531896PO-457061Warranty CardWAR-1101617528002Pallet Label CardPAL-31812607203Gift Wrap SheetGFT-81271258754Barcode Sticker RollBAR-24417406805Hang Tag BundleTAG-14915304506Plastic SleeveSLV-89017152557Printed CartonCRT-67018407208Logo Sticker PackLOGO-7541617528001189300200509550Handle cartons with care"} +{"file_name": "package_00103.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00103", "order_date": "2026-12-02", "sales_order_number": "565962", "po_number": "PO-66319"}, "items": [{"sr_no": "1", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "10", "unit_price": "175", "total_price": "1750"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "5", "unit_price": "50", "total_price": "250"}, {"sr_no": "3", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "5", "unit_price": "90", "total_price": "450"}, {"sr_no": "4", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "19", "unit_price": "90", "total_price": "1710"}], "summary": {"total_quantity": "39", "sub_total": "4160", "tax": "0", "freight": "75", "grand_total": "4235"}, "notes": "Deliver during business hours"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001032026-12-02565962PO-663191Thermal Label RollTHR-6121017517502Die Cut InsertDCI-7255502503Security Seal StripSEC-4015904504Bubble Wrap RollBUB-908199017103941600754235Deliver during business hours"} +{"file_name": "package_00104.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00104", "order_date": "2026-07-26", "sales_order_number": "532906", "po_number": "PO-58849"}, "items": [{"sr_no": "1", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "1", "unit_price": "125", "total_price": "125"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "13", "unit_price": "20", "total_price": "260"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "30", "total_price": "540"}, {"sr_no": "4", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "17", "unit_price": "175", "total_price": "2975"}, {"sr_no": "5", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "4", "unit_price": "15", "total_price": "60"}, {"sr_no": "6", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "11", "unit_price": "250", "total_price": "2750"}, {"sr_no": "7", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "13", "unit_price": "125", "total_price": "1625"}, {"sr_no": "8", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "17", "unit_price": "90", "total_price": "1530"}], "summary": {"total_quantity": "94", "sub_total": "9865", "tax": "0", "freight": "150", "grand_total": "10015"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001042026-07-26532906PO-588491Barcode Sticker RollBAR-24411251252Thermal Label RollTHR-61213202603Printed CartonCRT-67018305404Pallet Label CardPAL-3181717529755Mailer Box SmallMBOX-SM415606Custom Poly MailerPOLY-6201125027507Kraft Paper RollKRAFT-2211312516258Packing Slip CopyPSC-39117901530949865015010015Use dock entrance for unloading"} +{"file_name": "package_00105.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00105", "order_date": "2026-10-15", "sales_order_number": "579774", "po_number": "PO-35435"}, "items": [{"sr_no": "1", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "9", "unit_price": "175", "total_price": "1575"}, {"sr_no": "2", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "5", "unit_price": "12", "total_price": "60"}, {"sr_no": "3", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "19", "unit_price": "12", "total_price": "228"}, {"sr_no": "4", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "4", "unit_price": "20", "total_price": "80"}, {"sr_no": "5", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "13", "unit_price": "125", "total_price": "1625"}, {"sr_no": "6", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "12", "unit_price": "225", "total_price": "2700"}, {"sr_no": "7", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "6", "unit_price": "20", "total_price": "120"}], "summary": {"total_quantity": "68", "sub_total": "6388", "tax": "50", "freight": "100", "grand_total": "6538"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001052026-10-15579774PO-354351Security Seal StripSEC-401917515752Moisture Guard BagMGB-309512603Fragile Label SetFRG-11219122284Return Label SheetRTN-509420805Shipping Label PackLBL-4501312516256Ad DesignAD-DES-0031222527007Pallet Label CardPAL-318620120686388501006538Keep goods dry during transit"} +{"file_name": "package_00106.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00106", "order_date": "2026-08-08", "sales_order_number": "563165", "po_number": "PO-45533"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "8", "unit_price": "25", "total_price": "200"}, {"sr_no": "2", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "2", "unit_price": "125", "total_price": "250"}, {"sr_no": "3", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "14", "unit_price": "175", "total_price": "2450"}, {"sr_no": "4", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "8", "unit_price": "100", "total_price": "800"}], "summary": {"total_quantity": "32", "sub_total": "3700", "tax": "150", "freight": "300", "grand_total": "4150"}, "notes": "Partial shipment allowed"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001062026-08-08563165PO-455331Gift Wrap SheetGFT-8128252002Custom Poly MailerPOLY-62021252503Logo Sticker PackLOGO-7541417524504Packing Slip CopyPSC-39181008003237001503004150Partial shipment allowed"} +{"file_name": "package_00107.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Vertex Home Mart", "bill_to_address": "312 King Street, Seattle, WA 98104", "ship_to_name": "Vertex Home Mart", "ship_to_address": "810 Depot Road, Tacoma, WA 98421"}, "document": {"package_number": "PKG00107", "order_date": "2026-06-12", "sales_order_number": "529895", "po_number": "PO-55563"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "14", "unit_price": "150", "total_price": "2100"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "18", "unit_price": "90", "total_price": "1620"}, {"sr_no": "3", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "10", "unit_price": "125", "total_price": "1250"}, {"sr_no": "4", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "14", "unit_price": "20", "total_price": "280"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "17", "unit_price": "60", "total_price": "1020"}], "summary": {"total_quantity": "73", "sub_total": "6270", "tax": "100", "freight": "250", "grand_total": "6620"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG001072026-06-12529895PO-555631Logo Sticker PackLOGO-7541415021002Kraft Paper RollKRAFT-221189016203Ad DesignAD-DES-0031012512504Fragile Label SetFRG-11214202805Foam InsertFOM-560176010207362701002506620Verify carton count before dispatch"} +{"file_name": "package_00108.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00108", "order_date": "2026-12-04", "sales_order_number": "588140", "po_number": "PO-32792"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "4", "unit_price": "225", "total_price": "900"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "18", "unit_price": "200", "total_price": "3600"}, {"sr_no": "3", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "15", "unit_price": "40", "total_price": "600"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "10", "unit_price": "10", "total_price": "100"}], "summary": {"total_quantity": "47", "sub_total": "5200", "tax": "0", "freight": "50", "grand_total": "5250"}, "notes": "Deliver during business hours"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001082026-12-04588140PO-327921Kraft Paper RollKRAFT-22142259002Die Cut InsertDCI-7251820036003Hang Tag BundleTAG-14915406004Invoice CopyINV-COPY10101004752000505250Deliver during business hours"} +{"file_name": "package_00109.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00109", "order_date": "2026-06-28", "sales_order_number": "530367", "po_number": "PO-44358"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "2", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "11", "unit_price": "90", "total_price": "990"}, {"sr_no": "3", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "6", "unit_price": "100", "total_price": "600"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "12", "unit_price": "20", "total_price": "240"}, {"sr_no": "5", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "6", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "16", "unit_price": "100", "total_price": "1600"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "9", "unit_price": "12", "total_price": "108"}], "summary": {"total_quantity": "66", "sub_total": "4093", "tax": "50", "freight": "150", "grand_total": "4293"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001092026-06-28530367PO-443581Logo Sticker PackLOGO-75431253752Ad DesignAD-DES-00311909903Pallet Label CardPAL-31861006004Documentation PouchDOC-87212202405Packing Slip CopyPSC-3919201806Packing TapeTAPE-3381610016007Hang Tag BundleTAG-149912108664093501504293Keep goods dry during transit"} +{"file_name": "package_00110.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00110", "order_date": "2026-11-16", "sales_order_number": "502289", "po_number": "PO-38497"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "2", "unit_price": "10", "total_price": "20"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "1", "unit_price": "40", "total_price": "40"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "8", "unit_price": "90", "total_price": "720"}, {"sr_no": "4", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "10", "unit_price": "60", "total_price": "600"}, {"sr_no": "5", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "2", "unit_price": "125", "total_price": "250"}, {"sr_no": "6", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "4", "unit_price": "10", "total_price": "40"}], "summary": {"total_quantity": "27", "sub_total": "1670", "tax": "150", "freight": "50", "grand_total": "1870"}, "notes": "Deliver during business hours"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG001102026-11-16502289PO-384971Mailer Box SmallMBOX-SM210202Corner ProtectorCRN-019140403Instruction LeafletLEAF-5578907204Fragile Label SetFRG-11210606005Printed CartonCRT-67021252506Logo Sticker PackLOGO-75441040271670150501870Deliver during business hours"} +{"file_name": "package_00111.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00111", "order_date": "2026-10-29", "sales_order_number": "546550", "po_number": "PO-34222"}, "items": [{"sr_no": "1", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "2", "unit_price": "90", "total_price": "180"}, {"sr_no": "2", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "3", "unit_price": "10", "total_price": "30"}, {"sr_no": "3", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "19", "unit_price": "75", "total_price": "1425"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "9", "unit_price": "30", "total_price": "270"}, {"sr_no": "5", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "17", "unit_price": "20", "total_price": "340"}], "summary": {"total_quantity": "50", "sub_total": "2245", "tax": "0", "freight": "0", "grand_total": "2245"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001112026-10-29546550PO-342221Thermal Label RollTHR-6122901802Plastic SleeveSLV-890310303Corner ProtectorCRN-019197514254Invoice CopyINV-COPY9302705Documentation PouchDOC-8721720340502245002245Shipment can be split by item line"} +{"file_name": "package_00112.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00112", "order_date": "2026-02-27", "sales_order_number": "505662", "po_number": "PO-68504"}, "items": [{"sr_no": "1", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "8", "unit_price": "225", "total_price": "1800"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "3", "unit_price": "175", "total_price": "525"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "15", "unit_price": "250", "total_price": "3750"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "6", "unit_price": "75", "total_price": "450"}, {"sr_no": "5", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "19", "unit_price": "20", "total_price": "380"}, {"sr_no": "6", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "11", "unit_price": "30", "total_price": "330"}, {"sr_no": "7", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "17", "unit_price": "175", "total_price": "2975"}], "summary": {"total_quantity": "79", "sub_total": "10210", "tax": "150", "freight": "50", "grand_total": "10410"}, "notes": "Contact buyer before final delivery"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001122026-02-27505662PO-685041Return Label SheetRTN-509822518002Corner ProtectorCRN-01931755253Instruction LeafletLEAF-5571525037504Packing TapeTAPE-3386754505Pallet Label CardPAL-31819203806Security Seal StripSEC-40111303307Die Cut InsertDCI-72517175297579102101505010410Contact buyer before final delivery"} +{"file_name": "package_00113.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00113", "order_date": "2026-11-08", "sales_order_number": "551337", "po_number": "PO-35417"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "6", "unit_price": "175", "total_price": "1050"}, {"sr_no": "2", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "13", "unit_price": "175", "total_price": "2275"}, {"sr_no": "3", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "13", "unit_price": "200", "total_price": "2600"}], "summary": {"total_quantity": "32", "sub_total": "5925", "tax": "0", "freight": "100", "grand_total": "6025"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001132026-11-08551337PO-354171Gift Wrap SheetGFT-812617510502Shipping Label PackLBL-4501317522753Product ManualMAN-78013200260032592501006025Use dock entrance for unloading"} +{"file_name": "package_00114.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00114", "order_date": "2026-06-26", "sales_order_number": "510576", "po_number": "PO-68835"}, "items": [{"sr_no": "1", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "2", "unit_price": "150", "total_price": "300"}, {"sr_no": "2", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "7", "unit_price": "100", "total_price": "700"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "14", "unit_price": "175", "total_price": "2450"}, {"sr_no": "4", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "12", "unit_price": "10", "total_price": "120"}, {"sr_no": "5", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "14", "unit_price": "225", "total_price": "3150"}, {"sr_no": "6", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "12", "unit_price": "12", "total_price": "144"}], "summary": {"total_quantity": "61", "sub_total": "6864", "tax": "0", "freight": "0", "grand_total": "6864"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001142026-06-26510576PO-688351Plastic SleeveSLV-89021503002Bubble Wrap RollBUB-90871007003Die Cut InsertDCI-7251417524504Hang Tag BundleTAG-14912101205Return Label SheetRTN-5091422531506Shipping Label PackLBL-4501212144616864006864Use dock entrance for unloading"} +{"file_name": "package_00115.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00115", "order_date": "2026-07-14", "sales_order_number": "548187", "po_number": "PO-38839"}, "items": [{"sr_no": "1", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "18", "unit_price": "25", "total_price": "450"}, {"sr_no": "2", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "6", "unit_price": "100", "total_price": "600"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "4", "unit_price": "225", "total_price": "900"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "5", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "6", "unit_price": "15", "total_price": "90"}, {"sr_no": "6", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "10", "unit_price": "15", "total_price": "150"}, {"sr_no": "7", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "4", "unit_price": "40", "total_price": "160"}], "summary": {"total_quantity": "51", "sub_total": "2725", "tax": "0", "freight": "150", "grand_total": "2875"}, "notes": "Partial shipment allowed"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001152026-07-14548187PO-388391Hang Tag BundleTAG-14918254502Corrugated DividerDIV-73161006003Mailer Box SmallMBOX-SM42259004Instruction LeafletLEAF-55731253755Plastic SleeveSLV-890615906Kraft Paper RollKRAFT-22110151507Foam InsertFOM-56044016051272501502875Partial shipment allowed"} +{"file_name": "package_00116.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00116", "order_date": "2026-07-06", "sales_order_number": "579361", "po_number": "PO-55209"}, "items": [{"sr_no": "1", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "7", "unit_price": "125", "total_price": "875"}, {"sr_no": "2", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "19", "unit_price": "90", "total_price": "1710"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "8", "unit_price": "20", "total_price": "160"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "16", "unit_price": "100", "total_price": "1600"}, {"sr_no": "5", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "19", "unit_price": "30", "total_price": "570"}, {"sr_no": "6", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "1", "unit_price": "150", "total_price": "150"}], "summary": {"total_quantity": "70", "sub_total": "5065", "tax": "0", "freight": "100", "grand_total": "5165"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG001162026-07-06579361PO-552091Thermal Label RollTHR-61271258752Foam InsertFOM-560199017103Documentation PouchDOC-8728201604Ad DesignAD-DES-0031610016005Kraft Paper RollKRAFT-22119305706Printed CartonCRT-670115015070506501005165Use dock entrance for unloading"} +{"file_name": "package_00117.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00117", "order_date": "2026-10-03", "sales_order_number": "503606", "po_number": "PO-47473"}, "items": [{"sr_no": "1", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "17", "unit_price": "15", "total_price": "255"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "17", "unit_price": "150", "total_price": "2550"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "16", "unit_price": "175", "total_price": "2800"}, {"sr_no": "4", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "2", "unit_price": "40", "total_price": "80"}], "summary": {"total_quantity": "52", "sub_total": "5685", "tax": "50", "freight": "150", "grand_total": "5885"}, "notes": "Customer signature required"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001172026-10-03503606PO-474731Product ManualMAN-78017152552Mailer Box SmallMBOX-SM1715025503Documentation PouchDOC-8721617528004Hang Tag BundleTAG-14924080525685501505885Customer signature required"} +{"file_name": "package_00118.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00118", "order_date": "2026-05-15", "sales_order_number": "571541", "po_number": "PO-68483"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "11", "unit_price": "25", "total_price": "275"}, {"sr_no": "2", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "1", "unit_price": "75", "total_price": "75"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "1", "unit_price": "225", "total_price": "225"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "12", "unit_price": "225", "total_price": "2700"}, {"sr_no": "5", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "13", "unit_price": "15", "total_price": "195"}, {"sr_no": "6", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "18", "unit_price": "175", "total_price": "3150"}], "summary": {"total_quantity": "56", "sub_total": "6620", "tax": "50", "freight": "150", "grand_total": "6820"}, "notes": "Priority delivery requested"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001182026-05-15571541PO-684831Printed CartonCRT-67011252752Plastic SleeveSLV-890175753Die Cut InsertDCI-72512252254Barcode Sticker RollBAR-2441222527005Corrugated DividerDIV-73113151956Bubble Wrap RollBUB-908181753150566620501506820Priority delivery requested"} +{"file_name": "package_00119.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00119", "order_date": "2026-02-04", "sales_order_number": "538805", "po_number": "PO-30215"}, "items": [{"sr_no": "1", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "7", "unit_price": "20", "total_price": "140"}, {"sr_no": "2", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "13", "unit_price": "10", "total_price": "130"}, {"sr_no": "3", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "8", "unit_price": "150", "total_price": "1200"}], "summary": {"total_quantity": "28", "sub_total": "1470", "tax": "0", "freight": "75", "grand_total": "1545"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001192026-02-04538805PO-302151Security Seal StripSEC-4017201402Packing TapeTAPE-33813101303Mailer Box LargeMBOX-LG815012002814700751545Keep goods dry during transit"} +{"file_name": "package_00120.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00120", "order_date": "2026-07-25", "sales_order_number": "567762", "po_number": "PO-36148"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "11", "unit_price": "75", "total_price": "825"}, {"sr_no": "2", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "2", "unit_price": "90", "total_price": "180"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "2", "unit_price": "40", "total_price": "80"}, {"sr_no": "4", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "20", "unit_price": "60", "total_price": "1200"}, {"sr_no": "5", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "8", "unit_price": "25", "total_price": "200"}], "summary": {"total_quantity": "43", "sub_total": "2485", "tax": "0", "freight": "200", "grand_total": "2685"}, "notes": "Partial shipment allowed"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001202026-07-25567762PO-361481Logo Sticker PackLOGO-75411758252Mailer Box LargeMBOX-LG2901803Die Cut InsertDCI-725240804Corner ProtectorCRN-019206012005Invoice CopyINV-COPY82520043248502002685Partial shipment allowed"} +{"file_name": "package_00121.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00121", "order_date": "2026-03-10", "sales_order_number": "502492", "po_number": "PO-38629"}, "items": [{"sr_no": "1", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "16", "unit_price": "100", "total_price": "1600"}, {"sr_no": "2", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "3", "unit_price": "225", "total_price": "675"}, {"sr_no": "3", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "16", "unit_price": "40", "total_price": "640"}, {"sr_no": "4", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "17", "unit_price": "125", "total_price": "2125"}], "summary": {"total_quantity": "52", "sub_total": "5040", "tax": "50", "freight": "250", "grand_total": "5340"}, "notes": "Priority delivery requested"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001212026-03-10502492PO-386291Foam InsertFOM-5601610016002Packing TapeTAPE-33832256753Kraft Paper RollKRAFT-22116406404Corner ProtectorCRN-019171252125525040502505340Priority delivery requested"} +{"file_name": "package_00122.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00122", "order_date": "2026-05-13", "sales_order_number": "594242", "po_number": "PO-34926"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "7", "unit_price": "90", "total_price": "630"}, {"sr_no": "2", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "7", "unit_price": "150", "total_price": "1050"}, {"sr_no": "3", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "13", "unit_price": "225", "total_price": "2925"}, {"sr_no": "4", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "2", "unit_price": "15", "total_price": "30"}], "summary": {"total_quantity": "29", "sub_total": "4635", "tax": "125", "freight": "300", "grand_total": "5060"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG001222026-05-13594242PO-349261Mailer Box LargeMBOX-LG7906302Instruction LeafletLEAF-557715010503Logo Sticker PackLOGO-7541322529254Printed CartonCRT-670215302946351253005060Attach invoice copy to shipment"} +{"file_name": "package_00123.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00123", "order_date": "2026-01-30", "sales_order_number": "524463", "po_number": "PO-63623"}, "items": [{"sr_no": "1", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "12", "unit_price": "225", "total_price": "2700"}, {"sr_no": "2", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "18", "unit_price": "175", "total_price": "3150"}, {"sr_no": "3", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "19", "unit_price": "40", "total_price": "760"}, {"sr_no": "4", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "7", "unit_price": "250", "total_price": "1750"}, {"sr_no": "5", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "7", "unit_price": "225", "total_price": "1575"}], "summary": {"total_quantity": "63", "sub_total": "9935", "tax": "125", "freight": "250", "grand_total": "10310"}, "notes": "Priority delivery requested"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001232026-01-30524463PO-636231Corner ProtectorCRN-0191222527002Product ManualMAN-7801817531503Moisture Guard BagMGB-30919407604Logo Sticker PackLOGO-754725017505Mailer Box LargeMBOX-LG7225157563993512525010310Priority delivery requested"} +{"file_name": "package_00124.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Northline Supplies", "address": "7455 Drew Court, White City, KS 66872", "phone_number": "+91-88390-36062"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00124", "order_date": "2026-01-24", "sales_order_number": "552547", "po_number": "PO-54167"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "1", "unit_price": "225", "total_price": "225"}, {"sr_no": "2", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "8", "unit_price": "200", "total_price": "1600"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "18", "unit_price": "15", "total_price": "270"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "16", "unit_price": "60", "total_price": "960"}, {"sr_no": "5", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "16", "unit_price": "125", "total_price": "2000"}, {"sr_no": "6", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "20", "unit_price": "25", "total_price": "500"}, {"sr_no": "7", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "3", "unit_price": "10", "total_price": "30"}, {"sr_no": "8", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "11", "unit_price": "30", "total_price": "330"}], "summary": {"total_quantity": "93", "sub_total": "5915", "tax": "150", "freight": "75", "grand_total": "6140"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001242026-01-24552547PO-541671Kraft Paper RollKRAFT-22112252252Warranty CardWAR-110820016003Mailer Box SmallMBOX-SM18152704Invoice CopyINV-COPY16609605Corner ProtectorCRN-0191612520006Ad DesignAD-DES-00320255007Logo Sticker PackLOGO-754310308Die Cut InsertDCI-7251130330935915150756140Shipment can be split by item line"} +{"file_name": "package_00125.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00125", "order_date": "2026-10-17", "sales_order_number": "514209", "po_number": "PO-59561"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "250", "total_price": "4500"}, {"sr_no": "2", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "18", "unit_price": "15", "total_price": "270"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "1", "unit_price": "100", "total_price": "100"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "10", "unit_price": "60", "total_price": "600"}, {"sr_no": "5", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "4", "unit_price": "15", "total_price": "60"}, {"sr_no": "6", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "13", "unit_price": "50", "total_price": "650"}, {"sr_no": "7", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "18", "unit_price": "25", "total_price": "450"}], "summary": {"total_quantity": "82", "sub_total": "6630", "tax": "200", "freight": "200", "grand_total": "7030"}, "notes": "Partial shipment allowed"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001252026-10-17514209PO-595611Printed CartonCRT-6701825045002Corrugated DividerDIV-73118152703Barcode Sticker RollBAR-24411001004Packing TapeTAPE-33810606005Mailer Box LargeMBOX-LG415606Hang Tag BundleTAG-14913506507Ad DesignAD-DES-00318254508266302002007030Partial shipment allowed"} +{"file_name": "package_00126.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00126", "order_date": "2026-01-19", "sales_order_number": "521776", "po_number": "PO-49003"}, "items": [{"sr_no": "1", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "19", "unit_price": "10", "total_price": "190"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "18", "unit_price": "50", "total_price": "900"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "5", "unit_price": "30", "total_price": "150"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "20", "unit_price": "50", "total_price": "1000"}, {"sr_no": "5", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "19", "unit_price": "225", "total_price": "4275"}, {"sr_no": "6", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "11", "unit_price": "50", "total_price": "550"}, {"sr_no": "7", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "14", "unit_price": "50", "total_price": "700"}], "summary": {"total_quantity": "106", "sub_total": "7765", "tax": "200", "freight": "75", "grand_total": "8040"}, "notes": "Handle cartons with care"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001262026-01-19521776PO-490031Foam InsertFOM-56019101902Kraft Paper RollKRAFT-22118509003Die Cut InsertDCI-7255301504Barcode Sticker RollBAR-244205010005Invoice CopyINV-COPY1922542756Return Label SheetRTN-50911505507Moisture Guard BagMGB-30914507001067765200758040Handle cartons with care"} +{"file_name": "package_00127.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00127", "order_date": "2026-08-11", "sales_order_number": "556258", "po_number": "PO-50711"}, "items": [{"sr_no": "1", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "3", "unit_price": "100", "total_price": "300"}, {"sr_no": "2", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "12", "unit_price": "12", "total_price": "144"}, {"sr_no": "3", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "12", "unit_price": "60", "total_price": "720"}, {"sr_no": "4", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "16", "unit_price": "15", "total_price": "240"}, {"sr_no": "5", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "13", "unit_price": "175", "total_price": "2275"}, {"sr_no": "6", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "8", "unit_price": "100", "total_price": "800"}, {"sr_no": "7", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "2", "unit_price": "175", "total_price": "350"}], "summary": {"total_quantity": "66", "sub_total": "4829", "tax": "50", "freight": "300", "grand_total": "5179"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG001272026-08-11556258PO-507111Plastic SleeveSLV-89031003002Logo Sticker PackLOGO-75412121443Hang Tag BundleTAG-14912607204Pallet Label CardPAL-31816152405Packing TapeTAPE-3381317522756Gift Wrap SheetGFT-81281008007Kraft Paper RollKRAFT-2212175350664829503005179Keep goods dry during transit"} +{"file_name": "package_00128.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00128", "order_date": "2026-06-28", "sales_order_number": "505355", "po_number": "PO-49890"}, "items": [{"sr_no": "1", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "20", "unit_price": "30", "total_price": "600"}, {"sr_no": "2", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "4", "unit_price": "12", "total_price": "48"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "12", "unit_price": "175", "total_price": "2100"}, {"sr_no": "4", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "17", "unit_price": "60", "total_price": "1020"}, {"sr_no": "5", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "2", "unit_price": "50", "total_price": "100"}, {"sr_no": "6", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "2", "unit_price": "50", "total_price": "100"}, {"sr_no": "7", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "20", "unit_price": "50", "total_price": "1000"}, {"sr_no": "8", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "7", "unit_price": "100", "total_price": "700"}], "summary": {"total_quantity": "84", "sub_total": "5668", "tax": "0", "freight": "75", "grand_total": "5743"}, "notes": "Handle cartons with care"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001282026-06-28505355PO-498901Ad DesignAD-DES-00320306002Packing Slip CopyPSC-391412483Die Cut InsertDCI-7251217521004Logo Sticker PackLOGO-754176010205Instruction LeafletLEAF-5572501006Custom Poly MailerPOLY-6202501007Corrugated DividerDIV-731205010008Fragile Label SetFRG-11271007008456680755743Handle cartons with care"} +{"file_name": "package_00129.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00129", "order_date": "2026-07-14", "sales_order_number": "513330", "po_number": "PO-42973"}, "items": [{"sr_no": "1", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "1", "unit_price": "30", "total_price": "30"}, {"sr_no": "2", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "8", "unit_price": "20", "total_price": "160"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "20", "unit_price": "30", "total_price": "600"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "7", "unit_price": "175", "total_price": "1225"}, {"sr_no": "5", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "19", "unit_price": "250", "total_price": "4750"}, {"sr_no": "6", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "13", "unit_price": "75", "total_price": "975"}], "summary": {"total_quantity": "68", "sub_total": "7740", "tax": "0", "freight": "250", "grand_total": "7990"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001292026-07-14513330PO-429731Packing TapeTAPE-338130302Documentation PouchDOC-8728201603Custom Poly MailerPOLY-62020306004Invoice CopyINV-COPY717512255Logo Sticker PackLOGO-7541925047506Hang Tag BundleTAG-149137597568774002507990Verify carton count before dispatch"} +{"file_name": "package_00130.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00130", "order_date": "2026-01-20", "sales_order_number": "599229", "po_number": "PO-39421"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "12", "unit_price": "200", "total_price": "2400"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "1", "unit_price": "25", "total_price": "25"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "3", "unit_price": "60", "total_price": "180"}, {"sr_no": "4", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "18", "unit_price": "25", "total_price": "450"}, {"sr_no": "5", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "10", "unit_price": "100", "total_price": "1000"}], "summary": {"total_quantity": "44", "sub_total": "4055", "tax": "0", "freight": "50", "grand_total": "4105"}, "notes": "Partial shipment allowed"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001302026-01-20599229PO-394211Pallet Label CardPAL-3181220024002Corner ProtectorCRN-019125253Instruction LeafletLEAF-5573601804Custom Poly MailerPOLY-62018254505Documentation PouchDOC-8721010010004440550504105Partial shipment allowed"} +{"file_name": "package_00131.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00131", "order_date": "2026-09-26", "sales_order_number": "563898", "po_number": "PO-34845"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "17", "unit_price": "90", "total_price": "1530"}, {"sr_no": "2", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "3", "unit_price": "12", "total_price": "36"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "15", "unit_price": "150", "total_price": "2250"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "11", "unit_price": "75", "total_price": "825"}, {"sr_no": "5", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "9", "unit_price": "30", "total_price": "270"}, {"sr_no": "6", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "3", "unit_price": "30", "total_price": "90"}, {"sr_no": "7", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "17", "unit_price": "150", "total_price": "2550"}, {"sr_no": "8", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "18", "unit_price": "125", "total_price": "2250"}], "summary": {"total_quantity": "93", "sub_total": "9801", "tax": "0", "freight": "100", "grand_total": "9901"}, "notes": "Customer signature required"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001312026-09-26563898PO-348451Logo Sticker PackLOGO-754179015302Plastic SleeveSLV-890312363Custom Poly MailerPOLY-6201515022504Invoice CopyINV-COPY11758255Corrugated DividerDIV-7319302706Printed CartonCRT-670330907Mailer Box SmallMBOX-SM1715025508Packing TapeTAPE-33818125225093980101009901Customer signature required"} +{"file_name": "package_00132.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00132", "order_date": "2026-12-08", "sales_order_number": "504720", "po_number": "PO-38321"}, "items": [{"sr_no": "1", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "18", "unit_price": "30", "total_price": "540"}, {"sr_no": "2", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "17", "unit_price": "60", "total_price": "1020"}, {"sr_no": "3", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "14", "unit_price": "75", "total_price": "1050"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "3", "unit_price": "60", "total_price": "180"}, {"sr_no": "5", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "13", "unit_price": "100", "total_price": "1300"}], "summary": {"total_quantity": "65", "sub_total": "4090", "tax": "0", "freight": "200", "grand_total": "4290"}, "notes": "Priority delivery requested"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG001322026-12-08504720PO-383211Security Seal StripSEC-40118305402Gift Wrap SheetGFT-812176010203Return Label SheetRTN-509147510504Packing TapeTAPE-3383601805Ad DesignAD-DES-00313100130065409002004290Priority delivery requested"} +{"file_name": "package_00133.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00133", "order_date": "2026-07-11", "sales_order_number": "556522", "po_number": "PO-60067"}, "items": [{"sr_no": "1", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "18", "unit_price": "150", "total_price": "2700"}, {"sr_no": "2", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "9", "unit_price": "90", "total_price": "810"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "4", "unit_price": "60", "total_price": "240"}, {"sr_no": "4", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "17", "unit_price": "20", "total_price": "340"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "15", "unit_price": "75", "total_price": "1125"}], "summary": {"total_quantity": "63", "sub_total": "5215", "tax": "0", "freight": "50", "grand_total": "5265"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001332026-07-11556522PO-600671Documentation PouchDOC-8721815027002Packing TapeTAPE-3389908103Die Cut InsertDCI-7254602404Moisture Guard BagMGB-30917203405Foam InsertFOM-560157511256352150505265Keep goods dry during transit"} +{"file_name": "package_00134.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00134", "order_date": "2026-02-17", "sales_order_number": "535143", "po_number": "PO-34935"}, "items": [{"sr_no": "1", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "11", "unit_price": "225", "total_price": "2475"}, {"sr_no": "2", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "18", "unit_price": "10", "total_price": "180"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "3", "unit_price": "15", "total_price": "45"}, {"sr_no": "4", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "4", "unit_price": "175", "total_price": "700"}, {"sr_no": "5", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "6", "unit_price": "25", "total_price": "150"}, {"sr_no": "6", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "15", "unit_price": "12", "total_price": "180"}, {"sr_no": "7", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "10", "unit_price": "10", "total_price": "100"}], "summary": {"total_quantity": "67", "sub_total": "3830", "tax": "125", "freight": "300", "grand_total": "4255"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001342026-02-17535143PO-349351Documentation PouchDOC-8721122524752Ad DesignAD-DES-00318101803Custom Poly MailerPOLY-620315454Die Cut InsertDCI-72541757005Mailer Box SmallMBOX-SM6251506Plastic SleeveSLV-89015121807Gift Wrap SheetGFT-81210101006738301253004255Do not stack above five cartons"} +{"file_name": "package_00135.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00135", "order_date": "2026-06-09", "sales_order_number": "569721", "po_number": "PO-38753"}, "items": [{"sr_no": "1", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "1", "unit_price": "30", "total_price": "30"}, {"sr_no": "2", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "20", "unit_price": "100", "total_price": "2000"}, {"sr_no": "3", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "16", "unit_price": "50", "total_price": "800"}, {"sr_no": "4", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "3", "unit_price": "15", "total_price": "45"}, {"sr_no": "5", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "6", "unit_price": "30", "total_price": "180"}, {"sr_no": "6", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "7", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "1", "unit_price": "75", "total_price": "75"}], "summary": {"total_quantity": "50", "sub_total": "3505", "tax": "50", "freight": "50", "grand_total": "3605"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001352026-06-09569721PO-387531Moisture Guard BagMGB-309130302Warranty CardWAR-1102010020003Product ManualMAN-78016508004Plastic SleeveSLV-890315455Barcode Sticker RollBAR-2446301806Kraft Paper RollKRAFT-22131253757Logo Sticker PackLOGO-7541757550350550503605Verify carton count before dispatch"} +{"file_name": "package_00136.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00136", "order_date": "2026-03-30", "sales_order_number": "569631", "po_number": "PO-63403"}, "items": [{"sr_no": "1", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "15", "unit_price": "25", "total_price": "375"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "15", "unit_price": "150", "total_price": "2250"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "10", "unit_price": "12", "total_price": "120"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "17", "unit_price": "90", "total_price": "1530"}, {"sr_no": "5", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "15", "unit_price": "12", "total_price": "180"}, {"sr_no": "6", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "17", "unit_price": "10", "total_price": "170"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "15", "unit_price": "225", "total_price": "3375"}], "summary": {"total_quantity": "104", "sub_total": "8000", "tax": "50", "freight": "125", "grand_total": "8175"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001362026-03-30569631PO-634031Corrugated DividerDIV-73115253752Printed CartonCRT-6701515022503Instruction LeafletLEAF-55710121204Invoice CopyINV-COPY179015305Packing TapeTAPE-33815121806Pallet Label CardPAL-31817101707Hang Tag BundleTAG-1491522533751048000501258175Use dock entrance for unloading"} +{"file_name": "package_00137.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00137", "order_date": "2026-09-26", "sales_order_number": "555134", "po_number": "PO-44228"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "1", "unit_price": "125", "total_price": "125"}, {"sr_no": "2", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "10", "unit_price": "125", "total_price": "1250"}, {"sr_no": "3", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "7", "unit_price": "25", "total_price": "175"}, {"sr_no": "4", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "19", "unit_price": "60", "total_price": "1140"}, {"sr_no": "5", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "20", "unit_price": "200", "total_price": "4000"}], "summary": {"total_quantity": "57", "sub_total": "6690", "tax": "125", "freight": "100", "grand_total": "6915"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001372026-09-26555134PO-442281Pallet Label CardPAL-31811251252Corrugated DividerDIV-7311012512503Foam InsertFOM-5607251754Hang Tag BundleTAG-149196011405Packing Slip CopyPSC-3912020040005766901251006915Attach invoice copy to shipment"} +{"file_name": "package_00138.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00138", "order_date": "2026-10-13", "sales_order_number": "560747", "po_number": "PO-51932"}, "items": [{"sr_no": "1", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "14", "unit_price": "75", "total_price": "1050"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "4", "unit_price": "20", "total_price": "80"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "10", "unit_price": "150", "total_price": "1500"}, {"sr_no": "4", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "17", "unit_price": "100", "total_price": "1700"}, {"sr_no": "5", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "5", "unit_price": "100", "total_price": "500"}, {"sr_no": "6", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "6", "unit_price": "12", "total_price": "72"}, {"sr_no": "7", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "1", "unit_price": "100", "total_price": "100"}, {"sr_no": "8", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "7", "unit_price": "12", "total_price": "84"}], "summary": {"total_quantity": "64", "sub_total": "5086", "tax": "200", "freight": "125", "grand_total": "5411"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001382026-10-13560747PO-519321Fragile Label SetFRG-112147510502Mailer Box SmallMBOX-SM420803Instruction LeafletLEAF-5571015015004Return Label SheetRTN-5091710017005Gift Wrap SheetGFT-81251005006Foam InsertFOM-560612727Corner ProtectorCRN-01911001008Shipping Label PackLBL-450712846450862001255411Verify carton count before dispatch"} +{"file_name": "package_00139.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00139", "order_date": "2026-10-05", "sales_order_number": "589503", "po_number": "PO-38880"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "2", "unit_price": "90", "total_price": "180"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "8", "unit_price": "100", "total_price": "800"}, {"sr_no": "3", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "5", "unit_price": "175", "total_price": "875"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "11", "unit_price": "40", "total_price": "440"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "4", "unit_price": "100", "total_price": "400"}, {"sr_no": "6", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "11", "unit_price": "75", "total_price": "825"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "12", "unit_price": "175", "total_price": "2100"}], "summary": {"total_quantity": "53", "sub_total": "5620", "tax": "150", "freight": "100", "grand_total": "5870"}, "notes": "Deliver during business hours"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG001392026-10-05589503PO-388801Logo Sticker PackLOGO-7542901802Printed CartonCRT-67081008003Fragile Label SetFRG-11251758754Instruction LeafletLEAF-55711404405Foam InsertFOM-56041004006Product ManualMAN-78011758257Hang Tag BundleTAG-1491217521005356201501005870Deliver during business hours"} +{"file_name": "package_00140.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00140", "order_date": "2026-11-02", "sales_order_number": "575155", "po_number": "PO-56879"}, "items": [{"sr_no": "1", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "14", "unit_price": "125", "total_price": "1750"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "18", "unit_price": "250", "total_price": "4500"}, {"sr_no": "3", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "9", "unit_price": "15", "total_price": "135"}], "summary": {"total_quantity": "41", "sub_total": "6385", "tax": "200", "freight": "0", "grand_total": "6585"}, "notes": "Deliver during business hours"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG001402026-11-02575155PO-568791Packing TapeTAPE-3381412517502Mailer Box SmallMBOX-SM1825045003Pallet Label CardPAL-31891513541638520006585Deliver during business hours"} +{"file_name": "package_00141.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00141", "order_date": "2026-10-31", "sales_order_number": "568255", "po_number": "PO-50284"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "125", "total_price": "2250"}, {"sr_no": "2", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "4", "unit_price": "15", "total_price": "60"}, {"sr_no": "3", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "14", "unit_price": "15", "total_price": "210"}, {"sr_no": "4", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "6", "unit_price": "50", "total_price": "300"}, {"sr_no": "5", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "16", "unit_price": "175", "total_price": "2800"}, {"sr_no": "6", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "3", "unit_price": "12", "total_price": "36"}, {"sr_no": "7", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "2", "unit_price": "10", "total_price": "20"}], "summary": {"total_quantity": "63", "sub_total": "5676", "tax": "0", "freight": "100", "grand_total": "5776"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001412026-10-31568255PO-502841Printed CartonCRT-6701812522502Product ManualMAN-780415603Bubble Wrap RollBUB-90814152104Die Cut InsertDCI-7256503005Logo Sticker PackLOGO-7541617528006Invoice CopyINV-COPY312367Mailer Box LargeMBOX-LG2102063567601005776Do not stack above five cartons"} +{"file_name": "package_00142.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00142", "order_date": "2026-11-01", "sales_order_number": "505586", "po_number": "PO-66108"}, "items": [{"sr_no": "1", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "6", "unit_price": "200", "total_price": "1200"}, {"sr_no": "2", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "6", "unit_price": "150", "total_price": "900"}, {"sr_no": "3", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "19", "unit_price": "50", "total_price": "950"}], "summary": {"total_quantity": "31", "sub_total": "3050", "tax": "200", "freight": "300", "grand_total": "3550"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001422026-11-01505586PO-661081Invoice CopyINV-COPY620012002Shipping Label PackLBL-45061509003Pallet Label CardPAL-31819509503130502003003550Do not stack above five cartons"} +{"file_name": "package_00143.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00143", "order_date": "2026-05-02", "sales_order_number": "566256", "po_number": "PO-61873"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "10", "unit_price": "25", "total_price": "250"}, {"sr_no": "2", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "13", "unit_price": "250", "total_price": "3250"}, {"sr_no": "3", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "11", "unit_price": "175", "total_price": "1925"}, {"sr_no": "4", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "15", "unit_price": "125", "total_price": "1875"}, {"sr_no": "5", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "10", "unit_price": "60", "total_price": "600"}, {"sr_no": "6", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "6", "unit_price": "25", "total_price": "150"}, {"sr_no": "7", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "7", "unit_price": "150", "total_price": "1050"}, {"sr_no": "8", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "7", "unit_price": "125", "total_price": "875"}], "summary": {"total_quantity": "79", "sub_total": "9975", "tax": "150", "freight": "150", "grand_total": "10275"}, "notes": "Contact buyer before final delivery"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG001432026-05-02566256PO-618731Instruction LeafletLEAF-55710252502Plastic SleeveSLV-8901325032503Corner ProtectorCRN-0191117519254Security Seal StripSEC-4011512518755Printed CartonCRT-67010606006Mailer Box SmallMBOX-SM6251507Ad DesignAD-DES-003715010508Documentation PouchDOC-872712587579997515015010275Contact buyer before final delivery"} +{"file_name": "package_00144.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00144", "order_date": "2026-11-05", "sales_order_number": "533006", "po_number": "PO-38331"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "19", "unit_price": "40", "total_price": "760"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "2", "unit_price": "10", "total_price": "20"}, {"sr_no": "4", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "1", "unit_price": "40", "total_price": "40"}], "summary": {"total_quantity": "25", "sub_total": "1195", "tax": "125", "freight": "150", "grand_total": "1470"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG001442026-11-05533006PO-383311Kraft Paper RollKRAFT-22131253752Fragile Label SetFRG-11219407603Mailer Box SmallMBOX-SM210204Return Label SheetRTN-509140402511951251501470Attach invoice copy to shipment"} +{"file_name": "package_00145.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00145", "order_date": "2026-10-18", "sales_order_number": "567280", "po_number": "PO-63767"}, "items": [{"sr_no": "1", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "13", "unit_price": "10", "total_price": "130"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "2", "unit_price": "150", "total_price": "300"}, {"sr_no": "3", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "5", "unit_price": "225", "total_price": "1125"}, {"sr_no": "4", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "16", "unit_price": "60", "total_price": "960"}, {"sr_no": "5", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "1", "unit_price": "40", "total_price": "40"}, {"sr_no": "6", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "14", "unit_price": "225", "total_price": "3150"}, {"sr_no": "7", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "10", "unit_price": "75", "total_price": "750"}, {"sr_no": "8", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "17", "unit_price": "12", "total_price": "204"}], "summary": {"total_quantity": "78", "sub_total": "6659", "tax": "125", "freight": "50", "grand_total": "6834"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG001452026-10-18567280PO-637671Fragile Label SetFRG-11213101302Mailer Box SmallMBOX-SM21503003Hang Tag BundleTAG-149522511254Pallet Label CardPAL-31816609605Barcode Sticker RollBAR-244140406Kraft Paper RollKRAFT-2211422531507Die Cut InsertDCI-72510757508Custom Poly MailerPOLY-6201712204786659125506834Attach invoice copy to shipment"} +{"file_name": "package_00146.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00146", "order_date": "2026-10-02", "sales_order_number": "562680", "po_number": "PO-68259"}, "items": [{"sr_no": "1", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "11", "unit_price": "75", "total_price": "825"}, {"sr_no": "2", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "17", "unit_price": "50", "total_price": "850"}, {"sr_no": "3", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "11", "unit_price": "10", "total_price": "110"}], "summary": {"total_quantity": "39", "sub_total": "1785", "tax": "50", "freight": "150", "grand_total": "1985"}, "notes": "Partial shipment allowed"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG001462026-10-02562680PO-682591Documentation PouchDOC-87211758252Return Label SheetRTN-50917508503Moisture Guard BagMGB-3091110110391785501501985Partial shipment allowed"} +{"file_name": "package_00147.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Vertex Home Mart", "bill_to_address": "312 King Street, Seattle, WA 98104", "ship_to_name": "Vertex Home Mart", "ship_to_address": "810 Depot Road, Tacoma, WA 98421"}, "document": {"package_number": "PKG00147", "order_date": "2026-11-21", "sales_order_number": "566418", "po_number": "PO-45283"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "6", "unit_price": "12", "total_price": "72"}, {"sr_no": "2", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "9", "unit_price": "10", "total_price": "90"}, {"sr_no": "3", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "3", "unit_price": "175", "total_price": "525"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "18", "unit_price": "20", "total_price": "360"}, {"sr_no": "5", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "18", "unit_price": "10", "total_price": "180"}, {"sr_no": "6", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "1", "unit_price": "100", "total_price": "100"}, {"sr_no": "7", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "10", "unit_price": "125", "total_price": "1250"}, {"sr_no": "8", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "11", "unit_price": "225", "total_price": "2475"}], "summary": {"total_quantity": "76", "sub_total": "5052", "tax": "0", "freight": "300", "grand_total": "5352"}, "notes": "Deliver during business hours"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG001472026-11-21566418PO-452831Logo Sticker PackLOGO-754612722Bubble Wrap RollBUB-908910903Thermal Label RollTHR-61231755254Instruction LeafletLEAF-55718203605Packing Slip CopyPSC-39118101806Documentation PouchDOC-87211001007Fragile Label SetFRG-1121012512508Barcode Sticker RollBAR-24411225247576505203005352Deliver during business hours"} +{"file_name": "package_00148.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00148", "order_date": "2026-04-20", "sales_order_number": "545460", "po_number": "PO-43631"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "5", "unit_price": "125", "total_price": "625"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "12", "unit_price": "75", "total_price": "900"}, {"sr_no": "3", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "18", "unit_price": "50", "total_price": "900"}, {"sr_no": "4", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "13", "unit_price": "20", "total_price": "260"}, {"sr_no": "5", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "12", "unit_price": "100", "total_price": "1200"}], "summary": {"total_quantity": "60", "sub_total": "3885", "tax": "0", "freight": "75", "grand_total": "3960"}, "notes": "Partial shipment allowed"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG001482026-04-20545460PO-436311Mailer Box LargeMBOX-LG51256252Thermal Label RollTHR-61212759003Packing Slip CopyPSC-39118509004Product ManualMAN-78013202605Moisture Guard BagMGB-3091210012006038850753960Partial shipment allowed"} +{"file_name": "package_00149.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00149", "order_date": "2026-07-31", "sales_order_number": "524739", "po_number": "PO-48658"}, "items": [{"sr_no": "1", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "4", "unit_price": "75", "total_price": "300"}, {"sr_no": "2", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "14", "unit_price": "20", "total_price": "280"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "11", "unit_price": "75", "total_price": "825"}], "summary": {"total_quantity": "29", "sub_total": "1405", "tax": "0", "freight": "50", "grand_total": "1455"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG001492026-07-31524739PO-486581Corrugated DividerDIV-7314753002Barcode Sticker RollBAR-24414202803Instruction LeafletLEAF-55711758252914050501455Shipment can be split by item line"} +{"file_name": "package_00150.png", "split": "test", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00150", "order_date": "2026-08-13", "sales_order_number": "520683", "po_number": "PO-42794"}, "items": [{"sr_no": "1", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "4", "unit_price": "250", "total_price": "1000"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "15", "unit_price": "20", "total_price": "300"}, {"sr_no": "3", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "17", "unit_price": "10", "total_price": "170"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "16", "unit_price": "10", "total_price": "160"}, {"sr_no": "5", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "9", "unit_price": "175", "total_price": "1575"}], "summary": {"total_quantity": "61", "sub_total": "3205", "tax": "150", "freight": "50", "grand_total": "3405"}, "notes": "Handle cartons with care"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG001502026-08-13520683PO-427941Foam InsertFOM-560425010002Die Cut InsertDCI-72515203003Bubble Wrap RollBUB-90817101704Barcode Sticker RollBAR-24416101605Mailer Box LargeMBOX-LG91751575613205150503405Handle cartons with care"} diff --git a/test/metadata.jsonl b/test/metadata.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..16a0d640535ef10ea8e6b0aec455b4073d7fe79a --- /dev/null +++ b/test/metadata.jsonl @@ -0,0 +1,50 @@ +{"file_name": "package_00101.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00101\", \"order_date\": \"2026-04-19\", \"sales_order_number\": \"521374\", \"po_number\": \"PO-42740\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"12\", \"unit_price\": \"12\", \"total_price\": \"144\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"9\", \"unit_price\": \"175\", \"total_price\": \"1575\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"60\", \"total_price\": \"1080\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"4\", \"unit_price\": \"25\", \"total_price\": \"100\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"6\", \"unit_price\": \"10\", \"total_price\": \"60\"}, {\"sr_no\": \"6\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}, {\"sr_no\": \"7\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"17\", \"unit_price\": \"40\", \"total_price\": \"680\"}, {\"sr_no\": \"8\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"15\", \"unit_price\": \"125\", \"total_price\": \"1875\"}], \"summary\": {\"total_quantity\": \"89\", \"sub_total\": \"5714\", \"tax\": \"200\", \"freight\": \"0\", \"grand_total\": \"5914\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00102.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00102\", \"order_date\": \"2026-03-03\", \"sales_order_number\": \"531896\", \"po_number\": \"PO-45706\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"2\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"60\", \"total_price\": \"720\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"17\", \"unit_price\": \"40\", \"total_price\": \"680\"}, {\"sr_no\": \"5\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"30\", \"total_price\": \"450\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}, {\"sr_no\": \"7\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"40\", \"total_price\": \"720\"}, {\"sr_no\": \"8\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}], \"summary\": {\"total_quantity\": \"118\", \"sub_total\": \"9300\", \"tax\": \"200\", \"freight\": \"50\", \"grand_total\": \"9550\"}, \"notes\": \"Handle cartons with care\"}}}"} +{"file_name": "package_00103.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00103\", \"order_date\": \"2026-12-02\", \"sales_order_number\": \"565962\", \"po_number\": \"PO-66319\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"10\", \"unit_price\": \"175\", \"total_price\": \"1750\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"5\", \"unit_price\": \"50\", \"total_price\": \"250\"}, {\"sr_no\": \"3\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"5\", \"unit_price\": \"90\", \"total_price\": \"450\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"19\", \"unit_price\": \"90\", \"total_price\": \"1710\"}], \"summary\": {\"total_quantity\": \"39\", \"sub_total\": \"4160\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"4235\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00104.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00104\", \"order_date\": \"2026-07-26\", \"sales_order_number\": \"532906\", \"po_number\": \"PO-58849\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"1\", \"unit_price\": \"125\", \"total_price\": \"125\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"13\", \"unit_price\": \"20\", \"total_price\": \"260\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"30\", \"total_price\": \"540\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"17\", \"unit_price\": \"175\", \"total_price\": \"2975\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"6\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"11\", \"unit_price\": \"250\", \"total_price\": \"2750\"}, {\"sr_no\": \"7\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"13\", \"unit_price\": \"125\", \"total_price\": \"1625\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}], \"summary\": {\"total_quantity\": \"94\", \"sub_total\": \"9865\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"10015\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00105.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00105\", \"order_date\": \"2026-10-15\", \"sales_order_number\": \"579774\", \"po_number\": \"PO-35435\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"9\", \"unit_price\": \"175\", \"total_price\": \"1575\"}, {\"sr_no\": \"2\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"5\", \"unit_price\": \"12\", \"total_price\": \"60\"}, {\"sr_no\": \"3\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"19\", \"unit_price\": \"12\", \"total_price\": \"228\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"4\", \"unit_price\": \"20\", \"total_price\": \"80\"}, {\"sr_no\": \"5\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"13\", \"unit_price\": \"125\", \"total_price\": \"1625\"}, {\"sr_no\": \"6\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"7\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"20\", \"total_price\": \"120\"}], \"summary\": {\"total_quantity\": \"68\", \"sub_total\": \"6388\", \"tax\": \"50\", \"freight\": \"100\", \"grand_total\": \"6538\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00106.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00106\", \"order_date\": \"2026-08-08\", \"sales_order_number\": \"563165\", \"po_number\": \"PO-45533\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"2\", \"unit_price\": \"125\", \"total_price\": \"250\"}, {\"sr_no\": \"3\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"14\", \"unit_price\": \"175\", \"total_price\": \"2450\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"8\", \"unit_price\": \"100\", \"total_price\": \"800\"}], \"summary\": {\"total_quantity\": \"32\", \"sub_total\": \"3700\", \"tax\": \"150\", \"freight\": \"300\", \"grand_total\": \"4150\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00107.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00107\", \"order_date\": \"2026-06-12\", \"sales_order_number\": \"529895\", \"po_number\": \"PO-55563\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"14\", \"unit_price\": \"150\", \"total_price\": \"2100\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"18\", \"unit_price\": \"90\", \"total_price\": \"1620\"}, {\"sr_no\": \"3\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"4\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"14\", \"unit_price\": \"20\", \"total_price\": \"280\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"17\", \"unit_price\": \"60\", \"total_price\": \"1020\"}], \"summary\": {\"total_quantity\": \"73\", \"sub_total\": \"6270\", \"tax\": \"100\", \"freight\": \"250\", \"grand_total\": \"6620\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00108.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00108\", \"order_date\": \"2026-12-04\", \"sales_order_number\": \"588140\", \"po_number\": \"PO-32792\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"4\", \"unit_price\": \"225\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"40\", \"total_price\": \"600\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}], \"summary\": {\"total_quantity\": \"47\", \"sub_total\": \"5200\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"5250\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00109.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00109\", \"order_date\": \"2026-06-28\", \"sales_order_number\": \"530367\", \"po_number\": \"PO-44358\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"2\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"11\", \"unit_price\": \"90\", \"total_price\": \"990\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"100\", \"total_price\": \"600\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"12\", \"unit_price\": \"20\", \"total_price\": \"240\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"9\", \"unit_price\": \"12\", \"total_price\": \"108\"}], \"summary\": {\"total_quantity\": \"66\", \"sub_total\": \"4093\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"4293\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00110.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00110\", \"order_date\": \"2026-11-16\", \"sales_order_number\": \"502289\", \"po_number\": \"PO-38497\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"8\", \"unit_price\": \"90\", \"total_price\": \"720\"}, {\"sr_no\": \"4\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"10\", \"unit_price\": \"60\", \"total_price\": \"600\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"125\", \"total_price\": \"250\"}, {\"sr_no\": \"6\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"4\", \"unit_price\": \"10\", \"total_price\": \"40\"}], \"summary\": {\"total_quantity\": \"27\", \"sub_total\": \"1670\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"1870\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00111.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00111\", \"order_date\": \"2026-10-29\", \"sales_order_number\": \"546550\", \"po_number\": \"PO-34222\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"10\", \"total_price\": \"30\"}, {\"sr_no\": \"3\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"19\", \"unit_price\": \"75\", \"total_price\": \"1425\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"9\", \"unit_price\": \"30\", \"total_price\": \"270\"}, {\"sr_no\": \"5\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}], \"summary\": {\"total_quantity\": \"50\", \"sub_total\": \"2245\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"2245\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00112.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00112\", \"order_date\": \"2026-02-27\", \"sales_order_number\": \"505662\", \"po_number\": \"PO-68504\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"8\", \"unit_price\": \"225\", \"total_price\": \"1800\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"3\", \"unit_price\": \"175\", \"total_price\": \"525\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"15\", \"unit_price\": \"250\", \"total_price\": \"3750\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"6\", \"unit_price\": \"75\", \"total_price\": \"450\"}, {\"sr_no\": \"5\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"19\", \"unit_price\": \"20\", \"total_price\": \"380\"}, {\"sr_no\": \"6\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"11\", \"unit_price\": \"30\", \"total_price\": \"330\"}, {\"sr_no\": \"7\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"17\", \"unit_price\": \"175\", \"total_price\": \"2975\"}], \"summary\": {\"total_quantity\": \"79\", \"sub_total\": \"10210\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"10410\"}, \"notes\": \"Contact buyer before final delivery\"}}}"} +{"file_name": "package_00113.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00113\", \"order_date\": \"2026-11-08\", \"sales_order_number\": \"551337\", \"po_number\": \"PO-35417\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"6\", \"unit_price\": \"175\", \"total_price\": \"1050\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"13\", \"unit_price\": \"175\", \"total_price\": \"2275\"}, {\"sr_no\": \"3\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"13\", \"unit_price\": \"200\", \"total_price\": \"2600\"}], \"summary\": {\"total_quantity\": \"32\", \"sub_total\": \"5925\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"6025\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00114.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00114\", \"order_date\": \"2026-06-26\", \"sales_order_number\": \"510576\", \"po_number\": \"PO-68835\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"2\", \"unit_price\": \"150\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"7\", \"unit_price\": \"100\", \"total_price\": \"700\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"14\", \"unit_price\": \"175\", \"total_price\": \"2450\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"10\", \"total_price\": \"120\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}, {\"sr_no\": \"6\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"12\", \"unit_price\": \"12\", \"total_price\": \"144\"}], \"summary\": {\"total_quantity\": \"61\", \"sub_total\": \"6864\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"6864\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00115.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00115\", \"order_date\": \"2026-07-14\", \"sales_order_number\": \"548187\", \"po_number\": \"PO-38839\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"6\", \"unit_price\": \"100\", \"total_price\": \"600\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"225\", \"total_price\": \"900\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"5\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"6\", \"unit_price\": \"15\", \"total_price\": \"90\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"10\", \"unit_price\": \"15\", \"total_price\": \"150\"}, {\"sr_no\": \"7\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"40\", \"total_price\": \"160\"}], \"summary\": {\"total_quantity\": \"51\", \"sub_total\": \"2725\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"2875\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00116.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00116\", \"order_date\": \"2026-07-06\", \"sales_order_number\": \"579361\", \"po_number\": \"PO-55209\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"2\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"19\", \"unit_price\": \"90\", \"total_price\": \"1710\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"8\", \"unit_price\": \"20\", \"total_price\": \"160\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}, {\"sr_no\": \"5\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"19\", \"unit_price\": \"30\", \"total_price\": \"570\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"1\", \"unit_price\": \"150\", \"total_price\": \"150\"}], \"summary\": {\"total_quantity\": \"70\", \"sub_total\": \"5065\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"5165\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00117.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00117\", \"order_date\": \"2026-10-03\", \"sales_order_number\": \"503606\", \"po_number\": \"PO-47473\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"17\", \"unit_price\": \"150\", \"total_price\": \"2550\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"2\", \"unit_price\": \"40\", \"total_price\": \"80\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"5685\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"5885\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00118.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00118\", \"order_date\": \"2026-05-15\", \"sales_order_number\": \"571541\", \"po_number\": \"PO-68483\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"11\", \"unit_price\": \"25\", \"total_price\": \"275\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"1\", \"unit_price\": \"75\", \"total_price\": \"75\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"1\", \"unit_price\": \"225\", \"total_price\": \"225\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"13\", \"unit_price\": \"15\", \"total_price\": \"195\"}, {\"sr_no\": \"6\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"18\", \"unit_price\": \"175\", \"total_price\": \"3150\"}], \"summary\": {\"total_quantity\": \"56\", \"sub_total\": \"6620\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"6820\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00119.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00119\", \"order_date\": \"2026-02-04\", \"sales_order_number\": \"538805\", \"po_number\": \"PO-30215\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"7\", \"unit_price\": \"20\", \"total_price\": \"140\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"13\", \"unit_price\": \"10\", \"total_price\": \"130\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"8\", \"unit_price\": \"150\", \"total_price\": \"1200\"}], \"summary\": {\"total_quantity\": \"28\", \"sub_total\": \"1470\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"1545\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00120.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00120\", \"order_date\": \"2026-07-25\", \"sales_order_number\": \"567762\", \"po_number\": \"PO-36148\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"2\", \"unit_price\": \"40\", \"total_price\": \"80\"}, {\"sr_no\": \"4\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"20\", \"unit_price\": \"60\", \"total_price\": \"1200\"}, {\"sr_no\": \"5\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}], \"summary\": {\"total_quantity\": \"43\", \"sub_total\": \"2485\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"2685\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00121.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00121\", \"order_date\": \"2026-03-10\", \"sales_order_number\": \"502492\", \"po_number\": \"PO-38629\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"3\", \"unit_price\": \"225\", \"total_price\": \"675\"}, {\"sr_no\": \"3\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"16\", \"unit_price\": \"40\", \"total_price\": \"640\"}, {\"sr_no\": \"4\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"17\", \"unit_price\": \"125\", \"total_price\": \"2125\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"5040\", \"tax\": \"50\", \"freight\": \"250\", \"grand_total\": \"5340\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00122.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00122\", \"order_date\": \"2026-05-13\", \"sales_order_number\": \"594242\", \"po_number\": \"PO-34926\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"7\", \"unit_price\": \"90\", \"total_price\": \"630\"}, {\"sr_no\": \"2\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"7\", \"unit_price\": \"150\", \"total_price\": \"1050\"}, {\"sr_no\": \"3\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"13\", \"unit_price\": \"225\", \"total_price\": \"2925\"}, {\"sr_no\": \"4\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"15\", \"total_price\": \"30\"}], \"summary\": {\"total_quantity\": \"29\", \"sub_total\": \"4635\", \"tax\": \"125\", \"freight\": \"300\", \"grand_total\": \"5060\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00123.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00123\", \"order_date\": \"2026-01-30\", \"sales_order_number\": \"524463\", \"po_number\": \"PO-63623\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"18\", \"unit_price\": \"175\", \"total_price\": \"3150\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"19\", \"unit_price\": \"40\", \"total_price\": \"760\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"7\", \"unit_price\": \"250\", \"total_price\": \"1750\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"7\", \"unit_price\": \"225\", \"total_price\": \"1575\"}], \"summary\": {\"total_quantity\": \"63\", \"sub_total\": \"9935\", \"tax\": \"125\", \"freight\": \"250\", \"grand_total\": \"10310\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00124.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00124\", \"order_date\": \"2026-01-24\", \"sales_order_number\": \"552547\", \"po_number\": \"PO-54167\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"1\", \"unit_price\": \"225\", \"total_price\": \"225\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"8\", \"unit_price\": \"200\", \"total_price\": \"1600\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"18\", \"unit_price\": \"15\", \"total_price\": \"270\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"16\", \"unit_price\": \"60\", \"total_price\": \"960\"}, {\"sr_no\": \"5\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"16\", \"unit_price\": \"125\", \"total_price\": \"2000\"}, {\"sr_no\": \"6\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"20\", \"unit_price\": \"25\", \"total_price\": \"500\"}, {\"sr_no\": \"7\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"3\", \"unit_price\": \"10\", \"total_price\": \"30\"}, {\"sr_no\": \"8\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"11\", \"unit_price\": \"30\", \"total_price\": \"330\"}], \"summary\": {\"total_quantity\": \"93\", \"sub_total\": \"5915\", \"tax\": \"150\", \"freight\": \"75\", \"grand_total\": \"6140\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00125.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00125\", \"order_date\": \"2026-10-17\", \"sales_order_number\": \"514209\", \"po_number\": \"PO-59561\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"250\", \"total_price\": \"4500\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"18\", \"unit_price\": \"15\", \"total_price\": \"270\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"10\", \"unit_price\": \"60\", \"total_price\": \"600\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"6\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"50\", \"total_price\": \"650\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}], \"summary\": {\"total_quantity\": \"82\", \"sub_total\": \"6630\", \"tax\": \"200\", \"freight\": \"200\", \"grand_total\": \"7030\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00126.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00126\", \"order_date\": \"2026-01-19\", \"sales_order_number\": \"521776\", \"po_number\": \"PO-49003\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"19\", \"unit_price\": \"10\", \"total_price\": \"190\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"18\", \"unit_price\": \"50\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"5\", \"unit_price\": \"30\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"20\", \"unit_price\": \"50\", \"total_price\": \"1000\"}, {\"sr_no\": \"5\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"19\", \"unit_price\": \"225\", \"total_price\": \"4275\"}, {\"sr_no\": \"6\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"11\", \"unit_price\": \"50\", \"total_price\": \"550\"}, {\"sr_no\": \"7\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"14\", \"unit_price\": \"50\", \"total_price\": \"700\"}], \"summary\": {\"total_quantity\": \"106\", \"sub_total\": \"7765\", \"tax\": \"200\", \"freight\": \"75\", \"grand_total\": \"8040\"}, \"notes\": \"Handle cartons with care\"}}}"} +{"file_name": "package_00127.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00127\", \"order_date\": \"2026-08-11\", \"sales_order_number\": \"556258\", \"po_number\": \"PO-50711\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"100\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"12\", \"unit_price\": \"12\", \"total_price\": \"144\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"60\", \"total_price\": \"720\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"16\", \"unit_price\": \"15\", \"total_price\": \"240\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"13\", \"unit_price\": \"175\", \"total_price\": \"2275\"}, {\"sr_no\": \"6\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"8\", \"unit_price\": \"100\", \"total_price\": \"800\"}, {\"sr_no\": \"7\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"2\", \"unit_price\": \"175\", \"total_price\": \"350\"}], \"summary\": {\"total_quantity\": \"66\", \"sub_total\": \"4829\", \"tax\": \"50\", \"freight\": \"300\", \"grand_total\": \"5179\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00128.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00128\", \"order_date\": \"2026-06-28\", \"sales_order_number\": \"505355\", \"po_number\": \"PO-49890\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"20\", \"unit_price\": \"30\", \"total_price\": \"600\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"4\", \"unit_price\": \"12\", \"total_price\": \"48\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"12\", \"unit_price\": \"175\", \"total_price\": \"2100\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"17\", \"unit_price\": \"60\", \"total_price\": \"1020\"}, {\"sr_no\": \"5\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"2\", \"unit_price\": \"50\", \"total_price\": \"100\"}, {\"sr_no\": \"6\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"2\", \"unit_price\": \"50\", \"total_price\": \"100\"}, {\"sr_no\": \"7\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"20\", \"unit_price\": \"50\", \"total_price\": \"1000\"}, {\"sr_no\": \"8\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"7\", \"unit_price\": \"100\", \"total_price\": \"700\"}], \"summary\": {\"total_quantity\": \"84\", \"sub_total\": \"5668\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"5743\"}, \"notes\": \"Handle cartons with care\"}}}"} +{"file_name": "package_00129.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00129\", \"order_date\": \"2026-07-14\", \"sales_order_number\": \"513330\", \"po_number\": \"PO-42973\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"1\", \"unit_price\": \"30\", \"total_price\": \"30\"}, {\"sr_no\": \"2\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"8\", \"unit_price\": \"20\", \"total_price\": \"160\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"20\", \"unit_price\": \"30\", \"total_price\": \"600\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"7\", \"unit_price\": \"175\", \"total_price\": \"1225\"}, {\"sr_no\": \"5\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"19\", \"unit_price\": \"250\", \"total_price\": \"4750\"}, {\"sr_no\": \"6\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"75\", \"total_price\": \"975\"}], \"summary\": {\"total_quantity\": \"68\", \"sub_total\": \"7740\", \"tax\": \"0\", \"freight\": \"250\", \"grand_total\": \"7990\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00130.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00130\", \"order_date\": \"2026-01-20\", \"sales_order_number\": \"599229\", \"po_number\": \"PO-39421\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"200\", \"total_price\": \"2400\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"1\", \"unit_price\": \"25\", \"total_price\": \"25\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"3\", \"unit_price\": \"60\", \"total_price\": \"180\"}, {\"sr_no\": \"4\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}, {\"sr_no\": \"5\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"10\", \"unit_price\": \"100\", \"total_price\": \"1000\"}], \"summary\": {\"total_quantity\": \"44\", \"sub_total\": \"4055\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"4105\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00131.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00131\", \"order_date\": \"2026-09-26\", \"sales_order_number\": \"563898\", \"po_number\": \"PO-34845\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"15\", \"unit_price\": \"150\", \"total_price\": \"2250\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"9\", \"unit_price\": \"30\", \"total_price\": \"270\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"3\", \"unit_price\": \"30\", \"total_price\": \"90\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"17\", \"unit_price\": \"150\", \"total_price\": \"2550\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"18\", \"unit_price\": \"125\", \"total_price\": \"2250\"}], \"summary\": {\"total_quantity\": \"93\", \"sub_total\": \"9801\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"9901\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00132.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00132\", \"order_date\": \"2026-12-08\", \"sales_order_number\": \"504720\", \"po_number\": \"PO-38321\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"18\", \"unit_price\": \"30\", \"total_price\": \"540\"}, {\"sr_no\": \"2\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"17\", \"unit_price\": \"60\", \"total_price\": \"1020\"}, {\"sr_no\": \"3\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"3\", \"unit_price\": \"60\", \"total_price\": \"180\"}, {\"sr_no\": \"5\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"13\", \"unit_price\": \"100\", \"total_price\": \"1300\"}], \"summary\": {\"total_quantity\": \"65\", \"sub_total\": \"4090\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"4290\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00133.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00133\", \"order_date\": \"2026-07-11\", \"sales_order_number\": \"556522\", \"po_number\": \"PO-60067\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"18\", \"unit_price\": \"150\", \"total_price\": \"2700\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"9\", \"unit_price\": \"90\", \"total_price\": \"810\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"60\", \"total_price\": \"240\"}, {\"sr_no\": \"4\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"15\", \"unit_price\": \"75\", \"total_price\": \"1125\"}], \"summary\": {\"total_quantity\": \"63\", \"sub_total\": \"5215\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"5265\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00134.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00134\", \"order_date\": \"2026-02-17\", \"sales_order_number\": \"535143\", \"po_number\": \"PO-34935\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"11\", \"unit_price\": \"225\", \"total_price\": \"2475\"}, {\"sr_no\": \"2\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"3\", \"unit_price\": \"15\", \"total_price\": \"45\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"175\", \"total_price\": \"700\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"6\", \"unit_price\": \"25\", \"total_price\": \"150\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"15\", \"unit_price\": \"12\", \"total_price\": \"180\"}, {\"sr_no\": \"7\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}], \"summary\": {\"total_quantity\": \"67\", \"sub_total\": \"3830\", \"tax\": \"125\", \"freight\": \"300\", \"grand_total\": \"4255\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00135.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00135\", \"order_date\": \"2026-06-09\", \"sales_order_number\": \"569721\", \"po_number\": \"PO-38753\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"1\", \"unit_price\": \"30\", \"total_price\": \"30\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"20\", \"unit_price\": \"100\", \"total_price\": \"2000\"}, {\"sr_no\": \"3\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"16\", \"unit_price\": \"50\", \"total_price\": \"800\"}, {\"sr_no\": \"4\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"15\", \"total_price\": \"45\"}, {\"sr_no\": \"5\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"6\", \"unit_price\": \"30\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"7\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"1\", \"unit_price\": \"75\", \"total_price\": \"75\"}], \"summary\": {\"total_quantity\": \"50\", \"sub_total\": \"3505\", \"tax\": \"50\", \"freight\": \"50\", \"grand_total\": \"3605\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00136.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00136\", \"order_date\": \"2026-03-30\", \"sales_order_number\": \"569631\", \"po_number\": \"PO-63403\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"15\", \"unit_price\": \"25\", \"total_price\": \"375\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"15\", \"unit_price\": \"150\", \"total_price\": \"2250\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"12\", \"total_price\": \"120\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"15\", \"unit_price\": \"12\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"17\", \"unit_price\": \"10\", \"total_price\": \"170\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"225\", \"total_price\": \"3375\"}], \"summary\": {\"total_quantity\": \"104\", \"sub_total\": \"8000\", \"tax\": \"50\", \"freight\": \"125\", \"grand_total\": \"8175\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00137.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00137\", \"order_date\": \"2026-09-26\", \"sales_order_number\": \"555134\", \"po_number\": \"PO-44228\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"1\", \"unit_price\": \"125\", \"total_price\": \"125\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"3\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"7\", \"unit_price\": \"25\", \"total_price\": \"175\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"19\", \"unit_price\": \"60\", \"total_price\": \"1140\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"20\", \"unit_price\": \"200\", \"total_price\": \"4000\"}], \"summary\": {\"total_quantity\": \"57\", \"sub_total\": \"6690\", \"tax\": \"125\", \"freight\": \"100\", \"grand_total\": \"6915\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00138.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00138\", \"order_date\": \"2026-10-13\", \"sales_order_number\": \"560747\", \"po_number\": \"PO-51932\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"20\", \"total_price\": \"80\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"150\", \"total_price\": \"1500\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"17\", \"unit_price\": \"100\", \"total_price\": \"1700\"}, {\"sr_no\": \"5\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"5\", \"unit_price\": \"100\", \"total_price\": \"500\"}, {\"sr_no\": \"6\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"7\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"8\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"7\", \"unit_price\": \"12\", \"total_price\": \"84\"}], \"summary\": {\"total_quantity\": \"64\", \"sub_total\": \"5086\", \"tax\": \"200\", \"freight\": \"125\", \"grand_total\": \"5411\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00139.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00139\", \"order_date\": \"2026-10-05\", \"sales_order_number\": \"589503\", \"po_number\": \"PO-38880\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"8\", \"unit_price\": \"100\", \"total_price\": \"800\"}, {\"sr_no\": \"3\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"5\", \"unit_price\": \"175\", \"total_price\": \"875\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"40\", \"total_price\": \"440\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"100\", \"total_price\": \"400\"}, {\"sr_no\": \"6\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"175\", \"total_price\": \"2100\"}], \"summary\": {\"total_quantity\": \"53\", \"sub_total\": \"5620\", \"tax\": \"150\", \"freight\": \"100\", \"grand_total\": \"5870\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00140.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00140\", \"order_date\": \"2026-11-02\", \"sales_order_number\": \"575155\", \"po_number\": \"PO-56879\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"14\", \"unit_price\": \"125\", \"total_price\": \"1750\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"18\", \"unit_price\": \"250\", \"total_price\": \"4500\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"9\", \"unit_price\": \"15\", \"total_price\": \"135\"}], \"summary\": {\"total_quantity\": \"41\", \"sub_total\": \"6385\", \"tax\": \"200\", \"freight\": \"0\", \"grand_total\": \"6585\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00141.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00141\", \"order_date\": \"2026-10-31\", \"sales_order_number\": \"568255\", \"po_number\": \"PO-50284\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"125\", \"total_price\": \"2250\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"3\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"14\", \"unit_price\": \"15\", \"total_price\": \"210\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"6\", \"unit_price\": \"50\", \"total_price\": \"300\"}, {\"sr_no\": \"5\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"6\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}], \"summary\": {\"total_quantity\": \"63\", \"sub_total\": \"5676\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"5776\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00142.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00142\", \"order_date\": \"2026-11-01\", \"sales_order_number\": \"505586\", \"po_number\": \"PO-66108\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"6\", \"unit_price\": \"200\", \"total_price\": \"1200\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"6\", \"unit_price\": \"150\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"19\", \"unit_price\": \"50\", \"total_price\": \"950\"}], \"summary\": {\"total_quantity\": \"31\", \"sub_total\": \"3050\", \"tax\": \"200\", \"freight\": \"300\", \"grand_total\": \"3550\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00143.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00143\", \"order_date\": \"2026-05-02\", \"sales_order_number\": \"566256\", \"po_number\": \"PO-61873\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"25\", \"total_price\": \"250\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"13\", \"unit_price\": \"250\", \"total_price\": \"3250\"}, {\"sr_no\": \"3\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"11\", \"unit_price\": \"175\", \"total_price\": \"1925\"}, {\"sr_no\": \"4\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"15\", \"unit_price\": \"125\", \"total_price\": \"1875\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"10\", \"unit_price\": \"60\", \"total_price\": \"600\"}, {\"sr_no\": \"6\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"6\", \"unit_price\": \"25\", \"total_price\": \"150\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"7\", \"unit_price\": \"150\", \"total_price\": \"1050\"}, {\"sr_no\": \"8\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}], \"summary\": {\"total_quantity\": \"79\", \"sub_total\": \"9975\", \"tax\": \"150\", \"freight\": \"150\", \"grand_total\": \"10275\"}, \"notes\": \"Contact buyer before final delivery\"}}}"} +{"file_name": "package_00144.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00144\", \"order_date\": \"2026-11-05\", \"sales_order_number\": \"533006\", \"po_number\": \"PO-38331\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"19\", \"unit_price\": \"40\", \"total_price\": \"760\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}], \"summary\": {\"total_quantity\": \"25\", \"sub_total\": \"1195\", \"tax\": \"125\", \"freight\": \"150\", \"grand_total\": \"1470\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00145.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00145\", \"order_date\": \"2026-10-18\", \"sales_order_number\": \"567280\", \"po_number\": \"PO-63767\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"13\", \"unit_price\": \"10\", \"total_price\": \"130\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"150\", \"total_price\": \"300\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"5\", \"unit_price\": \"225\", \"total_price\": \"1125\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"16\", \"unit_price\": \"60\", \"total_price\": \"960\"}, {\"sr_no\": \"5\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}, {\"sr_no\": \"7\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"10\", \"unit_price\": \"75\", \"total_price\": \"750\"}, {\"sr_no\": \"8\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"17\", \"unit_price\": \"12\", \"total_price\": \"204\"}], \"summary\": {\"total_quantity\": \"78\", \"sub_total\": \"6659\", \"tax\": \"125\", \"freight\": \"50\", \"grand_total\": \"6834\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00146.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00146\", \"order_date\": \"2026-10-02\", \"sales_order_number\": \"562680\", \"po_number\": \"PO-68259\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"2\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"17\", \"unit_price\": \"50\", \"total_price\": \"850\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"11\", \"unit_price\": \"10\", \"total_price\": \"110\"}], \"summary\": {\"total_quantity\": \"39\", \"sub_total\": \"1785\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"1985\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00147.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00147\", \"order_date\": \"2026-11-21\", \"sales_order_number\": \"566418\", \"po_number\": \"PO-45283\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"2\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"9\", \"unit_price\": \"10\", \"total_price\": \"90\"}, {\"sr_no\": \"3\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"3\", \"unit_price\": \"175\", \"total_price\": \"525\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"18\", \"unit_price\": \"20\", \"total_price\": \"360\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"7\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"8\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"11\", \"unit_price\": \"225\", \"total_price\": \"2475\"}], \"summary\": {\"total_quantity\": \"76\", \"sub_total\": \"5052\", \"tax\": \"0\", \"freight\": \"300\", \"grand_total\": \"5352\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00148.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00148\", \"order_date\": \"2026-04-20\", \"sales_order_number\": \"545460\", \"po_number\": \"PO-43631\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"5\", \"unit_price\": \"125\", \"total_price\": \"625\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"12\", \"unit_price\": \"75\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"50\", \"total_price\": \"900\"}, {\"sr_no\": \"4\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"13\", \"unit_price\": \"20\", \"total_price\": \"260\"}, {\"sr_no\": \"5\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"12\", \"unit_price\": \"100\", \"total_price\": \"1200\"}], \"summary\": {\"total_quantity\": \"60\", \"sub_total\": \"3885\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"3960\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00149.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00149\", \"order_date\": \"2026-07-31\", \"sales_order_number\": \"524739\", \"po_number\": \"PO-48658\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"4\", \"unit_price\": \"75\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"14\", \"unit_price\": \"20\", \"total_price\": \"280\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}], \"summary\": {\"total_quantity\": \"29\", \"sub_total\": \"1405\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"1455\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00150.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00150\", \"order_date\": \"2026-08-13\", \"sales_order_number\": \"520683\", \"po_number\": \"PO-42794\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"250\", \"total_price\": \"1000\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"15\", \"unit_price\": \"20\", \"total_price\": \"300\"}, {\"sr_no\": \"3\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"17\", \"unit_price\": \"10\", \"total_price\": \"170\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"16\", \"unit_price\": \"10\", \"total_price\": \"160\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"9\", \"unit_price\": \"175\", \"total_price\": \"1575\"}], \"summary\": {\"total_quantity\": \"61\", \"sub_total\": \"3205\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"3405\"}, \"notes\": \"Handle cartons with care\"}}}"} diff --git a/test/package_00101.png b/test/package_00101.png new file mode 100644 index 0000000000000000000000000000000000000000..448346fdd66d1cd3280aa37a329beee699e36940 --- /dev/null +++ b/test/package_00101.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2898cc6bf72370a1c9f148f2c65d2c1f701320995dcec2f3cd4305529e982d3 +size 71538 diff --git a/test/package_00102.png b/test/package_00102.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd6fda12ee71d557b12f6fd83854e9db2e95eaf --- /dev/null +++ b/test/package_00102.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c43b16d9fdb7c08d85b8cd95637998b39e12cc3bb2c9bbb7ccf9b3cfa80691 +size 73177 diff --git a/test/package_00103.png b/test/package_00103.png new file mode 100644 index 0000000000000000000000000000000000000000..30192880e05d3f1b36ed72ded1b8c98eecf1fb5b --- /dev/null +++ b/test/package_00103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a164165f04e4fe55daa2b117d38381f7e448c3e299eed2ba534e6656570ea3 +size 66339 diff --git a/test/package_00104.png b/test/package_00104.png new file mode 100644 index 0000000000000000000000000000000000000000..a07ebb7b96be09a9a519728845bcf0af470356b4 --- /dev/null +++ b/test/package_00104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c023fd1be43dde4d49e7599b11996974089423c848fd2366b9aba37c4b1b07 +size 78613 diff --git a/test/package_00105.png b/test/package_00105.png new file mode 100644 index 0000000000000000000000000000000000000000..afb773221844c18c5c2ef79d0826090d93a91e37 --- /dev/null +++ b/test/package_00105.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13edbc29ff8f8a4806a3916930da2b6ebed577669a0fe5eac05cf0e562b8f01 +size 75082 diff --git a/test/package_00106.png b/test/package_00106.png new file mode 100644 index 0000000000000000000000000000000000000000..7a7e12a870d1168616ecdeab7f97d52772e587a1 --- /dev/null +++ b/test/package_00106.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6738658df6234de51daf3eb92aa004be3d4df2e780684ef20c884bc6dd95b5bd +size 68194 diff --git a/test/package_00107.png b/test/package_00107.png new file mode 100644 index 0000000000000000000000000000000000000000..62341ddac1af9119b5190b25a07685db2177b927 --- /dev/null +++ b/test/package_00107.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab74bd439a74022da8f5c3f45272b3d7ea29ae323aa2038f436cb1e59beec7a +size 65530 diff --git a/test/package_00108.png b/test/package_00108.png new file mode 100644 index 0000000000000000000000000000000000000000..002adb0a60287a039c5135d9f7cb30414e36ede0 --- /dev/null +++ b/test/package_00108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763f931df1ff1871fed0c3263b5a0e9dc955126509afdbe704c55882ad85fb7c +size 67899 diff --git a/test/package_00109.png b/test/package_00109.png new file mode 100644 index 0000000000000000000000000000000000000000..8a9a5e05a96ed13de5edf3a8601a11d2af1893fd --- /dev/null +++ b/test/package_00109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c32dfcec2ddd992e1d0edad9668ff7bf23c197f6318426a872ffa8c491cd8aef +size 75473 diff --git a/test/package_00110.png b/test/package_00110.png new file mode 100644 index 0000000000000000000000000000000000000000..2823d97bdefd3e4073e6c573ea97fe6b5d4a8b57 --- /dev/null +++ b/test/package_00110.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dcf84c0b7aed9dcd25f4c25beac8d041eab1eae15768daa9477334e4b153a2 +size 70521 diff --git a/test/package_00111.png b/test/package_00111.png new file mode 100644 index 0000000000000000000000000000000000000000..0e5ca232dfe45e13c30e5763741d809c822f4d4d --- /dev/null +++ b/test/package_00111.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a311723dc72cdcba64de35620253a844a332e608ba91f14dbbe1b85ddccea5ea +size 69105 diff --git a/test/package_00112.png b/test/package_00112.png new file mode 100644 index 0000000000000000000000000000000000000000..fcc111228f16db286a73aa5cd7964e98e5bcb2c2 --- /dev/null +++ b/test/package_00112.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244b0bb47daff45867fdf20b21d03fd992e8faa162427d04672e7b94b111504e +size 73844 diff --git a/test/package_00113.png b/test/package_00113.png new file mode 100644 index 0000000000000000000000000000000000000000..ba79e77eb9e80c1ec843995e28bd74f5294affb8 --- /dev/null +++ b/test/package_00113.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707024621cdbd410e54635adb80a65d7128a9273e4756ddd2290c7f107e491f4 +size 66795 diff --git a/test/package_00114.png b/test/package_00114.png new file mode 100644 index 0000000000000000000000000000000000000000..8a4bef01303d948251e0588b99a02d3243e6f143 --- /dev/null +++ b/test/package_00114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d6e7c8462e2a4b0d0da95162e0191bf76d26f29c7d5e8554749c3d9b19bcc8 +size 71258 diff --git a/test/package_00115.png b/test/package_00115.png new file mode 100644 index 0000000000000000000000000000000000000000..d121e4d8af3b76155b0e199430e42bfc0158ae9b --- /dev/null +++ b/test/package_00115.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3724fffefe57fbcec9600038ee692712eb888e52e5cc98b5d4be7dc0b167e0b6 +size 74137 diff --git a/test/package_00116.png b/test/package_00116.png new file mode 100644 index 0000000000000000000000000000000000000000..cc1ddfdfa823257cc7d61753d027544a3820d68b --- /dev/null +++ b/test/package_00116.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09b85d5498fc21abb9407f512ca6dfebc9211de16b338471a743adf67a81ee1 +size 66921 diff --git a/test/package_00117.png b/test/package_00117.png new file mode 100644 index 0000000000000000000000000000000000000000..21d5be2f7e67193df9f3e36fb61347006cbf6869 --- /dev/null +++ b/test/package_00117.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7a8bf0f5710776cbadc732e8743a5a61c1252dc56ea6262385373fed51bb63 +size 67839 diff --git a/test/package_00118.png b/test/package_00118.png new file mode 100644 index 0000000000000000000000000000000000000000..7a6d556cfb6baeae473a284fb0b78adda9a9a31d --- /dev/null +++ b/test/package_00118.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18004ddcecd5c2e48d394fd306de3ccafa901a122eeb6c13bbb8d6a62ab666c4 +size 73344 diff --git a/test/package_00119.png b/test/package_00119.png new file mode 100644 index 0000000000000000000000000000000000000000..2b5ec3d47e89dc0cc61624f2ddc8160f83751abf --- /dev/null +++ b/test/package_00119.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc78374184f37e0dc21300cbc2e16dafa9dfe1d9a2201175350811f731e6108 +size 64981 diff --git a/test/package_00120.png b/test/package_00120.png new file mode 100644 index 0000000000000000000000000000000000000000..b8399afe177f95cc7f3df57728daa8bf634e9f6e --- /dev/null +++ b/test/package_00120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be11f11a69aa0a005edf9f15decdf2274833b9f1e21ac7fd1ce284e4c61d310 +size 70326 diff --git a/test/package_00121.png b/test/package_00121.png new file mode 100644 index 0000000000000000000000000000000000000000..93c7381797b827c5130d3bad362b790b3a6d0d0b --- /dev/null +++ b/test/package_00121.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0d41cc23c948ef56f556c4add934256dcaacddb523577adf46c18c64f29dea +size 62461 diff --git a/test/package_00122.png b/test/package_00122.png new file mode 100644 index 0000000000000000000000000000000000000000..d02f83468876599fa7a6739cb4cfebb558936cb2 --- /dev/null +++ b/test/package_00122.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d6e8c0b250e6b493649accee71683139564893e487cb5d075511b2b7ba78d9 +size 69247 diff --git a/test/package_00123.png b/test/package_00123.png new file mode 100644 index 0000000000000000000000000000000000000000..6189e7a91340985ad558779e6d20129d952102be --- /dev/null +++ b/test/package_00123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc056ab763d468f4e9a01484831b379e5345c56b4d964b5da742f57d0c30e0f +size 70615 diff --git a/test/package_00124.png b/test/package_00124.png new file mode 100644 index 0000000000000000000000000000000000000000..2f2775a22baae9d399fb22d40e7b7ab079859db5 --- /dev/null +++ b/test/package_00124.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c263ff42e37672be63b30768a809a6485d6e6acbf86e04195904f78f127be8 +size 71866 diff --git a/test/package_00125.png b/test/package_00125.png new file mode 100644 index 0000000000000000000000000000000000000000..c25529ff881dff03a98e164748fd80c58e77a685 --- /dev/null +++ b/test/package_00125.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b6bd71815dd7387978c7ad746a89e996b9e45327b927e6709f76cad24bb58d +size 70909 diff --git a/test/package_00126.png b/test/package_00126.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d5eb996109e5404351d32484b68151c9e8f893 --- /dev/null +++ b/test/package_00126.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1fd90d0261cd937597b812954185ee75dd3ac4e4e317634298a965309523d7 +size 75604 diff --git a/test/package_00127.png b/test/package_00127.png new file mode 100644 index 0000000000000000000000000000000000000000..2d6c17cd94bcb7a93a23d6a6371afa0155678b35 --- /dev/null +++ b/test/package_00127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961e8f15ae8df40f6b372bcb91cdfb71109afd326bb543807a29178b69125491 +size 75759 diff --git a/test/package_00128.png b/test/package_00128.png new file mode 100644 index 0000000000000000000000000000000000000000..668737b263d96a00cb8974ffb0dbba4241cb7b79 --- /dev/null +++ b/test/package_00128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b3546a12ea1dd9991c332cb3b93cf4f90c3eb8aed16ddd654cc2df13b00cd7 +size 78129 diff --git a/test/package_00129.png b/test/package_00129.png new file mode 100644 index 0000000000000000000000000000000000000000..91a7d66f04c772168b135415e13b29dfa34f6f10 --- /dev/null +++ b/test/package_00129.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353c57866dd8aa96def61b52104adac0a70ac8471700d6833f7bdc15afa19141 +size 74333 diff --git a/test/package_00130.png b/test/package_00130.png new file mode 100644 index 0000000000000000000000000000000000000000..67a3626b0e543ed71f58a8bb7fc2615f8cd5f04c --- /dev/null +++ b/test/package_00130.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b38e1da59d2cdc6988217aa79ece2fdeda5a0c238ef1dd0bd2405c1d8a3880c +size 71318 diff --git a/test/package_00131.png b/test/package_00131.png new file mode 100644 index 0000000000000000000000000000000000000000..6940428c6aabb1c60cf40b0d54560f42eb6d0fb7 --- /dev/null +++ b/test/package_00131.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de238c224e2f7f404716c8b17341d635cd1a43c5474e26412935ca00d76b4a9 +size 78481 diff --git a/test/package_00132.png b/test/package_00132.png new file mode 100644 index 0000000000000000000000000000000000000000..be2c2c28aa10e48a34a0771b995f5c56d8f664cc --- /dev/null +++ b/test/package_00132.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8fe6b8a2bbe1e500957d8a417a8e41250956e4b9dec4e2bdb79a166ff3deba +size 69467 diff --git a/test/package_00133.png b/test/package_00133.png new file mode 100644 index 0000000000000000000000000000000000000000..c4fcc556d66c7b86401d87f02f10813779fd4fdc --- /dev/null +++ b/test/package_00133.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111c47458c2f93a14f6af16c94b7a7bae4e124b10447b47217274129fb4c9009 +size 66648 diff --git a/test/package_00134.png b/test/package_00134.png new file mode 100644 index 0000000000000000000000000000000000000000..1bf3364209148973444fbb1432df6cf5ba64039d --- /dev/null +++ b/test/package_00134.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8423eb0eee5d99d6b056f78079a3e11dcc53889c1c1ae7127dc2c5f89112e842 +size 75353 diff --git a/test/package_00135.png b/test/package_00135.png new file mode 100644 index 0000000000000000000000000000000000000000..0db1a19d0f54242c5e4d5207b2df1d5f79492c49 --- /dev/null +++ b/test/package_00135.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20a65f364581593e0989c9c913e07752ea0f37a9fa61f70c8ceda5b66aff052 +size 76029 diff --git a/test/package_00136.png b/test/package_00136.png new file mode 100644 index 0000000000000000000000000000000000000000..fb13bb584ce733d781f170e7b9b0d366bc95a33e --- /dev/null +++ b/test/package_00136.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1dbf2153aea29fbf7b39b7c5dc8952d7e0108fd43ee10e8125ea26c2e0a4025 +size 75167 diff --git a/test/package_00137.png b/test/package_00137.png new file mode 100644 index 0000000000000000000000000000000000000000..b59d341af7bcf5a82ae63c143719872159d6a05a --- /dev/null +++ b/test/package_00137.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44cacc8623a396359337517429a40538b51510ba0d084e2326a2af44f2b8cf71 +size 65722 diff --git a/test/package_00138.png b/test/package_00138.png new file mode 100644 index 0000000000000000000000000000000000000000..f52e1d64aedc0e670874ff07a359932821089720 --- /dev/null +++ b/test/package_00138.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d495fadf820460e0cc5e0c761cdb6a511ac4e84e64507470e890b55fdf58b87c +size 78974 diff --git a/test/package_00139.png b/test/package_00139.png new file mode 100644 index 0000000000000000000000000000000000000000..fa32d8e88f147993fc8c2190edca64eee86e3f1e --- /dev/null +++ b/test/package_00139.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f483a8a31ea579572f5643827ae0c25bc27ba52ac044dc6179d429b6f29a426c +size 69606 diff --git a/test/package_00140.png b/test/package_00140.png new file mode 100644 index 0000000000000000000000000000000000000000..3ebf4454868e6b2b1877b475df6f1a3cc1bf8542 --- /dev/null +++ b/test/package_00140.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5deb5ea797b113c8577c9b2e96e9b97f1b19b06c2b84756cf61c3e911175b1e3 +size 63824 diff --git a/test/package_00141.png b/test/package_00141.png new file mode 100644 index 0000000000000000000000000000000000000000..5398b0f7da15febfdc1ba7f093763a9983631d2b --- /dev/null +++ b/test/package_00141.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1cfb5cca5b14bb26315e37a7e71d0bbfe90ddbed81b481d5040c8f4932be60 +size 74942 diff --git a/test/package_00142.png b/test/package_00142.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6daa9204aed267469e08ed586473cec2fc5c9c --- /dev/null +++ b/test/package_00142.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8201640eed2aa4cf4a396767ac57eb8d274a5aae42dfa6b5703b52dd135f5a48 +size 65269 diff --git a/test/package_00143.png b/test/package_00143.png new file mode 100644 index 0000000000000000000000000000000000000000..f7d1baafb913e5443d1e050abafea773daa01c7f --- /dev/null +++ b/test/package_00143.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4599631c3a58914a8a2a9d652a7a188487aea666ece01c9bc7d305ec4f4abf24 +size 78435 diff --git a/test/package_00144.png b/test/package_00144.png new file mode 100644 index 0000000000000000000000000000000000000000..fa82f4ffbf62bed26229de7b0e255838618d128d --- /dev/null +++ b/test/package_00144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a9aef3c7cb6af3234b756a5c8322a305ff9da7ff980f49131edc3df7e5c14d +size 62793 diff --git a/test/package_00145.png b/test/package_00145.png new file mode 100644 index 0000000000000000000000000000000000000000..7be96306a0cbf2b0c04402798111fb19f1012bc2 --- /dev/null +++ b/test/package_00145.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff16abbc0c01a23263a32755f591b24e3061cfb4124840e2bfbeda7ea5fe4cb +size 71846 diff --git a/test/package_00146.png b/test/package_00146.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa2b6ec9577c9a7bd1c8233b68491e7293d13d5 --- /dev/null +++ b/test/package_00146.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a3f6ea2197d8362c47b2a9379d61eb04fbd85c95980afb1609396cf4266ed1 +size 61147 diff --git a/test/package_00147.png b/test/package_00147.png new file mode 100644 index 0000000000000000000000000000000000000000..acfa8b10d007851dde5f2002a9b124be4e2cf70a --- /dev/null +++ b/test/package_00147.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c9c03935f641af0546a8a61c2572572b572e86cd348313c59cfd3e0e8d8a95 +size 72304 diff --git a/test/package_00148.png b/test/package_00148.png new file mode 100644 index 0000000000000000000000000000000000000000..ec88dee5515716064745c920467d32194a5be6d0 --- /dev/null +++ b/test/package_00148.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc84ad02ad83560f812e49fb363f05168f4ee4820bd134690c9ac5336eac6c4 +size 71530 diff --git a/test/package_00149.png b/test/package_00149.png new file mode 100644 index 0000000000000000000000000000000000000000..8747d627bc9b3fb4a2b7be20a7890ea0e6ce07a7 --- /dev/null +++ b/test/package_00149.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a57413627b819feb3d940213b809268615712331e86f31636db4a31eee3d4c4 +size 65320 diff --git a/test/package_00150.png b/test/package_00150.png new file mode 100644 index 0000000000000000000000000000000000000000..c4e08c0cb9bffc1bad2076b079e73a6556bb02cc --- /dev/null +++ b/test/package_00150.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e277431e6a19f2a1b3391996e68203a5e321bec1b3aef5c03464c8a08e442a0 +size 68670 diff --git a/train/annotations.json b/train/annotations.json new file mode 100644 index 0000000000000000000000000000000000000000..25c3112c75927cd8e15f7fec5d3c86591afd7480 --- /dev/null +++ b/train/annotations.json @@ -0,0 +1,4114 @@ +[ + { + "file_name": "package_00001.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00001", + "order_date": "2026-06-10", + "sales_order_number": "566846", + "po_number": "PO-68696" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "20", + "unit_price": "75", + "total_price": "1500" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "17", + "unit_price": "30", + "total_price": "510" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + } + ], + "summary": { + "total_quantity": "43", + "sub_total": "2082", + "tax": "50", + "freight": "300", + "grand_total": "2432" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000012026-06-10566846PO-686961Warranty CardWAR-110207515002Mailer Box SmallMBOX-SM17305103Barcode Sticker RollBAR-24461272432082503002432Deliver during business hours" + }, + { + "file_name": "package_00002.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00002", + "order_date": "2026-09-30", + "sales_order_number": "566207", + "po_number": "PO-65979" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "16", + "unit_price": "90", + "total_price": "1440" + }, + { + "sr_no": "2", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "18", + "unit_price": "90", + "total_price": "1620" + }, + { + "sr_no": "3", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "7", + "unit_price": "15", + "total_price": "105" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "4", + "unit_price": "75", + "total_price": "300" + } + ], + "summary": { + "total_quantity": "45", + "sub_total": "3465", + "tax": "100", + "freight": "300", + "grand_total": "3865" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000022026-09-30566207PO-659791Thermal Label RollTHR-612169014402Foam InsertFOM-560189016203Fragile Label SetFRG-1127151054Barcode Sticker RollBAR-2444753004534651003003865Priority delivery requested" + }, + { + "file_name": "package_00003.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00003", + "order_date": "2026-01-28", + "sales_order_number": "512460", + "po_number": "PO-63766" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "8", + "unit_price": "30", + "total_price": "240" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "4", + "unit_price": "25", + "total_price": "100" + }, + { + "sr_no": "3", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "2", + "unit_price": "200", + "total_price": "400" + }, + { + "sr_no": "4", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "6", + "unit_price": "250", + "total_price": "1500" + }, + { + "sr_no": "5", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "14", + "unit_price": "12", + "total_price": "168" + }, + { + "sr_no": "6", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "8", + "unit_price": "125", + "total_price": "1000" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "10", + "unit_price": "10", + "total_price": "100" + } + ], + "summary": { + "total_quantity": "52", + "sub_total": "3508", + "tax": "0", + "freight": "200", + "grand_total": "3708" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000032026-01-28512460PO-637661Warranty CardWAR-1108302402Thermal Label RollTHR-6124251003Logo Sticker PackLOGO-75422004004Gift Wrap SheetGFT-812625015005Moisture Guard BagMGB-30914121686Barcode Sticker RollBAR-244812510007Hang Tag BundleTAG-149101010052350802003708Priority delivery requested" + }, + { + "file_name": "package_00004.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00004", + "order_date": "2026-11-09", + "sales_order_number": "572530", + "po_number": "PO-44782" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "10", + "unit_price": "250", + "total_price": "2500" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "8", + "unit_price": "20", + "total_price": "160" + }, + { + "sr_no": "3", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "2", + "unit_price": "12", + "total_price": "24" + }, + { + "sr_no": "4", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "11", + "unit_price": "150", + "total_price": "1650" + }, + { + "sr_no": "5", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "12", + "unit_price": "10", + "total_price": "120" + } + ], + "summary": { + "total_quantity": "43", + "sub_total": "4454", + "tax": "150", + "freight": "75", + "grand_total": "4679" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000042026-11-09572530PO-447821Moisture Guard BagMGB-3091025025002Corner ProtectorCRN-0198201603Warranty CardWAR-110212244Foam InsertFOM-5601115016505Hang Tag BundleTAG-1491210120434454150754679Partial shipment allowed" + }, + { + "file_name": "package_00005.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00005", + "order_date": "2026-08-08", + "sales_order_number": "598877", + "po_number": "PO-35537" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "7", + "unit_price": "25", + "total_price": "175" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "1", + "unit_price": "60", + "total_price": "60" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "1", + "unit_price": "100", + "total_price": "100" + }, + { + "sr_no": "4", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "20", + "unit_price": "60", + "total_price": "1200" + }, + { + "sr_no": "5", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "16", + "unit_price": "20", + "total_price": "320" + }, + { + "sr_no": "6", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "13", + "unit_price": "200", + "total_price": "2600" + }, + { + "sr_no": "7", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "7", + "unit_price": "30", + "total_price": "210" + }, + { + "sr_no": "8", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "3", + "unit_price": "200", + "total_price": "600" + } + ], + "summary": { + "total_quantity": "68", + "sub_total": "5265", + "tax": "100", + "freight": "150", + "grand_total": "5515" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000052026-08-08598877PO-355371Packing TapeTAPE-3387251752Thermal Label RollTHR-612160603Mailer Box SmallMBOX-SM11001004Hang Tag BundleTAG-149206012005Warranty CardWAR-11016203206Invoice CopyINV-COPY1320026007Product ManualMAN-7807302108Barcode Sticker RollBAR-24432006006852651001505515Do not stack above five cartons" + }, + { + "file_name": "package_00006.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00006", + "order_date": "2026-07-29", + "sales_order_number": "583075", + "po_number": "PO-62403" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "11", + "unit_price": "25", + "total_price": "275" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "17", + "unit_price": "30", + "total_price": "510" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "10", + "unit_price": "50", + "total_price": "500" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "12", + "unit_price": "10", + "total_price": "120" + }, + { + "sr_no": "5", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "6", + "unit_price": "15", + "total_price": "90" + }, + { + "sr_no": "6", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "15", + "unit_price": "100", + "total_price": "1500" + } + ], + "summary": { + "total_quantity": "71", + "sub_total": "2995", + "tax": "50", + "freight": "150", + "grand_total": "3195" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000062026-07-29583075PO-624031Barcode Sticker RollBAR-24411252752Mailer Box LargeMBOX-LG17305103Instruction LeafletLEAF-55710505004Documentation PouchDOC-87212101205Logo Sticker PackLOGO-754615906Plastic SleeveSLV-890151001500712995501503195Deliver during business hours" + }, + { + "file_name": "package_00007.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00007", + "order_date": "2026-11-06", + "sales_order_number": "533032", + "po_number": "PO-52212" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "8", + "unit_price": "50", + "total_price": "400" + }, + { + "sr_no": "2", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "15", + "unit_price": "125", + "total_price": "1875" + }, + { + "sr_no": "3", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "14", + "unit_price": "225", + "total_price": "3150" + } + ], + "summary": { + "total_quantity": "37", + "sub_total": "5425", + "tax": "0", + "freight": "75", + "grand_total": "5500" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000072026-11-06533032PO-522121Corrugated DividerDIV-7318504002Instruction LeafletLEAF-5571512518753Warranty CardWAR-1101422531503754250755500Verify carton count before dispatch" + }, + { + "file_name": "package_00008.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00008", + "order_date": "2026-02-11", + "sales_order_number": "528383", + "po_number": "PO-65336" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "12", + "unit_price": "250", + "total_price": "3000" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "14", + "unit_price": "125", + "total_price": "1750" + }, + { + "sr_no": "3", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "10", + "unit_price": "10", + "total_price": "100" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "8", + "unit_price": "10", + "total_price": "80" + }, + { + "sr_no": "5", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "11", + "unit_price": "150", + "total_price": "1650" + } + ], + "summary": { + "total_quantity": "55", + "sub_total": "6580", + "tax": "0", + "freight": "125", + "grand_total": "6705" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000082026-02-11528383PO-653361Kraft Paper RollKRAFT-2211225030002Thermal Label RollTHR-6121412517503Gift Wrap SheetGFT-81210101004Documentation PouchDOC-872810805Plastic SleeveSLV-89011150165055658001256705Partial shipment allowed" + }, + { + "file_name": "package_00009.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00009", + "order_date": "2026-02-18", + "sales_order_number": "537988", + "po_number": "PO-49578" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "14", + "unit_price": "12", + "total_price": "168" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "3", + "unit_price": "175", + "total_price": "525" + }, + { + "sr_no": "3", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "7", + "unit_price": "12", + "total_price": "84" + }, + { + "sr_no": "4", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "18", + "unit_price": "75", + "total_price": "1350" + }, + { + "sr_no": "5", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "6", + "unit_price": "125", + "total_price": "750" + }, + { + "sr_no": "6", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "11", + "unit_price": "10", + "total_price": "110" + }, + { + "sr_no": "7", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "15", + "unit_price": "50", + "total_price": "750" + } + ], + "summary": { + "total_quantity": "74", + "sub_total": "3737", + "tax": "50", + "freight": "125", + "grand_total": "3912" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000092026-02-18537988PO-495781Printed CartonCRT-67014121682Kraft Paper RollKRAFT-22131755253Plastic SleeveSLV-890712844Warranty CardWAR-110187513505Corrugated DividerDIV-73161257506Instruction LeafletLEAF-55711101107Foam InsertFOM-5601550750743737501253912Partial shipment allowed" + }, + { + "file_name": "package_00010.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Vertex Home Mart", + "bill_to_address": "312 King Street, Seattle, WA 98104", + "ship_to_name": "Vertex Home Mart", + "ship_to_address": "810 Depot Road, Tacoma, WA 98421" + }, + "document": { + "package_number": "PKG00010", + "order_date": "2026-08-12", + "sales_order_number": "555815", + "po_number": "PO-45020" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "17", + "unit_price": "10", + "total_price": "170" + }, + { + "sr_no": "2", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "1", + "unit_price": "200", + "total_price": "200" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "3", + "unit_price": "30", + "total_price": "90" + }, + { + "sr_no": "4", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "8", + "unit_price": "175", + "total_price": "1400" + }, + { + "sr_no": "5", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "20", + "unit_price": "10", + "total_price": "200" + }, + { + "sr_no": "6", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "12", + "unit_price": "250", + "total_price": "3000" + }, + { + "sr_no": "7", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "3", + "unit_price": "40", + "total_price": "120" + } + ], + "summary": { + "total_quantity": "64", + "sub_total": "5180", + "tax": "0", + "freight": "150", + "grand_total": "5330" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000102026-08-12555815PO-450201Hang Tag BundleTAG-14917101702Corrugated DividerDIV-73112002003Custom Poly MailerPOLY-620330904Kraft Paper RollKRAFT-221817514005Return Label SheetRTN-50920102006Product ManualMAN-7801225030007Fragile Label SetFRG-11234012064518001505330Deliver during business hours" + }, + { + "file_name": "package_00011.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00011", + "order_date": "2026-04-07", + "sales_order_number": "551182", + "po_number": "PO-59250" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "1", + "unit_price": "90", + "total_price": "90" + }, + { + "sr_no": "2", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "19", + "unit_price": "50", + "total_price": "950" + }, + { + "sr_no": "3", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "15", + "unit_price": "15", + "total_price": "225" + }, + { + "sr_no": "4", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "7", + "unit_price": "150", + "total_price": "1050" + }, + { + "sr_no": "5", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "14", + "unit_price": "10", + "total_price": "140" + }, + { + "sr_no": "6", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "16", + "unit_price": "50", + "total_price": "800" + } + ], + "summary": { + "total_quantity": "72", + "sub_total": "3255", + "tax": "0", + "freight": "200", + "grand_total": "3455" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000112026-04-07551182PO-592501Instruction LeafletLEAF-557190902Return Label SheetRTN-50919509503Moisture Guard BagMGB-30915152254Fragile Label SetFRG-112715010505Custom Poly MailerPOLY-62014101406Barcode Sticker RollBAR-244165080072325502003455Customer signature required" + }, + { + "file_name": "package_00012.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00012", + "order_date": "2026-12-07", + "sales_order_number": "502912", + "po_number": "PO-69396" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "12", + "unit_price": "30", + "total_price": "360" + }, + { + "sr_no": "2", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "2", + "unit_price": "20", + "total_price": "40" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "18", + "unit_price": "10", + "total_price": "180" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "10", + "unit_price": "225", + "total_price": "2250" + }, + { + "sr_no": "5", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "4", + "unit_price": "20", + "total_price": "80" + }, + { + "sr_no": "6", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "20", + "unit_price": "250", + "total_price": "5000" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "4", + "unit_price": "10", + "total_price": "40" + } + ], + "summary": { + "total_quantity": "70", + "sub_total": "7950", + "tax": "100", + "freight": "100", + "grand_total": "8150" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000122026-12-07502912PO-693961Instruction LeafletLEAF-55712303602Documentation PouchDOC-872220403Barcode Sticker RollBAR-24418101804Packing TapeTAPE-3381022522505Security Seal StripSEC-401420806Fragile Label SetFRG-1122025050007Hang Tag BundleTAG-149410407079501001008150Do not stack above five cartons" + }, + { + "file_name": "package_00013.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00013", + "order_date": "2026-11-26", + "sales_order_number": "529429", + "po_number": "PO-68859" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "10", + "unit_price": "90", + "total_price": "900" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "17", + "unit_price": "10", + "total_price": "170" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "12", + "unit_price": "10", + "total_price": "120" + }, + { + "sr_no": "4", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "18", + "unit_price": "10", + "total_price": "180" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "12", + "unit_price": "225", + "total_price": "2700" + } + ], + "summary": { + "total_quantity": "69", + "sub_total": "4070", + "tax": "0", + "freight": "150", + "grand_total": "4220" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000132026-11-26529429PO-688591Fragile Label SetFRG-11210909002Die Cut InsertDCI-72517101703Printed CartonCRT-67012101204Shipping Label PackLBL-45018101805Foam InsertFOM-56012225270069407001504220Do not stack above five cartons" + }, + { + "file_name": "package_00014.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00014", + "order_date": "2026-02-21", + "sales_order_number": "510202", + "po_number": "PO-50171" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "2", + "unit_price": "225", + "total_price": "450" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "7", + "unit_price": "30", + "total_price": "210" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "2", + "unit_price": "75", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "3", + "unit_price": "30", + "total_price": "90" + }, + { + "sr_no": "5", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "19", + "unit_price": "12", + "total_price": "228" + } + ], + "summary": { + "total_quantity": "33", + "sub_total": "1128", + "tax": "200", + "freight": "0", + "grand_total": "1328" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000142026-02-21510202PO-501711Invoice CopyINV-COPY22254502Die Cut InsertDCI-7257302103Printed CartonCRT-6702751504Ad DesignAD-DES-003330905Plastic SleeveSLV-890191222833112820001328Priority delivery requested" + }, + { + "file_name": "package_00015.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00015", + "order_date": "2026-04-14", + "sales_order_number": "515017", + "po_number": "PO-56552" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "1", + "unit_price": "50", + "total_price": "50" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "18", + "unit_price": "15", + "total_price": "270" + }, + { + "sr_no": "3", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "12", + "unit_price": "10", + "total_price": "120" + } + ], + "summary": { + "total_quantity": "31", + "sub_total": "440", + "tax": "0", + "freight": "250", + "grand_total": "690" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000152026-04-14515017PO-565521Die Cut InsertDCI-725150502Kraft Paper RollKRAFT-22118152703Gift Wrap SheetGFT-8121210120314400250690Shipment can be split by item line" + }, + { + "file_name": "package_00016.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00016", + "order_date": "2026-03-29", + "sales_order_number": "503050", + "po_number": "PO-62400" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "10", + "unit_price": "15", + "total_price": "150" + }, + { + "sr_no": "2", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "3", + "unit_price": "250", + "total_price": "750" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "8", + "unit_price": "225", + "total_price": "1800" + } + ], + "summary": { + "total_quantity": "30", + "sub_total": "2880", + "tax": "125", + "freight": "125", + "grand_total": "3130" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000162026-03-29503050PO-624001Packing Slip CopyPSC-39110151502Documentation PouchDOC-87232507503Custom Poly MailerPOLY-6209201804Barcode Sticker RollBAR-244822518003028801251253130Priority delivery requested" + }, + { + "file_name": "package_00017.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00017", + "order_date": "2026-07-12", + "sales_order_number": "568788", + "po_number": "PO-32360" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "17", + "unit_price": "50", + "total_price": "850" + }, + { + "sr_no": "2", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "1", + "unit_price": "30", + "total_price": "30" + }, + { + "sr_no": "3", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "19", + "unit_price": "20", + "total_price": "380" + } + ], + "summary": { + "total_quantity": "37", + "sub_total": "1260", + "tax": "100", + "freight": "300", + "grand_total": "1660" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000172026-07-12568788PO-323601Pallet Label CardPAL-31817508502Hang Tag BundleTAG-149130303Security Seal StripSEC-40119203803712601003001660Do not stack above five cartons" + }, + { + "file_name": "package_00018.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00018", + "order_date": "2026-04-16", + "sales_order_number": "551181", + "po_number": "PO-49586" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "17", + "unit_price": "12", + "total_price": "204" + }, + { + "sr_no": "2", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "17", + "unit_price": "12", + "total_price": "204" + }, + { + "sr_no": "3", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "13", + "unit_price": "75", + "total_price": "975" + }, + { + "sr_no": "4", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "13", + "unit_price": "25", + "total_price": "325" + }, + { + "sr_no": "5", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "20", + "unit_price": "40", + "total_price": "800" + }, + { + "sr_no": "6", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "14", + "unit_price": "75", + "total_price": "1050" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "9", + "unit_price": "225", + "total_price": "2025" + } + ], + "summary": { + "total_quantity": "103", + "sub_total": "5583", + "tax": "200", + "freight": "0", + "grand_total": "5783" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000182026-04-16551181PO-495861Instruction LeafletLEAF-55717122042Corrugated DividerDIV-73117122043Packing TapeTAPE-33813759754Custom Poly MailerPOLY-62013253255Logo Sticker PackLOGO-75420408006Warranty CardWAR-110147510507Mailer Box SmallMBOX-SM92252025103558320005783Keep goods dry during transit" + }, + { + "file_name": "package_00019.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00019", + "order_date": "2026-10-23", + "sales_order_number": "558868", + "po_number": "PO-43571" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "18", + "unit_price": "200", + "total_price": "3600" + }, + { + "sr_no": "2", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "15", + "unit_price": "50", + "total_price": "750" + }, + { + "sr_no": "3", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "20", + "unit_price": "250", + "total_price": "5000" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "7", + "unit_price": "125", + "total_price": "875" + }, + { + "sr_no": "5", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "3", + "unit_price": "12", + "total_price": "36" + }, + { + "sr_no": "6", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "19", + "unit_price": "250", + "total_price": "4750" + }, + { + "sr_no": "7", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "4", + "unit_price": "40", + "total_price": "160" + }, + { + "sr_no": "8", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "17", + "unit_price": "15", + "total_price": "255" + } + ], + "summary": { + "total_quantity": "103", + "sub_total": "15426", + "tax": "200", + "freight": "200", + "grand_total": "15826" + }, + "notes": "Contact buyer before final delivery" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000192026-10-23558868PO-435711Foam InsertFOM-5601820036002Hang Tag BundleTAG-14915507503Security Seal StripSEC-4012025050004Documentation PouchDOC-87271258755Gift Wrap SheetGFT-812312366Corner ProtectorCRN-0191925047507Ad DesignAD-DES-0034401608Kraft Paper RollKRAFT-22117152551031542620020015826Contact buyer before final delivery" + }, + { + "file_name": "package_00020.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00020", + "order_date": "2026-09-29", + "sales_order_number": "504138", + "po_number": "PO-68874" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "9", + "unit_price": "75", + "total_price": "675" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "13", + "unit_price": "60", + "total_price": "780" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "17", + "unit_price": "175", + "total_price": "2975" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "12", + "unit_price": "40", + "total_price": "480" + } + ], + "summary": { + "total_quantity": "51", + "sub_total": "4910", + "tax": "0", + "freight": "75", + "grand_total": "4985" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000202026-09-29504138PO-688741Documentation PouchDOC-8729756752Mailer Box LargeMBOX-LG13607803Mailer Box SmallMBOX-SM1717529754Instruction LeafletLEAF-55712404805149100754985Handle cartons with care" + }, + { + "file_name": "package_00021.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00021", + "order_date": "2026-10-03", + "sales_order_number": "527788", + "po_number": "PO-61050" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "4", + "unit_price": "30", + "total_price": "120" + }, + { + "sr_no": "2", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "18", + "unit_price": "175", + "total_price": "3150" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "3", + "unit_price": "90", + "total_price": "270" + }, + { + "sr_no": "4", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "6", + "unit_price": "60", + "total_price": "360" + }, + { + "sr_no": "5", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "9", + "unit_price": "90", + "total_price": "810" + } + ], + "summary": { + "total_quantity": "40", + "sub_total": "4710", + "tax": "0", + "freight": "300", + "grand_total": "5010" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000212026-10-03527788PO-610501Foam InsertFOM-5604301202Shipping Label PackLBL-4501817531503Mailer Box SmallMBOX-SM3902704Pallet Label CardPAL-3186603605Printed CartonCRT-67099081040471003005010Do not stack above five cartons" + }, + { + "file_name": "package_00022.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00022", + "order_date": "2026-06-30", + "sales_order_number": "548998", + "po_number": "PO-48644" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "17", + "unit_price": "125", + "total_price": "2125" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "15", + "unit_price": "250", + "total_price": "3750" + }, + { + "sr_no": "4", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "18", + "unit_price": "125", + "total_price": "2250" + }, + { + "sr_no": "5", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "16", + "unit_price": "20", + "total_price": "320" + } + ], + "summary": { + "total_quantity": "75", + "sub_total": "8625", + "tax": "0", + "freight": "75", + "grand_total": "8700" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000222026-06-30548998PO-486441Packing Slip CopyPSC-3911712521252Mailer Box SmallMBOX-SM9201803Printed CartonCRT-6701525037504Mailer Box LargeMBOX-LG1812522505Invoice CopyINV-COPY16203207586250758700Keep goods dry during transit" + }, + { + "file_name": "package_00023.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00023", + "order_date": "2026-09-30", + "sales_order_number": "565617", + "po_number": "PO-52249" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "18", + "unit_price": "12", + "total_price": "216" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "15", + "unit_price": "15", + "total_price": "225" + }, + { + "sr_no": "3", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "8", + "unit_price": "15", + "total_price": "120" + }, + { + "sr_no": "4", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "14", + "unit_price": "10", + "total_price": "140" + }, + { + "sr_no": "5", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "10", + "unit_price": "250", + "total_price": "2500" + } + ], + "summary": { + "total_quantity": "65", + "sub_total": "3201", + "tax": "150", + "freight": "250", + "grand_total": "3601" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000232026-09-30565617PO-522491Instruction LeafletLEAF-55718122162Kraft Paper RollKRAFT-22115152253Plastic SleeveSLV-8908151204Fragile Label SetFRG-11214101405Packing Slip CopyPSC-3911025025006532011502503601Verify carton count before dispatch" + }, + { + "file_name": "package_00024.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00024", + "order_date": "2026-06-23", + "sales_order_number": "505276", + "po_number": "PO-34489" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "6", + "unit_price": "25", + "total_price": "150" + }, + { + "sr_no": "2", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "16", + "unit_price": "50", + "total_price": "800" + }, + { + "sr_no": "3", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "10", + "unit_price": "12", + "total_price": "120" + }, + { + "sr_no": "4", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "12", + "unit_price": "225", + "total_price": "2700" + }, + { + "sr_no": "5", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "2", + "unit_price": "60", + "total_price": "120" + }, + { + "sr_no": "6", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "16", + "unit_price": "250", + "total_price": "4000" + }, + { + "sr_no": "7", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "20", + "unit_price": "60", + "total_price": "1200" + } + ], + "summary": { + "total_quantity": "82", + "sub_total": "9090", + "tax": "0", + "freight": "150", + "grand_total": "9240" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000242026-06-23505276PO-344891Gift Wrap SheetGFT-8126251502Packing Slip CopyPSC-39116508003Packing TapeTAPE-33810121204Pallet Label CardPAL-3181222527005Printed CartonCRT-6702601206Mailer Box SmallMBOX-SM1625040007Instruction LeafletLEAF-5572060120082909001509240Use dock entrance for unloading" + }, + { + "file_name": "package_00025.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Vertex Home Mart", + "bill_to_address": "312 King Street, Seattle, WA 98104", + "ship_to_name": "Vertex Home Mart", + "ship_to_address": "810 Depot Road, Tacoma, WA 98421" + }, + "document": { + "package_number": "PKG00025", + "order_date": "2026-09-30", + "sales_order_number": "529048", + "po_number": "PO-68337" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "7", + "unit_price": "125", + "total_price": "875" + }, + { + "sr_no": "2", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "17", + "unit_price": "15", + "total_price": "255" + }, + { + "sr_no": "3", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "18", + "unit_price": "200", + "total_price": "3600" + } + ], + "summary": { + "total_quantity": "42", + "sub_total": "4730", + "tax": "125", + "freight": "50", + "grand_total": "4905" + }, + "notes": "Contact buyer before final delivery" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000252026-09-30529048PO-683371Fragile Label SetFRG-11271258752Barcode Sticker RollBAR-24417152553Plastic SleeveSLV-890182003600424730125504905Contact buyer before final delivery" + }, + { + "file_name": "package_00026.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00026", + "order_date": "2026-10-22", + "sales_order_number": "559602", + "po_number": "PO-39219" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "16", + "unit_price": "175", + "total_price": "2800" + }, + { + "sr_no": "2", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "16", + "unit_price": "15", + "total_price": "240" + }, + { + "sr_no": "3", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "12", + "unit_price": "100", + "total_price": "1200" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "16", + "unit_price": "60", + "total_price": "960" + }, + { + "sr_no": "5", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + }, + { + "sr_no": "6", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "19", + "unit_price": "10", + "total_price": "190" + } + ], + "summary": { + "total_quantity": "85", + "sub_total": "5462", + "tax": "125", + "freight": "75", + "grand_total": "5662" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000262026-10-22559602PO-392191Mailer Box LargeMBOX-LG1617528002Barcode Sticker RollBAR-24416152403Security Seal StripSEC-4011210012004Ad DesignAD-DES-00316609605Corner ProtectorCRN-019612726Gift Wrap SheetGFT-8121910190855462125755662Shipment can be split by item line" + }, + { + "file_name": "package_00027.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Vertex Home Mart", + "bill_to_address": "312 King Street, Seattle, WA 98104", + "ship_to_name": "Vertex Home Mart", + "ship_to_address": "810 Depot Road, Tacoma, WA 98421" + }, + "document": { + "package_number": "PKG00027", + "order_date": "2026-02-22", + "sales_order_number": "513095", + "po_number": "PO-57723" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "13", + "unit_price": "200", + "total_price": "2600" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "8", + "unit_price": "250", + "total_price": "2000" + }, + { + "sr_no": "3", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "5", + "unit_price": "50", + "total_price": "250" + }, + { + "sr_no": "4", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "1", + "unit_price": "200", + "total_price": "200" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "3", + "unit_price": "12", + "total_price": "36" + }, + { + "sr_no": "6", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "3", + "unit_price": "200", + "total_price": "600" + }, + { + "sr_no": "7", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "4", + "unit_price": "90", + "total_price": "360" + } + ], + "summary": { + "total_quantity": "37", + "sub_total": "6046", + "tax": "0", + "freight": "0", + "grand_total": "6046" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000272026-02-22513095PO-577231Printed CartonCRT-6701320026002Thermal Label RollTHR-612825020003Ad DesignAD-DES-0035502504Plastic SleeveSLV-89012002005Foam InsertFOM-560312366Product ManualMAN-78032006007Barcode Sticker RollBAR-244490360376046006046Customer signature required" + }, + { + "file_name": "package_00028.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00028", + "order_date": "2026-01-18", + "sales_order_number": "530579", + "po_number": "PO-33950" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "14", + "unit_price": "12", + "total_price": "168" + }, + { + "sr_no": "2", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "10", + "unit_price": "125", + "total_price": "1250" + }, + { + "sr_no": "3", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "4", + "unit_price": "12", + "total_price": "48" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "13", + "unit_price": "60", + "total_price": "780" + } + ], + "summary": { + "total_quantity": "41", + "sub_total": "2246", + "tax": "100", + "freight": "75", + "grand_total": "2421" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000282026-01-18530579PO-339501Mailer Box LargeMBOX-LG14121682Packing Slip CopyPSC-3911012512503Bubble Wrap RollBUB-908412484Barcode Sticker RollBAR-2441360780412246100752421Priority delivery requested" + }, + { + "file_name": "package_00029.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00029", + "order_date": "2026-07-04", + "sales_order_number": "541895", + "po_number": "PO-50678" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "19", + "unit_price": "90", + "total_price": "1710" + }, + { + "sr_no": "2", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "19", + "unit_price": "25", + "total_price": "475" + }, + { + "sr_no": "3", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "20", + "unit_price": "15", + "total_price": "300" + }, + { + "sr_no": "4", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "7", + "unit_price": "50", + "total_price": "350" + }, + { + "sr_no": "5", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "16", + "unit_price": "200", + "total_price": "3200" + } + ], + "summary": { + "total_quantity": "81", + "sub_total": "6035", + "tax": "100", + "freight": "300", + "grand_total": "6435" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000292026-07-04541895PO-506781Mailer Box SmallMBOX-SM199017102Thermal Label RollTHR-61219254753Packing TapeTAPE-33820153004Bubble Wrap RollBUB-9087503505Hang Tag BundleTAG-1491620032008160351003006435Use dock entrance for unloading" + }, + { + "file_name": "package_00030.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00030", + "order_date": "2026-08-31", + "sales_order_number": "510007", + "po_number": "PO-40068" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "13", + "unit_price": "12", + "total_price": "156" + }, + { + "sr_no": "2", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "18", + "unit_price": "225", + "total_price": "4050" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "15", + "unit_price": "75", + "total_price": "1125" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "19", + "unit_price": "20", + "total_price": "380" + }, + { + "sr_no": "5", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "18", + "unit_price": "75", + "total_price": "1350" + }, + { + "sr_no": "6", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "9", + "unit_price": "225", + "total_price": "2025" + }, + { + "sr_no": "7", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "11", + "unit_price": "50", + "total_price": "550" + } + ], + "summary": { + "total_quantity": "103", + "sub_total": "9636", + "tax": "0", + "freight": "200", + "grand_total": "9836" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000302026-08-31510007PO-400681Warranty CardWAR-11013121562Invoice CopyINV-COPY1822540503Instruction LeafletLEAF-557157511254Packing TapeTAPE-33819203805Corrugated DividerDIV-731187513506Logo Sticker PackLOGO-754922520257Printed CartonCRT-6701150550103963602009836Attach invoice copy to shipment" + }, + { + "file_name": "package_00031.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00031", + "order_date": "2026-01-20", + "sales_order_number": "526488", + "po_number": "PO-39782" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "10", + "unit_price": "40", + "total_price": "400" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "6", + "unit_price": "40", + "total_price": "240" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "5", + "unit_price": "15", + "total_price": "75" + } + ], + "summary": { + "total_quantity": "21", + "sub_total": "715", + "tax": "0", + "freight": "200", + "grand_total": "915" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000312026-01-20526488PO-397821Corner ProtectorCRN-01910404002Printed CartonCRT-6706402403Barcode Sticker RollBAR-24451575217150200915Customer signature required" + }, + { + "file_name": "package_00032.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00032", + "order_date": "2026-03-31", + "sales_order_number": "577345", + "po_number": "PO-35175" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "11", + "unit_price": "175", + "total_price": "1925" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "100", + "total_price": "1800" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "12", + "unit_price": "250", + "total_price": "3000" + }, + { + "sr_no": "4", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "20", + "unit_price": "225", + "total_price": "4500" + }, + { + "sr_no": "5", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "16", + "unit_price": "25", + "total_price": "400" + }, + { + "sr_no": "6", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "7", + "unit_price": "90", + "total_price": "630" + }, + { + "sr_no": "7", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "7", + "unit_price": "75", + "total_price": "525" + }, + { + "sr_no": "8", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "4", + "unit_price": "250", + "total_price": "1000" + } + ], + "summary": { + "total_quantity": "95", + "sub_total": "13780", + "tax": "100", + "freight": "50", + "grand_total": "13930" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000322026-03-31577345PO-351751Die Cut InsertDCI-7251117519252Printed CartonCRT-6701810018003Instruction LeafletLEAF-5571225030004Packing Slip CopyPSC-3912022545005Thermal Label RollTHR-61216254006Corner ProtectorCRN-0197906307Fragile Label SetFRG-1127755258Foam InsertFOM-5604250100095137801005013930Attach invoice copy to shipment" + }, + { + "file_name": "package_00033.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00033", + "order_date": "2026-06-07", + "sales_order_number": "588754", + "po_number": "PO-52814" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "8", + "unit_price": "25", + "total_price": "200" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "15", + "unit_price": "20", + "total_price": "300" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "12", + "unit_price": "20", + "total_price": "240" + }, + { + "sr_no": "4", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "8", + "unit_price": "225", + "total_price": "1800" + }, + { + "sr_no": "5", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "18", + "unit_price": "175", + "total_price": "3150" + }, + { + "sr_no": "6", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "19", + "unit_price": "75", + "total_price": "1425" + }, + { + "sr_no": "7", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "17", + "unit_price": "90", + "total_price": "1530" + }, + { + "sr_no": "8", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "6", + "unit_price": "30", + "total_price": "180" + } + ], + "summary": { + "total_quantity": "103", + "sub_total": "8825", + "tax": "200", + "freight": "100", + "grand_total": "9125" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000332026-06-07588754PO-528141Logo Sticker PackLOGO-7548252002Die Cut InsertDCI-72515203003Custom Poly MailerPOLY-62012202404Gift Wrap SheetGFT-812822518005Pallet Label CardPAL-3181817531506Hang Tag BundleTAG-149197514257Printed CartonCRT-670179015308Packing TapeTAPE-33863018010388252001009125Customer signature required" + }, + { + "file_name": "package_00034.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00034", + "order_date": "2026-05-15", + "sales_order_number": "525687", + "po_number": "PO-62847" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "16", + "unit_price": "12", + "total_price": "192" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "17", + "unit_price": "15", + "total_price": "255" + }, + { + "sr_no": "3", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "11", + "unit_price": "250", + "total_price": "2750" + }, + { + "sr_no": "4", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "4", + "unit_price": "20", + "total_price": "80" + }, + { + "sr_no": "5", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "16", + "unit_price": "175", + "total_price": "2800" + }, + { + "sr_no": "6", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "10", + "unit_price": "12", + "total_price": "120" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "16", + "unit_price": "200", + "total_price": "3200" + } + ], + "summary": { + "total_quantity": "90", + "sub_total": "9397", + "tax": "100", + "freight": "150", + "grand_total": "9647" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000342026-05-15525687PO-628471Mailer Box SmallMBOX-SM16121922Corner ProtectorCRN-01917152553Shipping Label PackLBL-4501125027504Plastic SleeveSLV-890420805Printed CartonCRT-6701617528006Kraft Paper RollKRAFT-22110121207Hang Tag BundleTAG-1491620032009093971001509647Shipment can be split by item line" + }, + { + "file_name": "package_00035.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00035", + "order_date": "2026-07-24", + "sales_order_number": "501761", + "po_number": "PO-63272" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "1", + "unit_price": "100", + "total_price": "100" + }, + { + "sr_no": "2", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "11", + "unit_price": "175", + "total_price": "1925" + }, + { + "sr_no": "3", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "10", + "unit_price": "125", + "total_price": "1250" + }, + { + "sr_no": "4", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "10", + "unit_price": "200", + "total_price": "2000" + }, + { + "sr_no": "5", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "14", + "unit_price": "200", + "total_price": "2800" + }, + { + "sr_no": "6", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "7", + "unit_price": "200", + "total_price": "1400" + } + ], + "summary": { + "total_quantity": "53", + "sub_total": "9475", + "tax": "150", + "freight": "150", + "grand_total": "9775" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000352026-07-24501761PO-632721Packing Slip CopyPSC-39111001002Gift Wrap SheetGFT-8121117519253Corrugated DividerDIV-7311012512504Custom Poly MailerPOLY-6201020020005Packing TapeTAPE-3381420028006Corner ProtectorCRN-019720014005394751501509775Priority delivery requested" + }, + { + "file_name": "package_00036.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00036", + "order_date": "2026-06-10", + "sales_order_number": "584987", + "po_number": "PO-30517" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "16", + "unit_price": "225", + "total_price": "3600" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "19", + "unit_price": "20", + "total_price": "380" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "17", + "unit_price": "20", + "total_price": "340" + }, + { + "sr_no": "4", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "11", + "unit_price": "40", + "total_price": "440" + }, + { + "sr_no": "5", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "1", + "unit_price": "90", + "total_price": "90" + }, + { + "sr_no": "6", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "7", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "19", + "unit_price": "225", + "total_price": "4275" + }, + { + "sr_no": "8", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "16", + "unit_price": "100", + "total_price": "1600" + } + ], + "summary": { + "total_quantity": "108", + "sub_total": "10905", + "tax": "100", + "freight": "100", + "grand_total": "11105" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000362026-06-10584987PO-305171Kraft Paper RollKRAFT-2211622536002Printed CartonCRT-67019203803Documentation PouchDOC-87217203404Bubble Wrap RollBUB-90811404405Ad DesignAD-DES-003190906Plastic SleeveSLV-8909201807Shipping Label PackLBL-4501922542758Packing Slip CopyPSC-3911610016001081090510010011105Keep goods dry during transit" + }, + { + "file_name": "package_00037.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00037", + "order_date": "2026-03-31", + "sales_order_number": "547748", + "po_number": "PO-41995" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "20", + "unit_price": "15", + "total_price": "300" + }, + { + "sr_no": "2", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "9", + "unit_price": "40", + "total_price": "360" + }, + { + "sr_no": "3", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "17", + "unit_price": "25", + "total_price": "425" + } + ], + "summary": { + "total_quantity": "46", + "sub_total": "1085", + "tax": "0", + "freight": "75", + "grand_total": "1160" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000372026-03-31547748PO-419951Bubble Wrap RollBUB-90820153002Shipping Label PackLBL-4509403603Corner ProtectorCRN-01917254254610850751160Verify carton count before dispatch" + }, + { + "file_name": "package_00038.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00038", + "order_date": "2026-02-04", + "sales_order_number": "586793", + "po_number": "PO-32806" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "6", + "unit_price": "10", + "total_price": "60" + }, + { + "sr_no": "2", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "10", + "unit_price": "10", + "total_price": "100" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "8", + "unit_price": "50", + "total_price": "400" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "15", + "unit_price": "100", + "total_price": "1500" + }, + { + "sr_no": "5", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "19", + "unit_price": "125", + "total_price": "2375" + }, + { + "sr_no": "6", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "4", + "unit_price": "40", + "total_price": "160" + } + ], + "summary": { + "total_quantity": "62", + "sub_total": "4595", + "tax": "150", + "freight": "300", + "grand_total": "5045" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000382026-02-04586793PO-328061Instruction LeafletLEAF-557610602Bubble Wrap RollBUB-90810101003Barcode Sticker RollBAR-2448504004Packing TapeTAPE-3381510015005Shipping Label PackLBL-4501912523756Die Cut InsertDCI-7254401606245951503005045Deliver during business hours" + }, + { + "file_name": "package_00039.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00039", + "order_date": "2026-06-07", + "sales_order_number": "511838", + "po_number": "PO-52104" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "7", + "unit_price": "75", + "total_price": "525" + }, + { + "sr_no": "2", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "8", + "unit_price": "15", + "total_price": "120" + }, + { + "sr_no": "3", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "2", + "unit_price": "50", + "total_price": "100" + }, + { + "sr_no": "4", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "10", + "unit_price": "250", + "total_price": "2500" + }, + { + "sr_no": "5", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "11", + "unit_price": "50", + "total_price": "550" + }, + { + "sr_no": "6", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "1", + "unit_price": "100", + "total_price": "100" + }, + { + "sr_no": "7", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "2", + "unit_price": "40", + "total_price": "80" + } + ], + "summary": { + "total_quantity": "41", + "sub_total": "3975", + "tax": "100", + "freight": "75", + "grand_total": "4150" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000392026-06-07511838PO-521041Logo Sticker PackLOGO-7547755252Security Seal StripSEC-4018151203Product ManualMAN-7802501004Warranty CardWAR-1101025025005Invoice CopyINV-COPY11505506Printed CartonCRT-67011001007Thermal Label RollTHR-61224080413975100754150Shipment can be split by item line" + }, + { + "file_name": "package_00040.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Northline Supplies", + "address": "7455 Drew Court, White City, KS 66872", + "phone_number": "+91-88390-36062" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00040", + "order_date": "2026-03-31", + "sales_order_number": "569906", + "po_number": "PO-47298" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "11", + "unit_price": "10", + "total_price": "110" + }, + { + "sr_no": "2", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "13", + "unit_price": "250", + "total_price": "3250" + }, + { + "sr_no": "3", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "7", + "unit_price": "225", + "total_price": "1575" + }, + { + "sr_no": "4", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "6", + "unit_price": "225", + "total_price": "1350" + }, + { + "sr_no": "5", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "15", + "unit_price": "10", + "total_price": "150" + }, + { + "sr_no": "6", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "10", + "unit_price": "200", + "total_price": "2000" + }, + { + "sr_no": "7", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "6", + "unit_price": "125", + "total_price": "750" + }, + { + "sr_no": "8", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "17", + "unit_price": "12", + "total_price": "204" + } + ], + "summary": { + "total_quantity": "85", + "sub_total": "9389", + "tax": "0", + "freight": "200", + "grand_total": "9589" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000402026-03-31569906PO-472981Printed CartonCRT-67011101102Hang Tag BundleTAG-1491325032503Foam InsertFOM-560722515754Product ManualMAN-780622513505Warranty CardWAR-11015101506Fragile Label SetFRG-1121020020007Packing TapeTAPE-33861257508Packing Slip CopyPSC-391171220485938902009589Keep goods dry during transit" + }, + { + "file_name": "package_00041.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00041", + "order_date": "2026-03-26", + "sales_order_number": "548558", + "po_number": "PO-41281" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "12", + "unit_price": "200", + "total_price": "2400" + }, + { + "sr_no": "2", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "7", + "unit_price": "250", + "total_price": "1750" + }, + { + "sr_no": "3", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "6", + "unit_price": "60", + "total_price": "360" + }, + { + "sr_no": "5", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "12", + "unit_price": "15", + "total_price": "180" + }, + { + "sr_no": "6", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "11", + "unit_price": "125", + "total_price": "1375" + }, + { + "sr_no": "7", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "10", + "unit_price": "25", + "total_price": "250" + } + ], + "summary": { + "total_quantity": "67", + "sub_total": "6495", + "tax": "0", + "freight": "100", + "grand_total": "6595" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000412026-03-26548558PO-412811Plastic SleeveSLV-8901220024002Return Label SheetRTN-509725017503Gift Wrap SheetGFT-8129201804Documentation PouchDOC-8726603605Kraft Paper RollKRAFT-22112151806Warranty CardWAR-1101112513757Ad DesignAD-DES-003102525067649501006595Verify carton count before dispatch" + }, + { + "file_name": "package_00042.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00042", + "order_date": "2026-07-09", + "sales_order_number": "557181", + "po_number": "PO-51097" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "1", + "unit_price": "12", + "total_price": "12" + }, + { + "sr_no": "2", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "18", + "unit_price": "90", + "total_price": "1620" + }, + { + "sr_no": "4", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "7", + "unit_price": "20", + "total_price": "140" + }, + { + "sr_no": "5", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "18", + "unit_price": "90", + "total_price": "1620" + }, + { + "sr_no": "6", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "9", + "unit_price": "200", + "total_price": "1800" + }, + { + "sr_no": "7", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "10", + "unit_price": "250", + "total_price": "2500" + }, + { + "sr_no": "8", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "7", + "unit_price": "20", + "total_price": "140" + } + ], + "summary": { + "total_quantity": "76", + "sub_total": "7904", + "tax": "50", + "freight": "50", + "grand_total": "8004" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000422026-07-09557181PO-510971Return Label SheetRTN-509112122Corrugated DividerDIV-731612723Printed CartonCRT-670189016204Foam InsertFOM-5607201405Plastic SleeveSLV-890189016206Thermal Label RollTHR-612920018007Ad DesignAD-DES-0031025025008Mailer Box SmallMBOX-SM72014076790450508004Customer signature required" + }, + { + "file_name": "package_00043.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00043", + "order_date": "2026-11-29", + "sales_order_number": "597528", + "po_number": "PO-32041" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "11", + "unit_price": "125", + "total_price": "1375" + }, + { + "sr_no": "2", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "2", + "unit_price": "75", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "3", + "unit_price": "25", + "total_price": "75" + }, + { + "sr_no": "5", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "5", + "unit_price": "20", + "total_price": "100" + }, + { + "sr_no": "6", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "5", + "unit_price": "50", + "total_price": "250" + }, + { + "sr_no": "7", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "20", + "unit_price": "20", + "total_price": "400" + }, + { + "sr_no": "8", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "13", + "unit_price": "40", + "total_price": "520" + } + ], + "summary": { + "total_quantity": "65", + "sub_total": "2942", + "tax": "0", + "freight": "0", + "grand_total": "2942" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000432026-11-29597528PO-320411Kraft Paper RollKRAFT-2211112513752Custom Poly MailerPOLY-620612723Die Cut InsertDCI-7252751504Security Seal StripSEC-401325755Documentation PouchDOC-8725201006Corrugated DividerDIV-7315502507Moisture Guard BagMGB-30920204008Plastic SleeveSLV-8901340520652942002942Verify carton count before dispatch" + }, + { + "file_name": "package_00044.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00044", + "order_date": "2026-04-02", + "sales_order_number": "527142", + "po_number": "PO-34495" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "5", + "unit_price": "175", + "total_price": "875" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "4", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "9", + "unit_price": "15", + "total_price": "135" + }, + { + "sr_no": "5", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "19", + "unit_price": "12", + "total_price": "228" + }, + { + "sr_no": "6", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "4", + "unit_price": "15", + "total_price": "60" + }, + { + "sr_no": "7", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "7", + "unit_price": "200", + "total_price": "1400" + } + ], + "summary": { + "total_quantity": "56", + "sub_total": "3253", + "tax": "150", + "freight": "300", + "grand_total": "3703" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000442026-04-02527142PO-344951Product ManualMAN-78051758752Fragile Label SetFRG-11231253753Custom Poly MailerPOLY-6209201804Bubble Wrap RollBUB-9089151355Thermal Label RollTHR-61219122286Mailer Box SmallMBOX-SM415607Packing Slip CopyPSC-391720014005632531503003703Deliver during business hours" + }, + { + "file_name": "package_00045.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00045", + "order_date": "2026-01-19", + "sales_order_number": "512263", + "po_number": "PO-35279" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "20", + "unit_price": "25", + "total_price": "500" + }, + { + "sr_no": "2", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "16", + "unit_price": "30", + "total_price": "480" + }, + { + "sr_no": "3", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "11", + "unit_price": "30", + "total_price": "330" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "6", + "unit_price": "175", + "total_price": "1050" + }, + { + "sr_no": "5", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "19", + "unit_price": "225", + "total_price": "4275" + }, + { + "sr_no": "6", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "11", + "unit_price": "200", + "total_price": "2200" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "1", + "unit_price": "10", + "total_price": "10" + } + ], + "summary": { + "total_quantity": "84", + "sub_total": "8845", + "tax": "0", + "freight": "150", + "grand_total": "8995" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000452026-01-19512263PO-352791Documentation PouchDOC-87220255002Security Seal StripSEC-40116304803Invoice CopyINV-COPY11303304Barcode Sticker RollBAR-244617510505Bubble Wrap RollBUB-9081922542756Gift Wrap SheetGFT-8121120022007Mailer Box SmallMBOX-SM1101084884501508995Verify carton count before dispatch" + }, + { + "file_name": "package_00046.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00046", + "order_date": "2026-10-28", + "sales_order_number": "582469", + "po_number": "PO-38719" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "10", + "unit_price": "90", + "total_price": "900" + }, + { + "sr_no": "2", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "15", + "unit_price": "75", + "total_price": "1125" + }, + { + "sr_no": "3", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "1", + "unit_price": "175", + "total_price": "175" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "2", + "unit_price": "90", + "total_price": "180" + } + ], + "summary": { + "total_quantity": "28", + "sub_total": "2380", + "tax": "0", + "freight": "250", + "grand_total": "2630" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000462026-10-28582469PO-387191Security Seal StripSEC-40110909002Return Label SheetRTN-509157511253Invoice CopyINV-COPY11751754Ad DesignAD-DES-00329018028238002502630Partial shipment allowed" + }, + { + "file_name": "package_00047.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00047", + "order_date": "2026-11-30", + "sales_order_number": "563388", + "po_number": "PO-43749" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "18", + "unit_price": "40", + "total_price": "720" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "1", + "unit_price": "20", + "total_price": "20" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "6", + "unit_price": "15", + "total_price": "90" + }, + { + "sr_no": "4", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "6", + "unit_price": "150", + "total_price": "900" + }, + { + "sr_no": "5", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "6", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "18", + "unit_price": "50", + "total_price": "900" + } + ], + "summary": { + "total_quantity": "52", + "sub_total": "3005", + "tax": "50", + "freight": "100", + "grand_total": "3155" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000472026-11-30563388PO-437491Barcode Sticker RollBAR-24418407202Mailer Box LargeMBOX-LG120203Documentation PouchDOC-872615904Hang Tag BundleTAG-14961509005Packing TapeTAPE-33831253756Logo Sticker PackLOGO-7541850900523005501003155Priority delivery requested" + }, + { + "file_name": "package_00048.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00048", + "order_date": "2026-08-26", + "sales_order_number": "512410", + "po_number": "PO-32606" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "18", + "unit_price": "10", + "total_price": "180" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "8", + "unit_price": "75", + "total_price": "600" + }, + { + "sr_no": "3", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "15", + "unit_price": "100", + "total_price": "1500" + }, + { + "sr_no": "4", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "18", + "unit_price": "200", + "total_price": "3600" + }, + { + "sr_no": "5", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "17", + "unit_price": "100", + "total_price": "1700" + }, + { + "sr_no": "6", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "4", + "unit_price": "10", + "total_price": "40" + }, + { + "sr_no": "7", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "3", + "unit_price": "60", + "total_price": "180" + }, + { + "sr_no": "8", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "3", + "unit_price": "40", + "total_price": "120" + } + ], + "summary": { + "total_quantity": "86", + "sub_total": "7920", + "tax": "100", + "freight": "150", + "grand_total": "8170" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000482026-08-26512410PO-326061Return Label SheetRTN-50918101802Die Cut InsertDCI-7258756003Ad DesignAD-DES-0031510015004Logo Sticker PackLOGO-7541820036005Gift Wrap SheetGFT-8121710017006Fragile Label SetFRG-112410407Packing TapeTAPE-3383601808Shipping Label PackLBL-4503401208679201001508170Deliver during business hours" + }, + { + "file_name": "package_00049.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Northline Supplies", + "address": "7455 Drew Court, White City, KS 66872", + "phone_number": "+91-88390-36062" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00049", + "order_date": "2026-06-26", + "sales_order_number": "526427", + "po_number": "PO-49523" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "14", + "unit_price": "25", + "total_price": "350" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "9", + "unit_price": "200", + "total_price": "1800" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "14", + "unit_price": "200", + "total_price": "2800" + }, + { + "sr_no": "4", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "16", + "unit_price": "25", + "total_price": "400" + }, + { + "sr_no": "5", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "15", + "unit_price": "200", + "total_price": "3000" + }, + { + "sr_no": "6", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "10", + "unit_price": "225", + "total_price": "2250" + } + ], + "summary": { + "total_quantity": "78", + "sub_total": "10600", + "tax": "200", + "freight": "200", + "grand_total": "11000" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000492026-06-26526427PO-495231Pallet Label CardPAL-31814253502Corner ProtectorCRN-019920018003Barcode Sticker RollBAR-2441420028004Thermal Label RollTHR-61216254005Fragile Label SetFRG-1121520030006Warranty CardWAR-110102252250781060020020011000Shipment can be split by item line" + }, + { + "file_name": "package_00050.png", + "split": "train", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00050", + "order_date": "2026-04-27", + "sales_order_number": "514992", + "po_number": "PO-47284" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "13", + "unit_price": "250", + "total_price": "3250" + }, + { + "sr_no": "2", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "8", + "unit_price": "25", + "total_price": "200" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "14", + "unit_price": "125", + "total_price": "1750" + } + ], + "summary": { + "total_quantity": "35", + "sub_total": "5200", + "tax": "200", + "freight": "75", + "grand_total": "5475" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000502026-04-27514992PO-472841Packing TapeTAPE-3381325032502Moisture Guard BagMGB-3098252003Documentation PouchDOC-872141251750355200200755475Use dock entrance for unloading" + } +] \ No newline at end of file diff --git a/train/annotations_with_sequences.jsonl b/train/annotations_with_sequences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9e0ac56b8b97b8eb1ea45c694110d610fa4f84a5 --- /dev/null +++ b/train/annotations_with_sequences.jsonl @@ -0,0 +1,50 @@ +{"file_name": "package_00001.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00001", "order_date": "2026-06-10", "sales_order_number": "566846", "po_number": "PO-68696"}, "items": [{"sr_no": "1", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "20", "unit_price": "75", "total_price": "1500"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "17", "unit_price": "30", "total_price": "510"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "6", "unit_price": "12", "total_price": "72"}], "summary": {"total_quantity": "43", "sub_total": "2082", "tax": "50", "freight": "300", "grand_total": "2432"}, "notes": "Deliver during business hours"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000012026-06-10566846PO-686961Warranty CardWAR-110207515002Mailer Box SmallMBOX-SM17305103Barcode Sticker RollBAR-24461272432082503002432Deliver during business hours"} +{"file_name": "package_00002.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00002", "order_date": "2026-09-30", "sales_order_number": "566207", "po_number": "PO-65979"}, "items": [{"sr_no": "1", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "16", "unit_price": "90", "total_price": "1440"}, {"sr_no": "2", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "18", "unit_price": "90", "total_price": "1620"}, {"sr_no": "3", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "7", "unit_price": "15", "total_price": "105"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "4", "unit_price": "75", "total_price": "300"}], "summary": {"total_quantity": "45", "sub_total": "3465", "tax": "100", "freight": "300", "grand_total": "3865"}, "notes": "Priority delivery requested"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000022026-09-30566207PO-659791Thermal Label RollTHR-612169014402Foam InsertFOM-560189016203Fragile Label SetFRG-1127151054Barcode Sticker RollBAR-2444753004534651003003865Priority delivery requested"} +{"file_name": "package_00003.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00003", "order_date": "2026-01-28", "sales_order_number": "512460", "po_number": "PO-63766"}, "items": [{"sr_no": "1", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "8", "unit_price": "30", "total_price": "240"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "4", "unit_price": "25", "total_price": "100"}, {"sr_no": "3", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "2", "unit_price": "200", "total_price": "400"}, {"sr_no": "4", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "6", "unit_price": "250", "total_price": "1500"}, {"sr_no": "5", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "14", "unit_price": "12", "total_price": "168"}, {"sr_no": "6", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "8", "unit_price": "125", "total_price": "1000"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "10", "unit_price": "10", "total_price": "100"}], "summary": {"total_quantity": "52", "sub_total": "3508", "tax": "0", "freight": "200", "grand_total": "3708"}, "notes": "Priority delivery requested"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000032026-01-28512460PO-637661Warranty CardWAR-1108302402Thermal Label RollTHR-6124251003Logo Sticker PackLOGO-75422004004Gift Wrap SheetGFT-812625015005Moisture Guard BagMGB-30914121686Barcode Sticker RollBAR-244812510007Hang Tag BundleTAG-149101010052350802003708Priority delivery requested"} +{"file_name": "package_00004.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00004", "order_date": "2026-11-09", "sales_order_number": "572530", "po_number": "PO-44782"}, "items": [{"sr_no": "1", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "10", "unit_price": "250", "total_price": "2500"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "8", "unit_price": "20", "total_price": "160"}, {"sr_no": "3", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "2", "unit_price": "12", "total_price": "24"}, {"sr_no": "4", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "11", "unit_price": "150", "total_price": "1650"}, {"sr_no": "5", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "12", "unit_price": "10", "total_price": "120"}], "summary": {"total_quantity": "43", "sub_total": "4454", "tax": "150", "freight": "75", "grand_total": "4679"}, "notes": "Partial shipment allowed"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000042026-11-09572530PO-447821Moisture Guard BagMGB-3091025025002Corner ProtectorCRN-0198201603Warranty CardWAR-110212244Foam InsertFOM-5601115016505Hang Tag BundleTAG-1491210120434454150754679Partial shipment allowed"} +{"file_name": "package_00005.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00005", "order_date": "2026-08-08", "sales_order_number": "598877", "po_number": "PO-35537"}, "items": [{"sr_no": "1", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "7", "unit_price": "25", "total_price": "175"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "1", "unit_price": "60", "total_price": "60"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "1", "unit_price": "100", "total_price": "100"}, {"sr_no": "4", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "20", "unit_price": "60", "total_price": "1200"}, {"sr_no": "5", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "16", "unit_price": "20", "total_price": "320"}, {"sr_no": "6", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "13", "unit_price": "200", "total_price": "2600"}, {"sr_no": "7", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "7", "unit_price": "30", "total_price": "210"}, {"sr_no": "8", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "3", "unit_price": "200", "total_price": "600"}], "summary": {"total_quantity": "68", "sub_total": "5265", "tax": "100", "freight": "150", "grand_total": "5515"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000052026-08-08598877PO-355371Packing TapeTAPE-3387251752Thermal Label RollTHR-612160603Mailer Box SmallMBOX-SM11001004Hang Tag BundleTAG-149206012005Warranty CardWAR-11016203206Invoice CopyINV-COPY1320026007Product ManualMAN-7807302108Barcode Sticker RollBAR-24432006006852651001505515Do not stack above five cartons"} +{"file_name": "package_00006.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00006", "order_date": "2026-07-29", "sales_order_number": "583075", "po_number": "PO-62403"}, "items": [{"sr_no": "1", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "11", "unit_price": "25", "total_price": "275"}, {"sr_no": "2", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "17", "unit_price": "30", "total_price": "510"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "10", "unit_price": "50", "total_price": "500"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "12", "unit_price": "10", "total_price": "120"}, {"sr_no": "5", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "6", "unit_price": "15", "total_price": "90"}, {"sr_no": "6", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "15", "unit_price": "100", "total_price": "1500"}], "summary": {"total_quantity": "71", "sub_total": "2995", "tax": "50", "freight": "150", "grand_total": "3195"}, "notes": "Deliver during business hours"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000062026-07-29583075PO-624031Barcode Sticker RollBAR-24411252752Mailer Box LargeMBOX-LG17305103Instruction LeafletLEAF-55710505004Documentation PouchDOC-87212101205Logo Sticker PackLOGO-754615906Plastic SleeveSLV-890151001500712995501503195Deliver during business hours"} +{"file_name": "package_00007.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00007", "order_date": "2026-11-06", "sales_order_number": "533032", "po_number": "PO-52212"}, "items": [{"sr_no": "1", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "8", "unit_price": "50", "total_price": "400"}, {"sr_no": "2", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "15", "unit_price": "125", "total_price": "1875"}, {"sr_no": "3", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "14", "unit_price": "225", "total_price": "3150"}], "summary": {"total_quantity": "37", "sub_total": "5425", "tax": "0", "freight": "75", "grand_total": "5500"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000072026-11-06533032PO-522121Corrugated DividerDIV-7318504002Instruction LeafletLEAF-5571512518753Warranty CardWAR-1101422531503754250755500Verify carton count before dispatch"} +{"file_name": "package_00008.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00008", "order_date": "2026-02-11", "sales_order_number": "528383", "po_number": "PO-65336"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "12", "unit_price": "250", "total_price": "3000"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "14", "unit_price": "125", "total_price": "1750"}, {"sr_no": "3", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "10", "unit_price": "10", "total_price": "100"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "8", "unit_price": "10", "total_price": "80"}, {"sr_no": "5", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "11", "unit_price": "150", "total_price": "1650"}], "summary": {"total_quantity": "55", "sub_total": "6580", "tax": "0", "freight": "125", "grand_total": "6705"}, "notes": "Partial shipment allowed"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000082026-02-11528383PO-653361Kraft Paper RollKRAFT-2211225030002Thermal Label RollTHR-6121412517503Gift Wrap SheetGFT-81210101004Documentation PouchDOC-872810805Plastic SleeveSLV-89011150165055658001256705Partial shipment allowed"} +{"file_name": "package_00009.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00009", "order_date": "2026-02-18", "sales_order_number": "537988", "po_number": "PO-49578"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "14", "unit_price": "12", "total_price": "168"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "3", "unit_price": "175", "total_price": "525"}, {"sr_no": "3", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "7", "unit_price": "12", "total_price": "84"}, {"sr_no": "4", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "18", "unit_price": "75", "total_price": "1350"}, {"sr_no": "5", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "6", "unit_price": "125", "total_price": "750"}, {"sr_no": "6", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "11", "unit_price": "10", "total_price": "110"}, {"sr_no": "7", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "15", "unit_price": "50", "total_price": "750"}], "summary": {"total_quantity": "74", "sub_total": "3737", "tax": "50", "freight": "125", "grand_total": "3912"}, "notes": "Partial shipment allowed"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000092026-02-18537988PO-495781Printed CartonCRT-67014121682Kraft Paper RollKRAFT-22131755253Plastic SleeveSLV-890712844Warranty CardWAR-110187513505Corrugated DividerDIV-73161257506Instruction LeafletLEAF-55711101107Foam InsertFOM-5601550750743737501253912Partial shipment allowed"} +{"file_name": "package_00010.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Vertex Home Mart", "bill_to_address": "312 King Street, Seattle, WA 98104", "ship_to_name": "Vertex Home Mart", "ship_to_address": "810 Depot Road, Tacoma, WA 98421"}, "document": {"package_number": "PKG00010", "order_date": "2026-08-12", "sales_order_number": "555815", "po_number": "PO-45020"}, "items": [{"sr_no": "1", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "17", "unit_price": "10", "total_price": "170"}, {"sr_no": "2", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "1", "unit_price": "200", "total_price": "200"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "3", "unit_price": "30", "total_price": "90"}, {"sr_no": "4", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "8", "unit_price": "175", "total_price": "1400"}, {"sr_no": "5", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "20", "unit_price": "10", "total_price": "200"}, {"sr_no": "6", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "12", "unit_price": "250", "total_price": "3000"}, {"sr_no": "7", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "3", "unit_price": "40", "total_price": "120"}], "summary": {"total_quantity": "64", "sub_total": "5180", "tax": "0", "freight": "150", "grand_total": "5330"}, "notes": "Deliver during business hours"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000102026-08-12555815PO-450201Hang Tag BundleTAG-14917101702Corrugated DividerDIV-73112002003Custom Poly MailerPOLY-620330904Kraft Paper RollKRAFT-221817514005Return Label SheetRTN-50920102006Product ManualMAN-7801225030007Fragile Label SetFRG-11234012064518001505330Deliver during business hours"} +{"file_name": "package_00011.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00011", "order_date": "2026-04-07", "sales_order_number": "551182", "po_number": "PO-59250"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "1", "unit_price": "90", "total_price": "90"}, {"sr_no": "2", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "19", "unit_price": "50", "total_price": "950"}, {"sr_no": "3", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "15", "unit_price": "15", "total_price": "225"}, {"sr_no": "4", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "7", "unit_price": "150", "total_price": "1050"}, {"sr_no": "5", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "14", "unit_price": "10", "total_price": "140"}, {"sr_no": "6", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "16", "unit_price": "50", "total_price": "800"}], "summary": {"total_quantity": "72", "sub_total": "3255", "tax": "0", "freight": "200", "grand_total": "3455"}, "notes": "Customer signature required"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000112026-04-07551182PO-592501Instruction LeafletLEAF-557190902Return Label SheetRTN-50919509503Moisture Guard BagMGB-30915152254Fragile Label SetFRG-112715010505Custom Poly MailerPOLY-62014101406Barcode Sticker RollBAR-244165080072325502003455Customer signature required"} +{"file_name": "package_00012.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00012", "order_date": "2026-12-07", "sales_order_number": "502912", "po_number": "PO-69396"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "12", "unit_price": "30", "total_price": "360"}, {"sr_no": "2", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "2", "unit_price": "20", "total_price": "40"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "18", "unit_price": "10", "total_price": "180"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "10", "unit_price": "225", "total_price": "2250"}, {"sr_no": "5", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "4", "unit_price": "20", "total_price": "80"}, {"sr_no": "6", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "20", "unit_price": "250", "total_price": "5000"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "4", "unit_price": "10", "total_price": "40"}], "summary": {"total_quantity": "70", "sub_total": "7950", "tax": "100", "freight": "100", "grand_total": "8150"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000122026-12-07502912PO-693961Instruction LeafletLEAF-55712303602Documentation PouchDOC-872220403Barcode Sticker RollBAR-24418101804Packing TapeTAPE-3381022522505Security Seal StripSEC-401420806Fragile Label SetFRG-1122025050007Hang Tag BundleTAG-149410407079501001008150Do not stack above five cartons"} +{"file_name": "package_00013.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00013", "order_date": "2026-11-26", "sales_order_number": "529429", "po_number": "PO-68859"}, "items": [{"sr_no": "1", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "10", "unit_price": "90", "total_price": "900"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "17", "unit_price": "10", "total_price": "170"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "12", "unit_price": "10", "total_price": "120"}, {"sr_no": "4", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "18", "unit_price": "10", "total_price": "180"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "12", "unit_price": "225", "total_price": "2700"}], "summary": {"total_quantity": "69", "sub_total": "4070", "tax": "0", "freight": "150", "grand_total": "4220"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000132026-11-26529429PO-688591Fragile Label SetFRG-11210909002Die Cut InsertDCI-72517101703Printed CartonCRT-67012101204Shipping Label PackLBL-45018101805Foam InsertFOM-56012225270069407001504220Do not stack above five cartons"} +{"file_name": "package_00014.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00014", "order_date": "2026-02-21", "sales_order_number": "510202", "po_number": "PO-50171"}, "items": [{"sr_no": "1", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "2", "unit_price": "225", "total_price": "450"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "7", "unit_price": "30", "total_price": "210"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "2", "unit_price": "75", "total_price": "150"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "3", "unit_price": "30", "total_price": "90"}, {"sr_no": "5", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "19", "unit_price": "12", "total_price": "228"}], "summary": {"total_quantity": "33", "sub_total": "1128", "tax": "200", "freight": "0", "grand_total": "1328"}, "notes": "Priority delivery requested"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000142026-02-21510202PO-501711Invoice CopyINV-COPY22254502Die Cut InsertDCI-7257302103Printed CartonCRT-6702751504Ad DesignAD-DES-003330905Plastic SleeveSLV-890191222833112820001328Priority delivery requested"} +{"file_name": "package_00015.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00015", "order_date": "2026-04-14", "sales_order_number": "515017", "po_number": "PO-56552"}, "items": [{"sr_no": "1", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "1", "unit_price": "50", "total_price": "50"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "18", "unit_price": "15", "total_price": "270"}, {"sr_no": "3", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "12", "unit_price": "10", "total_price": "120"}], "summary": {"total_quantity": "31", "sub_total": "440", "tax": "0", "freight": "250", "grand_total": "690"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000152026-04-14515017PO-565521Die Cut InsertDCI-725150502Kraft Paper RollKRAFT-22118152703Gift Wrap SheetGFT-8121210120314400250690Shipment can be split by item line"} +{"file_name": "package_00016.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00016", "order_date": "2026-03-29", "sales_order_number": "503050", "po_number": "PO-62400"}, "items": [{"sr_no": "1", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "10", "unit_price": "15", "total_price": "150"}, {"sr_no": "2", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "3", "unit_price": "250", "total_price": "750"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "8", "unit_price": "225", "total_price": "1800"}], "summary": {"total_quantity": "30", "sub_total": "2880", "tax": "125", "freight": "125", "grand_total": "3130"}, "notes": "Priority delivery requested"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000162026-03-29503050PO-624001Packing Slip CopyPSC-39110151502Documentation PouchDOC-87232507503Custom Poly MailerPOLY-6209201804Barcode Sticker RollBAR-244822518003028801251253130Priority delivery requested"} +{"file_name": "package_00017.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00017", "order_date": "2026-07-12", "sales_order_number": "568788", "po_number": "PO-32360"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "17", "unit_price": "50", "total_price": "850"}, {"sr_no": "2", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "1", "unit_price": "30", "total_price": "30"}, {"sr_no": "3", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "19", "unit_price": "20", "total_price": "380"}], "summary": {"total_quantity": "37", "sub_total": "1260", "tax": "100", "freight": "300", "grand_total": "1660"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000172026-07-12568788PO-323601Pallet Label CardPAL-31817508502Hang Tag BundleTAG-149130303Security Seal StripSEC-40119203803712601003001660Do not stack above five cartons"} +{"file_name": "package_00018.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00018", "order_date": "2026-04-16", "sales_order_number": "551181", "po_number": "PO-49586"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "17", "unit_price": "12", "total_price": "204"}, {"sr_no": "2", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "17", "unit_price": "12", "total_price": "204"}, {"sr_no": "3", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "13", "unit_price": "75", "total_price": "975"}, {"sr_no": "4", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "13", "unit_price": "25", "total_price": "325"}, {"sr_no": "5", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "20", "unit_price": "40", "total_price": "800"}, {"sr_no": "6", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "14", "unit_price": "75", "total_price": "1050"}, {"sr_no": "7", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "9", "unit_price": "225", "total_price": "2025"}], "summary": {"total_quantity": "103", "sub_total": "5583", "tax": "200", "freight": "0", "grand_total": "5783"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000182026-04-16551181PO-495861Instruction LeafletLEAF-55717122042Corrugated DividerDIV-73117122043Packing TapeTAPE-33813759754Custom Poly MailerPOLY-62013253255Logo Sticker PackLOGO-75420408006Warranty CardWAR-110147510507Mailer Box SmallMBOX-SM92252025103558320005783Keep goods dry during transit"} +{"file_name": "package_00019.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00019", "order_date": "2026-10-23", "sales_order_number": "558868", "po_number": "PO-43571"}, "items": [{"sr_no": "1", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "18", "unit_price": "200", "total_price": "3600"}, {"sr_no": "2", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "15", "unit_price": "50", "total_price": "750"}, {"sr_no": "3", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "20", "unit_price": "250", "total_price": "5000"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "7", "unit_price": "125", "total_price": "875"}, {"sr_no": "5", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "3", "unit_price": "12", "total_price": "36"}, {"sr_no": "6", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "19", "unit_price": "250", "total_price": "4750"}, {"sr_no": "7", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "4", "unit_price": "40", "total_price": "160"}, {"sr_no": "8", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "17", "unit_price": "15", "total_price": "255"}], "summary": {"total_quantity": "103", "sub_total": "15426", "tax": "200", "freight": "200", "grand_total": "15826"}, "notes": "Contact buyer before final delivery"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000192026-10-23558868PO-435711Foam InsertFOM-5601820036002Hang Tag BundleTAG-14915507503Security Seal StripSEC-4012025050004Documentation PouchDOC-87271258755Gift Wrap SheetGFT-812312366Corner ProtectorCRN-0191925047507Ad DesignAD-DES-0034401608Kraft Paper RollKRAFT-22117152551031542620020015826Contact buyer before final delivery"} +{"file_name": "package_00020.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00020", "order_date": "2026-09-29", "sales_order_number": "504138", "po_number": "PO-68874"}, "items": [{"sr_no": "1", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "9", "unit_price": "75", "total_price": "675"}, {"sr_no": "2", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "13", "unit_price": "60", "total_price": "780"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "17", "unit_price": "175", "total_price": "2975"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "12", "unit_price": "40", "total_price": "480"}], "summary": {"total_quantity": "51", "sub_total": "4910", "tax": "0", "freight": "75", "grand_total": "4985"}, "notes": "Handle cartons with care"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000202026-09-29504138PO-688741Documentation PouchDOC-8729756752Mailer Box LargeMBOX-LG13607803Mailer Box SmallMBOX-SM1717529754Instruction LeafletLEAF-55712404805149100754985Handle cartons with care"} +{"file_name": "package_00021.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00021", "order_date": "2026-10-03", "sales_order_number": "527788", "po_number": "PO-61050"}, "items": [{"sr_no": "1", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "4", "unit_price": "30", "total_price": "120"}, {"sr_no": "2", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "18", "unit_price": "175", "total_price": "3150"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "3", "unit_price": "90", "total_price": "270"}, {"sr_no": "4", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "6", "unit_price": "60", "total_price": "360"}, {"sr_no": "5", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "9", "unit_price": "90", "total_price": "810"}], "summary": {"total_quantity": "40", "sub_total": "4710", "tax": "0", "freight": "300", "grand_total": "5010"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000212026-10-03527788PO-610501Foam InsertFOM-5604301202Shipping Label PackLBL-4501817531503Mailer Box SmallMBOX-SM3902704Pallet Label CardPAL-3186603605Printed CartonCRT-67099081040471003005010Do not stack above five cartons"} +{"file_name": "package_00022.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00022", "order_date": "2026-06-30", "sales_order_number": "548998", "po_number": "PO-48644"}, "items": [{"sr_no": "1", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "17", "unit_price": "125", "total_price": "2125"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "15", "unit_price": "250", "total_price": "3750"}, {"sr_no": "4", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "18", "unit_price": "125", "total_price": "2250"}, {"sr_no": "5", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "16", "unit_price": "20", "total_price": "320"}], "summary": {"total_quantity": "75", "sub_total": "8625", "tax": "0", "freight": "75", "grand_total": "8700"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000222026-06-30548998PO-486441Packing Slip CopyPSC-3911712521252Mailer Box SmallMBOX-SM9201803Printed CartonCRT-6701525037504Mailer Box LargeMBOX-LG1812522505Invoice CopyINV-COPY16203207586250758700Keep goods dry during transit"} +{"file_name": "package_00023.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00023", "order_date": "2026-09-30", "sales_order_number": "565617", "po_number": "PO-52249"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "18", "unit_price": "12", "total_price": "216"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "15", "unit_price": "15", "total_price": "225"}, {"sr_no": "3", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "8", "unit_price": "15", "total_price": "120"}, {"sr_no": "4", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "14", "unit_price": "10", "total_price": "140"}, {"sr_no": "5", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "10", "unit_price": "250", "total_price": "2500"}], "summary": {"total_quantity": "65", "sub_total": "3201", "tax": "150", "freight": "250", "grand_total": "3601"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000232026-09-30565617PO-522491Instruction LeafletLEAF-55718122162Kraft Paper RollKRAFT-22115152253Plastic SleeveSLV-8908151204Fragile Label SetFRG-11214101405Packing Slip CopyPSC-3911025025006532011502503601Verify carton count before dispatch"} +{"file_name": "package_00024.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00024", "order_date": "2026-06-23", "sales_order_number": "505276", "po_number": "PO-34489"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "6", "unit_price": "25", "total_price": "150"}, {"sr_no": "2", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "16", "unit_price": "50", "total_price": "800"}, {"sr_no": "3", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "10", "unit_price": "12", "total_price": "120"}, {"sr_no": "4", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "12", "unit_price": "225", "total_price": "2700"}, {"sr_no": "5", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "2", "unit_price": "60", "total_price": "120"}, {"sr_no": "6", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "16", "unit_price": "250", "total_price": "4000"}, {"sr_no": "7", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "20", "unit_price": "60", "total_price": "1200"}], "summary": {"total_quantity": "82", "sub_total": "9090", "tax": "0", "freight": "150", "grand_total": "9240"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000242026-06-23505276PO-344891Gift Wrap SheetGFT-8126251502Packing Slip CopyPSC-39116508003Packing TapeTAPE-33810121204Pallet Label CardPAL-3181222527005Printed CartonCRT-6702601206Mailer Box SmallMBOX-SM1625040007Instruction LeafletLEAF-5572060120082909001509240Use dock entrance for unloading"} +{"file_name": "package_00025.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Vertex Home Mart", "bill_to_address": "312 King Street, Seattle, WA 98104", "ship_to_name": "Vertex Home Mart", "ship_to_address": "810 Depot Road, Tacoma, WA 98421"}, "document": {"package_number": "PKG00025", "order_date": "2026-09-30", "sales_order_number": "529048", "po_number": "PO-68337"}, "items": [{"sr_no": "1", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "7", "unit_price": "125", "total_price": "875"}, {"sr_no": "2", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "17", "unit_price": "15", "total_price": "255"}, {"sr_no": "3", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "18", "unit_price": "200", "total_price": "3600"}], "summary": {"total_quantity": "42", "sub_total": "4730", "tax": "125", "freight": "50", "grand_total": "4905"}, "notes": "Contact buyer before final delivery"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000252026-09-30529048PO-683371Fragile Label SetFRG-11271258752Barcode Sticker RollBAR-24417152553Plastic SleeveSLV-890182003600424730125504905Contact buyer before final delivery"} +{"file_name": "package_00026.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00026", "order_date": "2026-10-22", "sales_order_number": "559602", "po_number": "PO-39219"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "16", "unit_price": "175", "total_price": "2800"}, {"sr_no": "2", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "16", "unit_price": "15", "total_price": "240"}, {"sr_no": "3", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "12", "unit_price": "100", "total_price": "1200"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "16", "unit_price": "60", "total_price": "960"}, {"sr_no": "5", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "6", "unit_price": "12", "total_price": "72"}, {"sr_no": "6", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "19", "unit_price": "10", "total_price": "190"}], "summary": {"total_quantity": "85", "sub_total": "5462", "tax": "125", "freight": "75", "grand_total": "5662"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000262026-10-22559602PO-392191Mailer Box LargeMBOX-LG1617528002Barcode Sticker RollBAR-24416152403Security Seal StripSEC-4011210012004Ad DesignAD-DES-00316609605Corner ProtectorCRN-019612726Gift Wrap SheetGFT-8121910190855462125755662Shipment can be split by item line"} +{"file_name": "package_00027.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Vertex Home Mart", "bill_to_address": "312 King Street, Seattle, WA 98104", "ship_to_name": "Vertex Home Mart", "ship_to_address": "810 Depot Road, Tacoma, WA 98421"}, "document": {"package_number": "PKG00027", "order_date": "2026-02-22", "sales_order_number": "513095", "po_number": "PO-57723"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "13", "unit_price": "200", "total_price": "2600"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "8", "unit_price": "250", "total_price": "2000"}, {"sr_no": "3", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "5", "unit_price": "50", "total_price": "250"}, {"sr_no": "4", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "1", "unit_price": "200", "total_price": "200"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "3", "unit_price": "12", "total_price": "36"}, {"sr_no": "6", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "3", "unit_price": "200", "total_price": "600"}, {"sr_no": "7", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "4", "unit_price": "90", "total_price": "360"}], "summary": {"total_quantity": "37", "sub_total": "6046", "tax": "0", "freight": "0", "grand_total": "6046"}, "notes": "Customer signature required"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000272026-02-22513095PO-577231Printed CartonCRT-6701320026002Thermal Label RollTHR-612825020003Ad DesignAD-DES-0035502504Plastic SleeveSLV-89012002005Foam InsertFOM-560312366Product ManualMAN-78032006007Barcode Sticker RollBAR-244490360376046006046Customer signature required"} +{"file_name": "package_00028.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00028", "order_date": "2026-01-18", "sales_order_number": "530579", "po_number": "PO-33950"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "14", "unit_price": "12", "total_price": "168"}, {"sr_no": "2", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "10", "unit_price": "125", "total_price": "1250"}, {"sr_no": "3", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "4", "unit_price": "12", "total_price": "48"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "13", "unit_price": "60", "total_price": "780"}], "summary": {"total_quantity": "41", "sub_total": "2246", "tax": "100", "freight": "75", "grand_total": "2421"}, "notes": "Priority delivery requested"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000282026-01-18530579PO-339501Mailer Box LargeMBOX-LG14121682Packing Slip CopyPSC-3911012512503Bubble Wrap RollBUB-908412484Barcode Sticker RollBAR-2441360780412246100752421Priority delivery requested"} +{"file_name": "package_00029.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00029", "order_date": "2026-07-04", "sales_order_number": "541895", "po_number": "PO-50678"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "19", "unit_price": "90", "total_price": "1710"}, {"sr_no": "2", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "19", "unit_price": "25", "total_price": "475"}, {"sr_no": "3", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "20", "unit_price": "15", "total_price": "300"}, {"sr_no": "4", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "7", "unit_price": "50", "total_price": "350"}, {"sr_no": "5", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "16", "unit_price": "200", "total_price": "3200"}], "summary": {"total_quantity": "81", "sub_total": "6035", "tax": "100", "freight": "300", "grand_total": "6435"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000292026-07-04541895PO-506781Mailer Box SmallMBOX-SM199017102Thermal Label RollTHR-61219254753Packing TapeTAPE-33820153004Bubble Wrap RollBUB-9087503505Hang Tag BundleTAG-1491620032008160351003006435Use dock entrance for unloading"} +{"file_name": "package_00030.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00030", "order_date": "2026-08-31", "sales_order_number": "510007", "po_number": "PO-40068"}, "items": [{"sr_no": "1", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "13", "unit_price": "12", "total_price": "156"}, {"sr_no": "2", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "18", "unit_price": "225", "total_price": "4050"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "15", "unit_price": "75", "total_price": "1125"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "19", "unit_price": "20", "total_price": "380"}, {"sr_no": "5", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "18", "unit_price": "75", "total_price": "1350"}, {"sr_no": "6", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "9", "unit_price": "225", "total_price": "2025"}, {"sr_no": "7", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "11", "unit_price": "50", "total_price": "550"}], "summary": {"total_quantity": "103", "sub_total": "9636", "tax": "0", "freight": "200", "grand_total": "9836"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000302026-08-31510007PO-400681Warranty CardWAR-11013121562Invoice CopyINV-COPY1822540503Instruction LeafletLEAF-557157511254Packing TapeTAPE-33819203805Corrugated DividerDIV-731187513506Logo Sticker PackLOGO-754922520257Printed CartonCRT-6701150550103963602009836Attach invoice copy to shipment"} +{"file_name": "package_00031.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00031", "order_date": "2026-01-20", "sales_order_number": "526488", "po_number": "PO-39782"}, "items": [{"sr_no": "1", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "10", "unit_price": "40", "total_price": "400"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "6", "unit_price": "40", "total_price": "240"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "5", "unit_price": "15", "total_price": "75"}], "summary": {"total_quantity": "21", "sub_total": "715", "tax": "0", "freight": "200", "grand_total": "915"}, "notes": "Customer signature required"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000312026-01-20526488PO-397821Corner ProtectorCRN-01910404002Printed CartonCRT-6706402403Barcode Sticker RollBAR-24451575217150200915Customer signature required"} +{"file_name": "package_00032.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00032", "order_date": "2026-03-31", "sales_order_number": "577345", "po_number": "PO-35175"}, "items": [{"sr_no": "1", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "11", "unit_price": "175", "total_price": "1925"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "100", "total_price": "1800"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "12", "unit_price": "250", "total_price": "3000"}, {"sr_no": "4", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "20", "unit_price": "225", "total_price": "4500"}, {"sr_no": "5", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "16", "unit_price": "25", "total_price": "400"}, {"sr_no": "6", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "7", "unit_price": "90", "total_price": "630"}, {"sr_no": "7", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "7", "unit_price": "75", "total_price": "525"}, {"sr_no": "8", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "4", "unit_price": "250", "total_price": "1000"}], "summary": {"total_quantity": "95", "sub_total": "13780", "tax": "100", "freight": "50", "grand_total": "13930"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000322026-03-31577345PO-351751Die Cut InsertDCI-7251117519252Printed CartonCRT-6701810018003Instruction LeafletLEAF-5571225030004Packing Slip CopyPSC-3912022545005Thermal Label RollTHR-61216254006Corner ProtectorCRN-0197906307Fragile Label SetFRG-1127755258Foam InsertFOM-5604250100095137801005013930Attach invoice copy to shipment"} +{"file_name": "package_00033.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00033", "order_date": "2026-06-07", "sales_order_number": "588754", "po_number": "PO-52814"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "8", "unit_price": "25", "total_price": "200"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "15", "unit_price": "20", "total_price": "300"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "12", "unit_price": "20", "total_price": "240"}, {"sr_no": "4", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "8", "unit_price": "225", "total_price": "1800"}, {"sr_no": "5", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "18", "unit_price": "175", "total_price": "3150"}, {"sr_no": "6", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "19", "unit_price": "75", "total_price": "1425"}, {"sr_no": "7", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "17", "unit_price": "90", "total_price": "1530"}, {"sr_no": "8", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "6", "unit_price": "30", "total_price": "180"}], "summary": {"total_quantity": "103", "sub_total": "8825", "tax": "200", "freight": "100", "grand_total": "9125"}, "notes": "Customer signature required"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000332026-06-07588754PO-528141Logo Sticker PackLOGO-7548252002Die Cut InsertDCI-72515203003Custom Poly MailerPOLY-62012202404Gift Wrap SheetGFT-812822518005Pallet Label CardPAL-3181817531506Hang Tag BundleTAG-149197514257Printed CartonCRT-670179015308Packing TapeTAPE-33863018010388252001009125Customer signature required"} +{"file_name": "package_00034.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00034", "order_date": "2026-05-15", "sales_order_number": "525687", "po_number": "PO-62847"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "16", "unit_price": "12", "total_price": "192"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "17", "unit_price": "15", "total_price": "255"}, {"sr_no": "3", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "11", "unit_price": "250", "total_price": "2750"}, {"sr_no": "4", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "4", "unit_price": "20", "total_price": "80"}, {"sr_no": "5", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "16", "unit_price": "175", "total_price": "2800"}, {"sr_no": "6", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "10", "unit_price": "12", "total_price": "120"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "16", "unit_price": "200", "total_price": "3200"}], "summary": {"total_quantity": "90", "sub_total": "9397", "tax": "100", "freight": "150", "grand_total": "9647"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000342026-05-15525687PO-628471Mailer Box SmallMBOX-SM16121922Corner ProtectorCRN-01917152553Shipping Label PackLBL-4501125027504Plastic SleeveSLV-890420805Printed CartonCRT-6701617528006Kraft Paper RollKRAFT-22110121207Hang Tag BundleTAG-1491620032009093971001509647Shipment can be split by item line"} +{"file_name": "package_00035.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00035", "order_date": "2026-07-24", "sales_order_number": "501761", "po_number": "PO-63272"}, "items": [{"sr_no": "1", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "1", "unit_price": "100", "total_price": "100"}, {"sr_no": "2", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "11", "unit_price": "175", "total_price": "1925"}, {"sr_no": "3", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "10", "unit_price": "125", "total_price": "1250"}, {"sr_no": "4", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "10", "unit_price": "200", "total_price": "2000"}, {"sr_no": "5", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "14", "unit_price": "200", "total_price": "2800"}, {"sr_no": "6", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "7", "unit_price": "200", "total_price": "1400"}], "summary": {"total_quantity": "53", "sub_total": "9475", "tax": "150", "freight": "150", "grand_total": "9775"}, "notes": "Priority delivery requested"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000352026-07-24501761PO-632721Packing Slip CopyPSC-39111001002Gift Wrap SheetGFT-8121117519253Corrugated DividerDIV-7311012512504Custom Poly MailerPOLY-6201020020005Packing TapeTAPE-3381420028006Corner ProtectorCRN-019720014005394751501509775Priority delivery requested"} +{"file_name": "package_00036.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00036", "order_date": "2026-06-10", "sales_order_number": "584987", "po_number": "PO-30517"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "16", "unit_price": "225", "total_price": "3600"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "19", "unit_price": "20", "total_price": "380"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "17", "unit_price": "20", "total_price": "340"}, {"sr_no": "4", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "11", "unit_price": "40", "total_price": "440"}, {"sr_no": "5", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "1", "unit_price": "90", "total_price": "90"}, {"sr_no": "6", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "7", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "19", "unit_price": "225", "total_price": "4275"}, {"sr_no": "8", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "16", "unit_price": "100", "total_price": "1600"}], "summary": {"total_quantity": "108", "sub_total": "10905", "tax": "100", "freight": "100", "grand_total": "11105"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000362026-06-10584987PO-305171Kraft Paper RollKRAFT-2211622536002Printed CartonCRT-67019203803Documentation PouchDOC-87217203404Bubble Wrap RollBUB-90811404405Ad DesignAD-DES-003190906Plastic SleeveSLV-8909201807Shipping Label PackLBL-4501922542758Packing Slip CopyPSC-3911610016001081090510010011105Keep goods dry during transit"} +{"file_name": "package_00037.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00037", "order_date": "2026-03-31", "sales_order_number": "547748", "po_number": "PO-41995"}, "items": [{"sr_no": "1", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "20", "unit_price": "15", "total_price": "300"}, {"sr_no": "2", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "9", "unit_price": "40", "total_price": "360"}, {"sr_no": "3", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "17", "unit_price": "25", "total_price": "425"}], "summary": {"total_quantity": "46", "sub_total": "1085", "tax": "0", "freight": "75", "grand_total": "1160"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000372026-03-31547748PO-419951Bubble Wrap RollBUB-90820153002Shipping Label PackLBL-4509403603Corner ProtectorCRN-01917254254610850751160Verify carton count before dispatch"} +{"file_name": "package_00038.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00038", "order_date": "2026-02-04", "sales_order_number": "586793", "po_number": "PO-32806"}, "items": [{"sr_no": "1", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "6", "unit_price": "10", "total_price": "60"}, {"sr_no": "2", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "10", "unit_price": "10", "total_price": "100"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "8", "unit_price": "50", "total_price": "400"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "15", "unit_price": "100", "total_price": "1500"}, {"sr_no": "5", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "19", "unit_price": "125", "total_price": "2375"}, {"sr_no": "6", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "4", "unit_price": "40", "total_price": "160"}], "summary": {"total_quantity": "62", "sub_total": "4595", "tax": "150", "freight": "300", "grand_total": "5045"}, "notes": "Deliver during business hours"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000382026-02-04586793PO-328061Instruction LeafletLEAF-557610602Bubble Wrap RollBUB-90810101003Barcode Sticker RollBAR-2448504004Packing TapeTAPE-3381510015005Shipping Label PackLBL-4501912523756Die Cut InsertDCI-7254401606245951503005045Deliver during business hours"} +{"file_name": "package_00039.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00039", "order_date": "2026-06-07", "sales_order_number": "511838", "po_number": "PO-52104"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "7", "unit_price": "75", "total_price": "525"}, {"sr_no": "2", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "8", "unit_price": "15", "total_price": "120"}, {"sr_no": "3", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "2", "unit_price": "50", "total_price": "100"}, {"sr_no": "4", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "10", "unit_price": "250", "total_price": "2500"}, {"sr_no": "5", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "11", "unit_price": "50", "total_price": "550"}, {"sr_no": "6", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "1", "unit_price": "100", "total_price": "100"}, {"sr_no": "7", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "2", "unit_price": "40", "total_price": "80"}], "summary": {"total_quantity": "41", "sub_total": "3975", "tax": "100", "freight": "75", "grand_total": "4150"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000392026-06-07511838PO-521041Logo Sticker PackLOGO-7547755252Security Seal StripSEC-4018151203Product ManualMAN-7802501004Warranty CardWAR-1101025025005Invoice CopyINV-COPY11505506Printed CartonCRT-67011001007Thermal Label RollTHR-61224080413975100754150Shipment can be split by item line"} +{"file_name": "package_00040.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Northline Supplies", "address": "7455 Drew Court, White City, KS 66872", "phone_number": "+91-88390-36062"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00040", "order_date": "2026-03-31", "sales_order_number": "569906", "po_number": "PO-47298"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "11", "unit_price": "10", "total_price": "110"}, {"sr_no": "2", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "13", "unit_price": "250", "total_price": "3250"}, {"sr_no": "3", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "7", "unit_price": "225", "total_price": "1575"}, {"sr_no": "4", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "6", "unit_price": "225", "total_price": "1350"}, {"sr_no": "5", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "15", "unit_price": "10", "total_price": "150"}, {"sr_no": "6", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "10", "unit_price": "200", "total_price": "2000"}, {"sr_no": "7", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "6", "unit_price": "125", "total_price": "750"}, {"sr_no": "8", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "17", "unit_price": "12", "total_price": "204"}], "summary": {"total_quantity": "85", "sub_total": "9389", "tax": "0", "freight": "200", "grand_total": "9589"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000402026-03-31569906PO-472981Printed CartonCRT-67011101102Hang Tag BundleTAG-1491325032503Foam InsertFOM-560722515754Product ManualMAN-780622513505Warranty CardWAR-11015101506Fragile Label SetFRG-1121020020007Packing TapeTAPE-33861257508Packing Slip CopyPSC-391171220485938902009589Keep goods dry during transit"} +{"file_name": "package_00041.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00041", "order_date": "2026-03-26", "sales_order_number": "548558", "po_number": "PO-41281"}, "items": [{"sr_no": "1", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "12", "unit_price": "200", "total_price": "2400"}, {"sr_no": "2", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "7", "unit_price": "250", "total_price": "1750"}, {"sr_no": "3", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "6", "unit_price": "60", "total_price": "360"}, {"sr_no": "5", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "12", "unit_price": "15", "total_price": "180"}, {"sr_no": "6", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "11", "unit_price": "125", "total_price": "1375"}, {"sr_no": "7", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "10", "unit_price": "25", "total_price": "250"}], "summary": {"total_quantity": "67", "sub_total": "6495", "tax": "0", "freight": "100", "grand_total": "6595"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000412026-03-26548558PO-412811Plastic SleeveSLV-8901220024002Return Label SheetRTN-509725017503Gift Wrap SheetGFT-8129201804Documentation PouchDOC-8726603605Kraft Paper RollKRAFT-22112151806Warranty CardWAR-1101112513757Ad DesignAD-DES-003102525067649501006595Verify carton count before dispatch"} +{"file_name": "package_00042.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00042", "order_date": "2026-07-09", "sales_order_number": "557181", "po_number": "PO-51097"}, "items": [{"sr_no": "1", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "1", "unit_price": "12", "total_price": "12"}, {"sr_no": "2", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "6", "unit_price": "12", "total_price": "72"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "18", "unit_price": "90", "total_price": "1620"}, {"sr_no": "4", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "7", "unit_price": "20", "total_price": "140"}, {"sr_no": "5", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "18", "unit_price": "90", "total_price": "1620"}, {"sr_no": "6", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "9", "unit_price": "200", "total_price": "1800"}, {"sr_no": "7", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "10", "unit_price": "250", "total_price": "2500"}, {"sr_no": "8", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "7", "unit_price": "20", "total_price": "140"}], "summary": {"total_quantity": "76", "sub_total": "7904", "tax": "50", "freight": "50", "grand_total": "8004"}, "notes": "Customer signature required"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000422026-07-09557181PO-510971Return Label SheetRTN-509112122Corrugated DividerDIV-731612723Printed CartonCRT-670189016204Foam InsertFOM-5607201405Plastic SleeveSLV-890189016206Thermal Label RollTHR-612920018007Ad DesignAD-DES-0031025025008Mailer Box SmallMBOX-SM72014076790450508004Customer signature required"} +{"file_name": "package_00043.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00043", "order_date": "2026-11-29", "sales_order_number": "597528", "po_number": "PO-32041"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "11", "unit_price": "125", "total_price": "1375"}, {"sr_no": "2", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "6", "unit_price": "12", "total_price": "72"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "2", "unit_price": "75", "total_price": "150"}, {"sr_no": "4", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "3", "unit_price": "25", "total_price": "75"}, {"sr_no": "5", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "5", "unit_price": "20", "total_price": "100"}, {"sr_no": "6", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "5", "unit_price": "50", "total_price": "250"}, {"sr_no": "7", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "20", "unit_price": "20", "total_price": "400"}, {"sr_no": "8", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "13", "unit_price": "40", "total_price": "520"}], "summary": {"total_quantity": "65", "sub_total": "2942", "tax": "0", "freight": "0", "grand_total": "2942"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000432026-11-29597528PO-320411Kraft Paper RollKRAFT-2211112513752Custom Poly MailerPOLY-620612723Die Cut InsertDCI-7252751504Security Seal StripSEC-401325755Documentation PouchDOC-8725201006Corrugated DividerDIV-7315502507Moisture Guard BagMGB-30920204008Plastic SleeveSLV-8901340520652942002942Verify carton count before dispatch"} +{"file_name": "package_00044.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00044", "order_date": "2026-04-02", "sales_order_number": "527142", "po_number": "PO-34495"}, "items": [{"sr_no": "1", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "5", "unit_price": "175", "total_price": "875"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "4", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "9", "unit_price": "15", "total_price": "135"}, {"sr_no": "5", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "19", "unit_price": "12", "total_price": "228"}, {"sr_no": "6", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "4", "unit_price": "15", "total_price": "60"}, {"sr_no": "7", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "7", "unit_price": "200", "total_price": "1400"}], "summary": {"total_quantity": "56", "sub_total": "3253", "tax": "150", "freight": "300", "grand_total": "3703"}, "notes": "Deliver during business hours"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000442026-04-02527142PO-344951Product ManualMAN-78051758752Fragile Label SetFRG-11231253753Custom Poly MailerPOLY-6209201804Bubble Wrap RollBUB-9089151355Thermal Label RollTHR-61219122286Mailer Box SmallMBOX-SM415607Packing Slip CopyPSC-391720014005632531503003703Deliver during business hours"} +{"file_name": "package_00045.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00045", "order_date": "2026-01-19", "sales_order_number": "512263", "po_number": "PO-35279"}, "items": [{"sr_no": "1", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "20", "unit_price": "25", "total_price": "500"}, {"sr_no": "2", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "16", "unit_price": "30", "total_price": "480"}, {"sr_no": "3", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "11", "unit_price": "30", "total_price": "330"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "6", "unit_price": "175", "total_price": "1050"}, {"sr_no": "5", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "19", "unit_price": "225", "total_price": "4275"}, {"sr_no": "6", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "11", "unit_price": "200", "total_price": "2200"}, {"sr_no": "7", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "1", "unit_price": "10", "total_price": "10"}], "summary": {"total_quantity": "84", "sub_total": "8845", "tax": "0", "freight": "150", "grand_total": "8995"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000452026-01-19512263PO-352791Documentation PouchDOC-87220255002Security Seal StripSEC-40116304803Invoice CopyINV-COPY11303304Barcode Sticker RollBAR-244617510505Bubble Wrap RollBUB-9081922542756Gift Wrap SheetGFT-8121120022007Mailer Box SmallMBOX-SM1101084884501508995Verify carton count before dispatch"} +{"file_name": "package_00046.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00046", "order_date": "2026-10-28", "sales_order_number": "582469", "po_number": "PO-38719"}, "items": [{"sr_no": "1", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "10", "unit_price": "90", "total_price": "900"}, {"sr_no": "2", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "15", "unit_price": "75", "total_price": "1125"}, {"sr_no": "3", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "1", "unit_price": "175", "total_price": "175"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "2", "unit_price": "90", "total_price": "180"}], "summary": {"total_quantity": "28", "sub_total": "2380", "tax": "0", "freight": "250", "grand_total": "2630"}, "notes": "Partial shipment allowed"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000462026-10-28582469PO-387191Security Seal StripSEC-40110909002Return Label SheetRTN-509157511253Invoice CopyINV-COPY11751754Ad DesignAD-DES-00329018028238002502630Partial shipment allowed"} +{"file_name": "package_00047.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00047", "order_date": "2026-11-30", "sales_order_number": "563388", "po_number": "PO-43749"}, "items": [{"sr_no": "1", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "18", "unit_price": "40", "total_price": "720"}, {"sr_no": "2", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "1", "unit_price": "20", "total_price": "20"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "6", "unit_price": "15", "total_price": "90"}, {"sr_no": "4", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "6", "unit_price": "150", "total_price": "900"}, {"sr_no": "5", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "6", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "18", "unit_price": "50", "total_price": "900"}], "summary": {"total_quantity": "52", "sub_total": "3005", "tax": "50", "freight": "100", "grand_total": "3155"}, "notes": "Priority delivery requested"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000472026-11-30563388PO-437491Barcode Sticker RollBAR-24418407202Mailer Box LargeMBOX-LG120203Documentation PouchDOC-872615904Hang Tag BundleTAG-14961509005Packing TapeTAPE-33831253756Logo Sticker PackLOGO-7541850900523005501003155Priority delivery requested"} +{"file_name": "package_00048.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00048", "order_date": "2026-08-26", "sales_order_number": "512410", "po_number": "PO-32606"}, "items": [{"sr_no": "1", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "18", "unit_price": "10", "total_price": "180"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "8", "unit_price": "75", "total_price": "600"}, {"sr_no": "3", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "15", "unit_price": "100", "total_price": "1500"}, {"sr_no": "4", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "18", "unit_price": "200", "total_price": "3600"}, {"sr_no": "5", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "17", "unit_price": "100", "total_price": "1700"}, {"sr_no": "6", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "4", "unit_price": "10", "total_price": "40"}, {"sr_no": "7", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "3", "unit_price": "60", "total_price": "180"}, {"sr_no": "8", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "3", "unit_price": "40", "total_price": "120"}], "summary": {"total_quantity": "86", "sub_total": "7920", "tax": "100", "freight": "150", "grand_total": "8170"}, "notes": "Deliver during business hours"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000482026-08-26512410PO-326061Return Label SheetRTN-50918101802Die Cut InsertDCI-7258756003Ad DesignAD-DES-0031510015004Logo Sticker PackLOGO-7541820036005Gift Wrap SheetGFT-8121710017006Fragile Label SetFRG-112410407Packing TapeTAPE-3383601808Shipping Label PackLBL-4503401208679201001508170Deliver during business hours"} +{"file_name": "package_00049.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Northline Supplies", "address": "7455 Drew Court, White City, KS 66872", "phone_number": "+91-88390-36062"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00049", "order_date": "2026-06-26", "sales_order_number": "526427", "po_number": "PO-49523"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "14", "unit_price": "25", "total_price": "350"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "9", "unit_price": "200", "total_price": "1800"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "14", "unit_price": "200", "total_price": "2800"}, {"sr_no": "4", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "16", "unit_price": "25", "total_price": "400"}, {"sr_no": "5", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "15", "unit_price": "200", "total_price": "3000"}, {"sr_no": "6", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "10", "unit_price": "225", "total_price": "2250"}], "summary": {"total_quantity": "78", "sub_total": "10600", "tax": "200", "freight": "200", "grand_total": "11000"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000492026-06-26526427PO-495231Pallet Label CardPAL-31814253502Corner ProtectorCRN-019920018003Barcode Sticker RollBAR-2441420028004Thermal Label RollTHR-61216254005Fragile Label SetFRG-1121520030006Warranty CardWAR-110102252250781060020020011000Shipment can be split by item line"} +{"file_name": "package_00050.png", "split": "train", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00050", "order_date": "2026-04-27", "sales_order_number": "514992", "po_number": "PO-47284"}, "items": [{"sr_no": "1", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "13", "unit_price": "250", "total_price": "3250"}, {"sr_no": "2", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "8", "unit_price": "25", "total_price": "200"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "14", "unit_price": "125", "total_price": "1750"}], "summary": {"total_quantity": "35", "sub_total": "5200", "tax": "200", "freight": "75", "grand_total": "5475"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000502026-04-27514992PO-472841Packing TapeTAPE-3381325032502Moisture Guard BagMGB-3098252003Documentation PouchDOC-872141251750355200200755475Use dock entrance for unloading"} diff --git a/train/metadata.jsonl b/train/metadata.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..62ed90912d6621ec8ac7fe96482ebaf4a266abd1 --- /dev/null +++ b/train/metadata.jsonl @@ -0,0 +1,50 @@ +{"file_name": "package_00001.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00001\", \"order_date\": \"2026-06-10\", \"sales_order_number\": \"566846\", \"po_number\": \"PO-68696\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"20\", \"unit_price\": \"75\", \"total_price\": \"1500\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"17\", \"unit_price\": \"30\", \"total_price\": \"510\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}], \"summary\": {\"total_quantity\": \"43\", \"sub_total\": \"2082\", \"tax\": \"50\", \"freight\": \"300\", \"grand_total\": \"2432\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00002.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00002\", \"order_date\": \"2026-09-30\", \"sales_order_number\": \"566207\", \"po_number\": \"PO-65979\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"16\", \"unit_price\": \"90\", \"total_price\": \"1440\"}, {\"sr_no\": \"2\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"18\", \"unit_price\": \"90\", \"total_price\": \"1620\"}, {\"sr_no\": \"3\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"7\", \"unit_price\": \"15\", \"total_price\": \"105\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"4\", \"unit_price\": \"75\", \"total_price\": \"300\"}], \"summary\": {\"total_quantity\": \"45\", \"sub_total\": \"3465\", \"tax\": \"100\", \"freight\": \"300\", \"grand_total\": \"3865\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00003.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00003\", \"order_date\": \"2026-01-28\", \"sales_order_number\": \"512460\", \"po_number\": \"PO-63766\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"8\", \"unit_price\": \"30\", \"total_price\": \"240\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"4\", \"unit_price\": \"25\", \"total_price\": \"100\"}, {\"sr_no\": \"3\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"2\", \"unit_price\": \"200\", \"total_price\": \"400\"}, {\"sr_no\": \"4\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"6\", \"unit_price\": \"250\", \"total_price\": \"1500\"}, {\"sr_no\": \"5\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"14\", \"unit_price\": \"12\", \"total_price\": \"168\"}, {\"sr_no\": \"6\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"8\", \"unit_price\": \"125\", \"total_price\": \"1000\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"3508\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"3708\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00004.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00004\", \"order_date\": \"2026-11-09\", \"sales_order_number\": \"572530\", \"po_number\": \"PO-44782\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"10\", \"unit_price\": \"250\", \"total_price\": \"2500\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"8\", \"unit_price\": \"20\", \"total_price\": \"160\"}, {\"sr_no\": \"3\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"2\", \"unit_price\": \"12\", \"total_price\": \"24\"}, {\"sr_no\": \"4\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"11\", \"unit_price\": \"150\", \"total_price\": \"1650\"}, {\"sr_no\": \"5\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"10\", \"total_price\": \"120\"}], \"summary\": {\"total_quantity\": \"43\", \"sub_total\": \"4454\", \"tax\": \"150\", \"freight\": \"75\", \"grand_total\": \"4679\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00005.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00005\", \"order_date\": \"2026-08-08\", \"sales_order_number\": \"598877\", \"po_number\": \"PO-35537\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"7\", \"unit_price\": \"25\", \"total_price\": \"175\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"1\", \"unit_price\": \"60\", \"total_price\": \"60\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"20\", \"unit_price\": \"60\", \"total_price\": \"1200\"}, {\"sr_no\": \"5\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"16\", \"unit_price\": \"20\", \"total_price\": \"320\"}, {\"sr_no\": \"6\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"13\", \"unit_price\": \"200\", \"total_price\": \"2600\"}, {\"sr_no\": \"7\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"7\", \"unit_price\": \"30\", \"total_price\": \"210\"}, {\"sr_no\": \"8\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"3\", \"unit_price\": \"200\", \"total_price\": \"600\"}], \"summary\": {\"total_quantity\": \"68\", \"sub_total\": \"5265\", \"tax\": \"100\", \"freight\": \"150\", \"grand_total\": \"5515\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00006.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00006\", \"order_date\": \"2026-07-29\", \"sales_order_number\": \"583075\", \"po_number\": \"PO-62403\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"11\", \"unit_price\": \"25\", \"total_price\": \"275\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"17\", \"unit_price\": \"30\", \"total_price\": \"510\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"50\", \"total_price\": \"500\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"12\", \"unit_price\": \"10\", \"total_price\": \"120\"}, {\"sr_no\": \"5\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"6\", \"unit_price\": \"15\", \"total_price\": \"90\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"15\", \"unit_price\": \"100\", \"total_price\": \"1500\"}], \"summary\": {\"total_quantity\": \"71\", \"sub_total\": \"2995\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"3195\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00007.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00007\", \"order_date\": \"2026-11-06\", \"sales_order_number\": \"533032\", \"po_number\": \"PO-52212\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"8\", \"unit_price\": \"50\", \"total_price\": \"400\"}, {\"sr_no\": \"2\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"15\", \"unit_price\": \"125\", \"total_price\": \"1875\"}, {\"sr_no\": \"3\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}], \"summary\": {\"total_quantity\": \"37\", \"sub_total\": \"5425\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"5500\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00008.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00008\", \"order_date\": \"2026-02-11\", \"sales_order_number\": \"528383\", \"po_number\": \"PO-65336\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"12\", \"unit_price\": \"250\", \"total_price\": \"3000\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"14\", \"unit_price\": \"125\", \"total_price\": \"1750\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"8\", \"unit_price\": \"10\", \"total_price\": \"80\"}, {\"sr_no\": \"5\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"11\", \"unit_price\": \"150\", \"total_price\": \"1650\"}], \"summary\": {\"total_quantity\": \"55\", \"sub_total\": \"6580\", \"tax\": \"0\", \"freight\": \"125\", \"grand_total\": \"6705\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00009.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00009\", \"order_date\": \"2026-02-18\", \"sales_order_number\": \"537988\", \"po_number\": \"PO-49578\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"14\", \"unit_price\": \"12\", \"total_price\": \"168\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"3\", \"unit_price\": \"175\", \"total_price\": \"525\"}, {\"sr_no\": \"3\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"7\", \"unit_price\": \"12\", \"total_price\": \"84\"}, {\"sr_no\": \"4\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"18\", \"unit_price\": \"75\", \"total_price\": \"1350\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"6\", \"unit_price\": \"125\", \"total_price\": \"750\"}, {\"sr_no\": \"6\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"10\", \"total_price\": \"110\"}, {\"sr_no\": \"7\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"15\", \"unit_price\": \"50\", \"total_price\": \"750\"}], \"summary\": {\"total_quantity\": \"74\", \"sub_total\": \"3737\", \"tax\": \"50\", \"freight\": \"125\", \"grand_total\": \"3912\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00010.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00010\", \"order_date\": \"2026-08-12\", \"sales_order_number\": \"555815\", \"po_number\": \"PO-45020\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"17\", \"unit_price\": \"10\", \"total_price\": \"170\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"1\", \"unit_price\": \"200\", \"total_price\": \"200\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"3\", \"unit_price\": \"30\", \"total_price\": \"90\"}, {\"sr_no\": \"4\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"8\", \"unit_price\": \"175\", \"total_price\": \"1400\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"20\", \"unit_price\": \"10\", \"total_price\": \"200\"}, {\"sr_no\": \"6\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"12\", \"unit_price\": \"250\", \"total_price\": \"3000\"}, {\"sr_no\": \"7\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"3\", \"unit_price\": \"40\", \"total_price\": \"120\"}], \"summary\": {\"total_quantity\": \"64\", \"sub_total\": \"5180\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"5330\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00011.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00011\", \"order_date\": \"2026-04-07\", \"sales_order_number\": \"551182\", \"po_number\": \"PO-59250\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"1\", \"unit_price\": \"90\", \"total_price\": \"90\"}, {\"sr_no\": \"2\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"19\", \"unit_price\": \"50\", \"total_price\": \"950\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"15\", \"unit_price\": \"15\", \"total_price\": \"225\"}, {\"sr_no\": \"4\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"7\", \"unit_price\": \"150\", \"total_price\": \"1050\"}, {\"sr_no\": \"5\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"14\", \"unit_price\": \"10\", \"total_price\": \"140\"}, {\"sr_no\": \"6\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"16\", \"unit_price\": \"50\", \"total_price\": \"800\"}], \"summary\": {\"total_quantity\": \"72\", \"sub_total\": \"3255\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"3455\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00012.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00012\", \"order_date\": \"2026-12-07\", \"sales_order_number\": \"502912\", \"po_number\": \"PO-69396\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"12\", \"unit_price\": \"30\", \"total_price\": \"360\"}, {\"sr_no\": \"2\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"2\", \"unit_price\": \"20\", \"total_price\": \"40\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"10\", \"unit_price\": \"225\", \"total_price\": \"2250\"}, {\"sr_no\": \"5\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"4\", \"unit_price\": \"20\", \"total_price\": \"80\"}, {\"sr_no\": \"6\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"20\", \"unit_price\": \"250\", \"total_price\": \"5000\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"4\", \"unit_price\": \"10\", \"total_price\": \"40\"}], \"summary\": {\"total_quantity\": \"70\", \"sub_total\": \"7950\", \"tax\": \"100\", \"freight\": \"100\", \"grand_total\": \"8150\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00013.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00013\", \"order_date\": \"2026-11-26\", \"sales_order_number\": \"529429\", \"po_number\": \"PO-68859\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"10\", \"unit_price\": \"90\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"17\", \"unit_price\": \"10\", \"total_price\": \"170\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"12\", \"unit_price\": \"10\", \"total_price\": \"120\"}, {\"sr_no\": \"4\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}], \"summary\": {\"total_quantity\": \"69\", \"sub_total\": \"4070\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"4220\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00014.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00014\", \"order_date\": \"2026-02-21\", \"sales_order_number\": \"510202\", \"po_number\": \"PO-50171\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"2\", \"unit_price\": \"225\", \"total_price\": \"450\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"7\", \"unit_price\": \"30\", \"total_price\": \"210\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"75\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"3\", \"unit_price\": \"30\", \"total_price\": \"90\"}, {\"sr_no\": \"5\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"19\", \"unit_price\": \"12\", \"total_price\": \"228\"}], \"summary\": {\"total_quantity\": \"33\", \"sub_total\": \"1128\", \"tax\": \"200\", \"freight\": \"0\", \"grand_total\": \"1328\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00015.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00015\", \"order_date\": \"2026-04-14\", \"sales_order_number\": \"515017\", \"po_number\": \"PO-56552\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"1\", \"unit_price\": \"50\", \"total_price\": \"50\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"18\", \"unit_price\": \"15\", \"total_price\": \"270\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"12\", \"unit_price\": \"10\", \"total_price\": \"120\"}], \"summary\": {\"total_quantity\": \"31\", \"sub_total\": \"440\", \"tax\": \"0\", \"freight\": \"250\", \"grand_total\": \"690\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00016.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00016\", \"order_date\": \"2026-03-29\", \"sales_order_number\": \"503050\", \"po_number\": \"PO-62400\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"10\", \"unit_price\": \"15\", \"total_price\": \"150\"}, {\"sr_no\": \"2\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"3\", \"unit_price\": \"250\", \"total_price\": \"750\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"8\", \"unit_price\": \"225\", \"total_price\": \"1800\"}], \"summary\": {\"total_quantity\": \"30\", \"sub_total\": \"2880\", \"tax\": \"125\", \"freight\": \"125\", \"grand_total\": \"3130\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00017.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00017\", \"order_date\": \"2026-07-12\", \"sales_order_number\": \"568788\", \"po_number\": \"PO-32360\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"17\", \"unit_price\": \"50\", \"total_price\": \"850\"}, {\"sr_no\": \"2\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"1\", \"unit_price\": \"30\", \"total_price\": \"30\"}, {\"sr_no\": \"3\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"19\", \"unit_price\": \"20\", \"total_price\": \"380\"}], \"summary\": {\"total_quantity\": \"37\", \"sub_total\": \"1260\", \"tax\": \"100\", \"freight\": \"300\", \"grand_total\": \"1660\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00018.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00018\", \"order_date\": \"2026-04-16\", \"sales_order_number\": \"551181\", \"po_number\": \"PO-49586\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"17\", \"unit_price\": \"12\", \"total_price\": \"204\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"17\", \"unit_price\": \"12\", \"total_price\": \"204\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"13\", \"unit_price\": \"75\", \"total_price\": \"975\"}, {\"sr_no\": \"4\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"13\", \"unit_price\": \"25\", \"total_price\": \"325\"}, {\"sr_no\": \"5\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"20\", \"unit_price\": \"40\", \"total_price\": \"800\"}, {\"sr_no\": \"6\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"9\", \"unit_price\": \"225\", \"total_price\": \"2025\"}], \"summary\": {\"total_quantity\": \"103\", \"sub_total\": \"5583\", \"tax\": \"200\", \"freight\": \"0\", \"grand_total\": \"5783\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00019.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00019\", \"order_date\": \"2026-10-23\", \"sales_order_number\": \"558868\", \"po_number\": \"PO-43571\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}, {\"sr_no\": \"2\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"50\", \"total_price\": \"750\"}, {\"sr_no\": \"3\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"20\", \"unit_price\": \"250\", \"total_price\": \"5000\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"5\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"6\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"19\", \"unit_price\": \"250\", \"total_price\": \"4750\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"4\", \"unit_price\": \"40\", \"total_price\": \"160\"}, {\"sr_no\": \"8\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}], \"summary\": {\"total_quantity\": \"103\", \"sub_total\": \"15426\", \"tax\": \"200\", \"freight\": \"200\", \"grand_total\": \"15826\"}, \"notes\": \"Contact buyer before final delivery\"}}}"} +{"file_name": "package_00020.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00020\", \"order_date\": \"2026-09-29\", \"sales_order_number\": \"504138\", \"po_number\": \"PO-68874\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"9\", \"unit_price\": \"75\", \"total_price\": \"675\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"13\", \"unit_price\": \"60\", \"total_price\": \"780\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"17\", \"unit_price\": \"175\", \"total_price\": \"2975\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"12\", \"unit_price\": \"40\", \"total_price\": \"480\"}], \"summary\": {\"total_quantity\": \"51\", \"sub_total\": \"4910\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"4985\"}, \"notes\": \"Handle cartons with care\"}}}"} +{"file_name": "package_00021.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00021\", \"order_date\": \"2026-10-03\", \"sales_order_number\": \"527788\", \"po_number\": \"PO-61050\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"30\", \"total_price\": \"120\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"18\", \"unit_price\": \"175\", \"total_price\": \"3150\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"3\", \"unit_price\": \"90\", \"total_price\": \"270\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"60\", \"total_price\": \"360\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"9\", \"unit_price\": \"90\", \"total_price\": \"810\"}], \"summary\": {\"total_quantity\": \"40\", \"sub_total\": \"4710\", \"tax\": \"0\", \"freight\": \"300\", \"grand_total\": \"5010\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00022.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00022\", \"order_date\": \"2026-06-30\", \"sales_order_number\": \"548998\", \"po_number\": \"PO-48644\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"17\", \"unit_price\": \"125\", \"total_price\": \"2125\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"15\", \"unit_price\": \"250\", \"total_price\": \"3750\"}, {\"sr_no\": \"4\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"18\", \"unit_price\": \"125\", \"total_price\": \"2250\"}, {\"sr_no\": \"5\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"16\", \"unit_price\": \"20\", \"total_price\": \"320\"}], \"summary\": {\"total_quantity\": \"75\", \"sub_total\": \"8625\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"8700\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00023.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00023\", \"order_date\": \"2026-09-30\", \"sales_order_number\": \"565617\", \"po_number\": \"PO-52249\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"18\", \"unit_price\": \"12\", \"total_price\": \"216\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"15\", \"unit_price\": \"15\", \"total_price\": \"225\"}, {\"sr_no\": \"3\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"8\", \"unit_price\": \"15\", \"total_price\": \"120\"}, {\"sr_no\": \"4\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"14\", \"unit_price\": \"10\", \"total_price\": \"140\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"10\", \"unit_price\": \"250\", \"total_price\": \"2500\"}], \"summary\": {\"total_quantity\": \"65\", \"sub_total\": \"3201\", \"tax\": \"150\", \"freight\": \"250\", \"grand_total\": \"3601\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00024.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00024\", \"order_date\": \"2026-06-23\", \"sales_order_number\": \"505276\", \"po_number\": \"PO-34489\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"6\", \"unit_price\": \"25\", \"total_price\": \"150\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"16\", \"unit_price\": \"50\", \"total_price\": \"800\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"10\", \"unit_price\": \"12\", \"total_price\": \"120\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"60\", \"total_price\": \"120\"}, {\"sr_no\": \"6\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"16\", \"unit_price\": \"250\", \"total_price\": \"4000\"}, {\"sr_no\": \"7\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"20\", \"unit_price\": \"60\", \"total_price\": \"1200\"}], \"summary\": {\"total_quantity\": \"82\", \"sub_total\": \"9090\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"9240\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00025.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00025\", \"order_date\": \"2026-09-30\", \"sales_order_number\": \"529048\", \"po_number\": \"PO-68337\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"2\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}, {\"sr_no\": \"3\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}], \"summary\": {\"total_quantity\": \"42\", \"sub_total\": \"4730\", \"tax\": \"125\", \"freight\": \"50\", \"grand_total\": \"4905\"}, \"notes\": \"Contact buyer before final delivery\"}}}"} +{"file_name": "package_00026.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00026\", \"order_date\": \"2026-10-22\", \"sales_order_number\": \"559602\", \"po_number\": \"PO-39219\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"2\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"16\", \"unit_price\": \"15\", \"total_price\": \"240\"}, {\"sr_no\": \"3\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"12\", \"unit_price\": \"100\", \"total_price\": \"1200\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"16\", \"unit_price\": \"60\", \"total_price\": \"960\"}, {\"sr_no\": \"5\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"6\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"19\", \"unit_price\": \"10\", \"total_price\": \"190\"}], \"summary\": {\"total_quantity\": \"85\", \"sub_total\": \"5462\", \"tax\": \"125\", \"freight\": \"75\", \"grand_total\": \"5662\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00027.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00027\", \"order_date\": \"2026-02-22\", \"sales_order_number\": \"513095\", \"po_number\": \"PO-57723\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"13\", \"unit_price\": \"200\", \"total_price\": \"2600\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"8\", \"unit_price\": \"250\", \"total_price\": \"2000\"}, {\"sr_no\": \"3\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"5\", \"unit_price\": \"50\", \"total_price\": \"250\"}, {\"sr_no\": \"4\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"1\", \"unit_price\": \"200\", \"total_price\": \"200\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"6\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"3\", \"unit_price\": \"200\", \"total_price\": \"600\"}, {\"sr_no\": \"7\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"4\", \"unit_price\": \"90\", \"total_price\": \"360\"}], \"summary\": {\"total_quantity\": \"37\", \"sub_total\": \"6046\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"6046\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00028.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00028\", \"order_date\": \"2026-01-18\", \"sales_order_number\": \"530579\", \"po_number\": \"PO-33950\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"14\", \"unit_price\": \"12\", \"total_price\": \"168\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"3\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"4\", \"unit_price\": \"12\", \"total_price\": \"48\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"13\", \"unit_price\": \"60\", \"total_price\": \"780\"}], \"summary\": {\"total_quantity\": \"41\", \"sub_total\": \"2246\", \"tax\": \"100\", \"freight\": \"75\", \"grand_total\": \"2421\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00029.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00029\", \"order_date\": \"2026-07-04\", \"sales_order_number\": \"541895\", \"po_number\": \"PO-50678\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"19\", \"unit_price\": \"90\", \"total_price\": \"1710\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"19\", \"unit_price\": \"25\", \"total_price\": \"475\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"20\", \"unit_price\": \"15\", \"total_price\": \"300\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"7\", \"unit_price\": \"50\", \"total_price\": \"350\"}, {\"sr_no\": \"5\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"16\", \"unit_price\": \"200\", \"total_price\": \"3200\"}], \"summary\": {\"total_quantity\": \"81\", \"sub_total\": \"6035\", \"tax\": \"100\", \"freight\": \"300\", \"grand_total\": \"6435\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00030.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00030\", \"order_date\": \"2026-08-31\", \"sales_order_number\": \"510007\", \"po_number\": \"PO-40068\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"13\", \"unit_price\": \"12\", \"total_price\": \"156\"}, {\"sr_no\": \"2\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"18\", \"unit_price\": \"225\", \"total_price\": \"4050\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"15\", \"unit_price\": \"75\", \"total_price\": \"1125\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"19\", \"unit_price\": \"20\", \"total_price\": \"380\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"18\", \"unit_price\": \"75\", \"total_price\": \"1350\"}, {\"sr_no\": \"6\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"9\", \"unit_price\": \"225\", \"total_price\": \"2025\"}, {\"sr_no\": \"7\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"11\", \"unit_price\": \"50\", \"total_price\": \"550\"}], \"summary\": {\"total_quantity\": \"103\", \"sub_total\": \"9636\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"9836\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00031.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00031\", \"order_date\": \"2026-01-20\", \"sales_order_number\": \"526488\", \"po_number\": \"PO-39782\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"10\", \"unit_price\": \"40\", \"total_price\": \"400\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"6\", \"unit_price\": \"40\", \"total_price\": \"240\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"5\", \"unit_price\": \"15\", \"total_price\": \"75\"}], \"summary\": {\"total_quantity\": \"21\", \"sub_total\": \"715\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"915\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00032.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00032\", \"order_date\": \"2026-03-31\", \"sales_order_number\": \"577345\", \"po_number\": \"PO-35175\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"11\", \"unit_price\": \"175\", \"total_price\": \"1925\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"100\", \"total_price\": \"1800\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"12\", \"unit_price\": \"250\", \"total_price\": \"3000\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"20\", \"unit_price\": \"225\", \"total_price\": \"4500\"}, {\"sr_no\": \"5\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"16\", \"unit_price\": \"25\", \"total_price\": \"400\"}, {\"sr_no\": \"6\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"7\", \"unit_price\": \"90\", \"total_price\": \"630\"}, {\"sr_no\": \"7\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"7\", \"unit_price\": \"75\", \"total_price\": \"525\"}, {\"sr_no\": \"8\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"250\", \"total_price\": \"1000\"}], \"summary\": {\"total_quantity\": \"95\", \"sub_total\": \"13780\", \"tax\": \"100\", \"freight\": \"50\", \"grand_total\": \"13930\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00033.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00033\", \"order_date\": \"2026-06-07\", \"sales_order_number\": \"588754\", \"po_number\": \"PO-52814\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"15\", \"unit_price\": \"20\", \"total_price\": \"300\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"12\", \"unit_price\": \"20\", \"total_price\": \"240\"}, {\"sr_no\": \"4\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"8\", \"unit_price\": \"225\", \"total_price\": \"1800\"}, {\"sr_no\": \"5\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"18\", \"unit_price\": \"175\", \"total_price\": \"3150\"}, {\"sr_no\": \"6\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"19\", \"unit_price\": \"75\", \"total_price\": \"1425\"}, {\"sr_no\": \"7\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"6\", \"unit_price\": \"30\", \"total_price\": \"180\"}], \"summary\": {\"total_quantity\": \"103\", \"sub_total\": \"8825\", \"tax\": \"200\", \"freight\": \"100\", \"grand_total\": \"9125\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00034.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00034\", \"order_date\": \"2026-05-15\", \"sales_order_number\": \"525687\", \"po_number\": \"PO-62847\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"16\", \"unit_price\": \"12\", \"total_price\": \"192\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}, {\"sr_no\": \"3\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"11\", \"unit_price\": \"250\", \"total_price\": \"2750\"}, {\"sr_no\": \"4\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"4\", \"unit_price\": \"20\", \"total_price\": \"80\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"10\", \"unit_price\": \"12\", \"total_price\": \"120\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"16\", \"unit_price\": \"200\", \"total_price\": \"3200\"}], \"summary\": {\"total_quantity\": \"90\", \"sub_total\": \"9397\", \"tax\": \"100\", \"freight\": \"150\", \"grand_total\": \"9647\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00035.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00035\", \"order_date\": \"2026-07-24\", \"sales_order_number\": \"501761\", \"po_number\": \"PO-63272\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"2\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"11\", \"unit_price\": \"175\", \"total_price\": \"1925\"}, {\"sr_no\": \"3\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"4\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"10\", \"unit_price\": \"200\", \"total_price\": \"2000\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"14\", \"unit_price\": \"200\", \"total_price\": \"2800\"}, {\"sr_no\": \"6\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"7\", \"unit_price\": \"200\", \"total_price\": \"1400\"}], \"summary\": {\"total_quantity\": \"53\", \"sub_total\": \"9475\", \"tax\": \"150\", \"freight\": \"150\", \"grand_total\": \"9775\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00036.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00036\", \"order_date\": \"2026-06-10\", \"sales_order_number\": \"584987\", \"po_number\": \"PO-30517\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"16\", \"unit_price\": \"225\", \"total_price\": \"3600\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"19\", \"unit_price\": \"20\", \"total_price\": \"380\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"11\", \"unit_price\": \"40\", \"total_price\": \"440\"}, {\"sr_no\": \"5\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"1\", \"unit_price\": \"90\", \"total_price\": \"90\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"7\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"19\", \"unit_price\": \"225\", \"total_price\": \"4275\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}], \"summary\": {\"total_quantity\": \"108\", \"sub_total\": \"10905\", \"tax\": \"100\", \"freight\": \"100\", \"grand_total\": \"11105\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00037.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00037\", \"order_date\": \"2026-03-31\", \"sales_order_number\": \"547748\", \"po_number\": \"PO-41995\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"20\", \"unit_price\": \"15\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"9\", \"unit_price\": \"40\", \"total_price\": \"360\"}, {\"sr_no\": \"3\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"17\", \"unit_price\": \"25\", \"total_price\": \"425\"}], \"summary\": {\"total_quantity\": \"46\", \"sub_total\": \"1085\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"1160\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00038.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00038\", \"order_date\": \"2026-02-04\", \"sales_order_number\": \"586793\", \"po_number\": \"PO-32806\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"6\", \"unit_price\": \"10\", \"total_price\": \"60\"}, {\"sr_no\": \"2\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"8\", \"unit_price\": \"50\", \"total_price\": \"400\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"15\", \"unit_price\": \"100\", \"total_price\": \"1500\"}, {\"sr_no\": \"5\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"19\", \"unit_price\": \"125\", \"total_price\": \"2375\"}, {\"sr_no\": \"6\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"40\", \"total_price\": \"160\"}], \"summary\": {\"total_quantity\": \"62\", \"sub_total\": \"4595\", \"tax\": \"150\", \"freight\": \"300\", \"grand_total\": \"5045\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00039.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00039\", \"order_date\": \"2026-06-07\", \"sales_order_number\": \"511838\", \"po_number\": \"PO-52104\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"7\", \"unit_price\": \"75\", \"total_price\": \"525\"}, {\"sr_no\": \"2\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"8\", \"unit_price\": \"15\", \"total_price\": \"120\"}, {\"sr_no\": \"3\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"2\", \"unit_price\": \"50\", \"total_price\": \"100\"}, {\"sr_no\": \"4\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"10\", \"unit_price\": \"250\", \"total_price\": \"2500\"}, {\"sr_no\": \"5\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"11\", \"unit_price\": \"50\", \"total_price\": \"550\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"7\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"2\", \"unit_price\": \"40\", \"total_price\": \"80\"}], \"summary\": {\"total_quantity\": \"41\", \"sub_total\": \"3975\", \"tax\": \"100\", \"freight\": \"75\", \"grand_total\": \"4150\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00040.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00040\", \"order_date\": \"2026-03-31\", \"sales_order_number\": \"569906\", \"po_number\": \"PO-47298\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"11\", \"unit_price\": \"10\", \"total_price\": \"110\"}, {\"sr_no\": \"2\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"250\", \"total_price\": \"3250\"}, {\"sr_no\": \"3\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"7\", \"unit_price\": \"225\", \"total_price\": \"1575\"}, {\"sr_no\": \"4\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"6\", \"unit_price\": \"225\", \"total_price\": \"1350\"}, {\"sr_no\": \"5\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"15\", \"unit_price\": \"10\", \"total_price\": \"150\"}, {\"sr_no\": \"6\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"10\", \"unit_price\": \"200\", \"total_price\": \"2000\"}, {\"sr_no\": \"7\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"6\", \"unit_price\": \"125\", \"total_price\": \"750\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"17\", \"unit_price\": \"12\", \"total_price\": \"204\"}], \"summary\": {\"total_quantity\": \"85\", \"sub_total\": \"9389\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"9589\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00041.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00041\", \"order_date\": \"2026-03-26\", \"sales_order_number\": \"548558\", \"po_number\": \"PO-41281\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"12\", \"unit_price\": \"200\", \"total_price\": \"2400\"}, {\"sr_no\": \"2\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"7\", \"unit_price\": \"250\", \"total_price\": \"1750\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"6\", \"unit_price\": \"60\", \"total_price\": \"360\"}, {\"sr_no\": \"5\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"12\", \"unit_price\": \"15\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"11\", \"unit_price\": \"125\", \"total_price\": \"1375\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"10\", \"unit_price\": \"25\", \"total_price\": \"250\"}], \"summary\": {\"total_quantity\": \"67\", \"sub_total\": \"6495\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"6595\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00042.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00042\", \"order_date\": \"2026-07-09\", \"sales_order_number\": \"557181\", \"po_number\": \"PO-51097\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"1\", \"unit_price\": \"12\", \"total_price\": \"12\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"90\", \"total_price\": \"1620\"}, {\"sr_no\": \"4\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"7\", \"unit_price\": \"20\", \"total_price\": \"140\"}, {\"sr_no\": \"5\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"18\", \"unit_price\": \"90\", \"total_price\": \"1620\"}, {\"sr_no\": \"6\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"9\", \"unit_price\": \"200\", \"total_price\": \"1800\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"10\", \"unit_price\": \"250\", \"total_price\": \"2500\"}, {\"sr_no\": \"8\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"7\", \"unit_price\": \"20\", \"total_price\": \"140\"}], \"summary\": {\"total_quantity\": \"76\", \"sub_total\": \"7904\", \"tax\": \"50\", \"freight\": \"50\", \"grand_total\": \"8004\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00043.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00043\", \"order_date\": \"2026-11-29\", \"sales_order_number\": \"597528\", \"po_number\": \"PO-32041\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"11\", \"unit_price\": \"125\", \"total_price\": \"1375\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"2\", \"unit_price\": \"75\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"3\", \"unit_price\": \"25\", \"total_price\": \"75\"}, {\"sr_no\": \"5\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"5\", \"unit_price\": \"20\", \"total_price\": \"100\"}, {\"sr_no\": \"6\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"5\", \"unit_price\": \"50\", \"total_price\": \"250\"}, {\"sr_no\": \"7\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"20\", \"unit_price\": \"20\", \"total_price\": \"400\"}, {\"sr_no\": \"8\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"13\", \"unit_price\": \"40\", \"total_price\": \"520\"}], \"summary\": {\"total_quantity\": \"65\", \"sub_total\": \"2942\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"2942\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00044.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00044\", \"order_date\": \"2026-04-02\", \"sales_order_number\": \"527142\", \"po_number\": \"PO-34495\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"5\", \"unit_price\": \"175\", \"total_price\": \"875\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"9\", \"unit_price\": \"15\", \"total_price\": \"135\"}, {\"sr_no\": \"5\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"19\", \"unit_price\": \"12\", \"total_price\": \"228\"}, {\"sr_no\": \"6\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"7\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"7\", \"unit_price\": \"200\", \"total_price\": \"1400\"}], \"summary\": {\"total_quantity\": \"56\", \"sub_total\": \"3253\", \"tax\": \"150\", \"freight\": \"300\", \"grand_total\": \"3703\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00045.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00045\", \"order_date\": \"2026-01-19\", \"sales_order_number\": \"512263\", \"po_number\": \"PO-35279\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"20\", \"unit_price\": \"25\", \"total_price\": \"500\"}, {\"sr_no\": \"2\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"16\", \"unit_price\": \"30\", \"total_price\": \"480\"}, {\"sr_no\": \"3\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"11\", \"unit_price\": \"30\", \"total_price\": \"330\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"6\", \"unit_price\": \"175\", \"total_price\": \"1050\"}, {\"sr_no\": \"5\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"19\", \"unit_price\": \"225\", \"total_price\": \"4275\"}, {\"sr_no\": \"6\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"11\", \"unit_price\": \"200\", \"total_price\": \"2200\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"1\", \"unit_price\": \"10\", \"total_price\": \"10\"}], \"summary\": {\"total_quantity\": \"84\", \"sub_total\": \"8845\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"8995\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00046.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00046\", \"order_date\": \"2026-10-28\", \"sales_order_number\": \"582469\", \"po_number\": \"PO-38719\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"10\", \"unit_price\": \"90\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"15\", \"unit_price\": \"75\", \"total_price\": \"1125\"}, {\"sr_no\": \"3\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"1\", \"unit_price\": \"175\", \"total_price\": \"175\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}], \"summary\": {\"total_quantity\": \"28\", \"sub_total\": \"2380\", \"tax\": \"0\", \"freight\": \"250\", \"grand_total\": \"2630\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00047.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00047\", \"order_date\": \"2026-11-30\", \"sales_order_number\": \"563388\", \"po_number\": \"PO-43749\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"18\", \"unit_price\": \"40\", \"total_price\": \"720\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"1\", \"unit_price\": \"20\", \"total_price\": \"20\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"6\", \"unit_price\": \"15\", \"total_price\": \"90\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"6\", \"unit_price\": \"150\", \"total_price\": \"900\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"6\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"18\", \"unit_price\": \"50\", \"total_price\": \"900\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"3005\", \"tax\": \"50\", \"freight\": \"100\", \"grand_total\": \"3155\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00048.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00048\", \"order_date\": \"2026-08-26\", \"sales_order_number\": \"512410\", \"po_number\": \"PO-32606\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"8\", \"unit_price\": \"75\", \"total_price\": \"600\"}, {\"sr_no\": \"3\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"15\", \"unit_price\": \"100\", \"total_price\": \"1500\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}, {\"sr_no\": \"5\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"17\", \"unit_price\": \"100\", \"total_price\": \"1700\"}, {\"sr_no\": \"6\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"4\", \"unit_price\": \"10\", \"total_price\": \"40\"}, {\"sr_no\": \"7\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"3\", \"unit_price\": \"60\", \"total_price\": \"180\"}, {\"sr_no\": \"8\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"3\", \"unit_price\": \"40\", \"total_price\": \"120\"}], \"summary\": {\"total_quantity\": \"86\", \"sub_total\": \"7920\", \"tax\": \"100\", \"freight\": \"150\", \"grand_total\": \"8170\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00049.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00049\", \"order_date\": \"2026-06-26\", \"sales_order_number\": \"526427\", \"po_number\": \"PO-49523\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"14\", \"unit_price\": \"25\", \"total_price\": \"350\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"9\", \"unit_price\": \"200\", \"total_price\": \"1800\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"14\", \"unit_price\": \"200\", \"total_price\": \"2800\"}, {\"sr_no\": \"4\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"16\", \"unit_price\": \"25\", \"total_price\": \"400\"}, {\"sr_no\": \"5\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"15\", \"unit_price\": \"200\", \"total_price\": \"3000\"}, {\"sr_no\": \"6\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"10\", \"unit_price\": \"225\", \"total_price\": \"2250\"}], \"summary\": {\"total_quantity\": \"78\", \"sub_total\": \"10600\", \"tax\": \"200\", \"freight\": \"200\", \"grand_total\": \"11000\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00050.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00050\", \"order_date\": \"2026-04-27\", \"sales_order_number\": \"514992\", \"po_number\": \"PO-47284\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"13\", \"unit_price\": \"250\", \"total_price\": \"3250\"}, {\"sr_no\": \"2\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"14\", \"unit_price\": \"125\", \"total_price\": \"1750\"}], \"summary\": {\"total_quantity\": \"35\", \"sub_total\": \"5200\", \"tax\": \"200\", \"freight\": \"75\", \"grand_total\": \"5475\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} diff --git a/train/package_00001.png b/train/package_00001.png new file mode 100644 index 0000000000000000000000000000000000000000..cfc78702a876a1e3ed75f2e65909f2ac76ea1a9f --- /dev/null +++ b/train/package_00001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b728fed5c2aff1edb8b9f5a5556037d04889eeef7c45dfc4d4a22e9f5ab1345 +size 61142 diff --git a/train/package_00002.png b/train/package_00002.png new file mode 100644 index 0000000000000000000000000000000000000000..ce54ca6e30bcf2af64188e51f3dbad83c09eadaa --- /dev/null +++ b/train/package_00002.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20345d1aeefbf2f373fa2491e6cbff3160d0b87e512f27f8e06c5c56fa205b29 +size 63476 diff --git a/train/package_00003.png b/train/package_00003.png new file mode 100644 index 0000000000000000000000000000000000000000..b8485c496ce7c239ae71c0682947ef57dd68124b --- /dev/null +++ b/train/package_00003.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440f0de6bb0c06d9a1f181648419a11a81755121a0bbd6c34f5e65d4ed211dc7 +size 70705 diff --git a/train/package_00004.png b/train/package_00004.png new file mode 100644 index 0000000000000000000000000000000000000000..9fb42371359698b6c216ec0a1b530cdc4667ba20 --- /dev/null +++ b/train/package_00004.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033bd9da35578d1e8959d2127e2b65af08843bc82e536688ca62b5a659c3995c +size 68215 diff --git a/train/package_00005.png b/train/package_00005.png new file mode 100644 index 0000000000000000000000000000000000000000..ffcf05d15a2e73b770115c08da2abfb81f3774b2 --- /dev/null +++ b/train/package_00005.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec98581b11804a83ce02dabb9f56ee92e0107a3b7f6fc9ae20cf4055f37a9ce0 +size 71848 diff --git a/train/package_00006.png b/train/package_00006.png new file mode 100644 index 0000000000000000000000000000000000000000..92fd795a9598b2ebd4e59f9c0de01ae14375c17b --- /dev/null +++ b/train/package_00006.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95995e2af9b51d64926956de8e92e27f6b195ed1a420016293882df2087fb98e +size 72486 diff --git a/train/package_00007.png b/train/package_00007.png new file mode 100644 index 0000000000000000000000000000000000000000..5acab74e1ee93a362c4ce10ec78d60df2bce0775 --- /dev/null +++ b/train/package_00007.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22542c81cf0a3cea58f7ff4a0c9b270b362ca32c01a7f01692beb9c5a47a0bd9 +size 64172 diff --git a/train/package_00008.png b/train/package_00008.png new file mode 100644 index 0000000000000000000000000000000000000000..ea442240dcaeea73b8ff9214cbfb95bf0182ce0c --- /dev/null +++ b/train/package_00008.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e1b8f804abc7bc4835472c2031a6658bc2b8c44b157eacda08b35591150425 +size 69229 diff --git a/train/package_00009.png b/train/package_00009.png new file mode 100644 index 0000000000000000000000000000000000000000..360d8d1698dd7574eb5c7f5015722c09ce0872ab --- /dev/null +++ b/train/package_00009.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff14f81c5ddb646d097cbdaff7b1ed613fc853cd80707c92bcac2f35098194a +size 74251 diff --git a/train/package_00010.png b/train/package_00010.png new file mode 100644 index 0000000000000000000000000000000000000000..9431fa4d363a318b70105e8fda7805effccc0b19 --- /dev/null +++ b/train/package_00010.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e66892df642d23a6b6896f5677a181c13685c9d955d327ba25be75bc66605f7 +size 69087 diff --git a/train/package_00011.png b/train/package_00011.png new file mode 100644 index 0000000000000000000000000000000000000000..056df70140135db047d832bfa9c7a8aa6bd8d643 --- /dev/null +++ b/train/package_00011.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9320c2d9085caa2732da4d0d94599f396c320c64663c20a7aa0baadc3f976593 +size 67365 diff --git a/train/package_00012.png b/train/package_00012.png new file mode 100644 index 0000000000000000000000000000000000000000..5b306ac5741c03ef5149184c6920536e6564b826 --- /dev/null +++ b/train/package_00012.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84957e4cc934040e8a5bb1d061c808dbe4c4e335328f33918a9660bdb719abe3 +size 69384 diff --git a/train/package_00013.png b/train/package_00013.png new file mode 100644 index 0000000000000000000000000000000000000000..289bec14274405a875043ddda93c4f138a03bac6 --- /dev/null +++ b/train/package_00013.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac35bde41b407bfcb0b3275659d19667ffe68b7ec41e657ca738eb6964b6543 +size 63388 diff --git a/train/package_00014.png b/train/package_00014.png new file mode 100644 index 0000000000000000000000000000000000000000..d390d88a57798542f2cca349f9505648f77fc659 --- /dev/null +++ b/train/package_00014.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72fbfe7371970860c36aef216478bd8a0bcdfbdf9cfbbe89d52389d3ed37d84e +size 69225 diff --git a/train/package_00015.png b/train/package_00015.png new file mode 100644 index 0000000000000000000000000000000000000000..ba2cb7402d7d7266100b1a003ad3398e5d055730 --- /dev/null +++ b/train/package_00015.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57596b3a57d8cb3be0d099544c3bbe11a41b7e5924963c82bd6fc6bdec8de3f +size 63890 diff --git a/train/package_00016.png b/train/package_00016.png new file mode 100644 index 0000000000000000000000000000000000000000..db5691f3d63f8743a8e7a0a391a908931c6635a4 --- /dev/null +++ b/train/package_00016.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62305ec59d4488b8a8f979368bfdd1b7ac785627678a69d25d4656d519126a9 +size 69235 diff --git a/train/package_00017.png b/train/package_00017.png new file mode 100644 index 0000000000000000000000000000000000000000..6b13e11790c52b2a6b5b2c90c1004696f6a13005 --- /dev/null +++ b/train/package_00017.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f23896e5de48de7f3dfee8d5a212a39d082aff58e3ecd64b08cd8de8375392 +size 65912 diff --git a/train/package_00018.png b/train/package_00018.png new file mode 100644 index 0000000000000000000000000000000000000000..33fedb7643a68da6d548c0033009a727ba861a6b --- /dev/null +++ b/train/package_00018.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40c594c8ea7c2418dafd0f1d9c8105ff95e4bf9d3e4d778f2a177bd7ff84a11 +size 71459 diff --git a/train/package_00019.png b/train/package_00019.png new file mode 100644 index 0000000000000000000000000000000000000000..6dc6957f388276a0e771aa2ab284f4c3d059f4fb --- /dev/null +++ b/train/package_00019.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b6283767426e661d9423b1e3d66c895ebd2b4e50fbae81bf2fb1d3cd50d964 +size 77884 diff --git a/train/package_00020.png b/train/package_00020.png new file mode 100644 index 0000000000000000000000000000000000000000..5108c26ab7f846d67760c1173f3620d06d262260 --- /dev/null +++ b/train/package_00020.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc6e47a8f531cdff30cb85e4b9408e566a4dfc8a7e1e32a85085df5b2f6b0c2 +size 68719 diff --git a/train/package_00021.png b/train/package_00021.png new file mode 100644 index 0000000000000000000000000000000000000000..b7dbbf717f7d45a5c99940d067b2e8fb4e86ee04 --- /dev/null +++ b/train/package_00021.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7504f927dffe993c0e30c95c31a82f1d431ef7d7eaec00d037aae52440be773 +size 71485 diff --git a/train/package_00022.png b/train/package_00022.png new file mode 100644 index 0000000000000000000000000000000000000000..004ee267f529ddb120a5238ff4fe8db7ba98e456 --- /dev/null +++ b/train/package_00022.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e8a9b1f8d3f5cb3214769bfe23cfd20005a5b9b06d0e58cb993a9139cc4916 +size 71332 diff --git a/train/package_00023.png b/train/package_00023.png new file mode 100644 index 0000000000000000000000000000000000000000..642f9e83c1fa5f77f0b297524d4aabae2cb902c7 --- /dev/null +++ b/train/package_00023.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2672d71da584d5a5261745de9566bfba621e46d50cd96c5d4620d96e06b5e203 +size 70762 diff --git a/train/package_00024.png b/train/package_00024.png new file mode 100644 index 0000000000000000000000000000000000000000..a95d244a8a18d3c0caa9682311ede07d9c0aae65 --- /dev/null +++ b/train/package_00024.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40c788b18177424b74a67fe953eeb119841b701ff6d9038ef8f23f4db58214d +size 70701 diff --git a/train/package_00025.png b/train/package_00025.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6eeeef9117173d43ad2d3778987f11d565f6a2 --- /dev/null +++ b/train/package_00025.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dbb265ad23a0c18abd8ce3ba23c449ac6cc77380473ce145fcf900426410f28 +size 61679 diff --git a/train/package_00026.png b/train/package_00026.png new file mode 100644 index 0000000000000000000000000000000000000000..4dfcb450e32dd69d0efb5d479517ef9ce9e626cd --- /dev/null +++ b/train/package_00026.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0adc868a077b407a3232c86a1e19f5adc821a8adda174d223757256152dbb9f7 +size 72705 diff --git a/train/package_00027.png b/train/package_00027.png new file mode 100644 index 0000000000000000000000000000000000000000..b011321efdcce4cac49020466a202ddecc2679eb --- /dev/null +++ b/train/package_00027.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330dfee4029aaca509d11ed6271a7240e2555bc0f2974bce0772c2f42da2e8c3 +size 75148 diff --git a/train/package_00028.png b/train/package_00028.png new file mode 100644 index 0000000000000000000000000000000000000000..4da3234698a284515d7a91dba12f5d989319a390 --- /dev/null +++ b/train/package_00028.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bc5fb65129e149e9bbfe66b76f084a108714fc3c7e8bda6287eca0396398c9 +size 68244 diff --git a/train/package_00029.png b/train/package_00029.png new file mode 100644 index 0000000000000000000000000000000000000000..59ab582c5d052ebfd0822516b933248d75537ec0 --- /dev/null +++ b/train/package_00029.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e46332c2cb8248ffcbf8f332b85f25399cb749c8fcd7d172777904a0ab426fd +size 65884 diff --git a/train/package_00030.png b/train/package_00030.png new file mode 100644 index 0000000000000000000000000000000000000000..9359554bd24500e5d804f70998340b4a45319367 --- /dev/null +++ b/train/package_00030.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a64f6ee2cd0f800ea1db14bae4c509185777b58fedbe0add493fe0c374a231 +size 77280 diff --git a/train/package_00031.png b/train/package_00031.png new file mode 100644 index 0000000000000000000000000000000000000000..5fd3ea87660f53098c5c2b566e3566c10cbdad78 --- /dev/null +++ b/train/package_00031.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953b111436a9a80e6699eff7475df59417fe3d5fb0bc6901b55e1ee9c0ff8c54 +size 60247 diff --git a/train/package_00032.png b/train/package_00032.png new file mode 100644 index 0000000000000000000000000000000000000000..a824fa397d7be0c0441407b1ab14a81bd9f4dd4c --- /dev/null +++ b/train/package_00032.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8256a0cce05a04018dcf4e680856cbab51f2c807f3e74f0007e443d5c4c3c64 +size 77817 diff --git a/train/package_00033.png b/train/package_00033.png new file mode 100644 index 0000000000000000000000000000000000000000..052576ca5fb7c47d636a3cd29867885d4f347d87 --- /dev/null +++ b/train/package_00033.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:262a6de62975df4031e79d92b11d38b40e430e9d3ddc510fdb11dad3485afa6e +size 79301 diff --git a/train/package_00034.png b/train/package_00034.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a0eba45bde77a2630946a65b5609c2f32627bc --- /dev/null +++ b/train/package_00034.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f1eb84e5d90ed98936d77a8c4a55b16f5b0507c0a105da190f573b884f3692 +size 74211 diff --git a/train/package_00035.png b/train/package_00035.png new file mode 100644 index 0000000000000000000000000000000000000000..938bed75b6ba1aa66fc021df1845cc93055cef40 --- /dev/null +++ b/train/package_00035.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0946161687554d86e88e9c2d5f1d689c7046f00e46b93a4b9eb4d95f018fba +size 72912 diff --git a/train/package_00036.png b/train/package_00036.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ca9f36d340a9a2e5089fc5a7d8ef074cfaa767 --- /dev/null +++ b/train/package_00036.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbce61f46e5fa0b3751f3f06c423818d546223b1386cbbf309d7c3aa31cc7f4 +size 78163 diff --git a/train/package_00037.png b/train/package_00037.png new file mode 100644 index 0000000000000000000000000000000000000000..4a281c983ad4de49b20a640fbb5d2fb1d0bc8471 --- /dev/null +++ b/train/package_00037.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2900d96150c36c819a1e84bcd85460c82f45294f4b426e9e1ffc1324412a297f +size 65699 diff --git a/train/package_00038.png b/train/package_00038.png new file mode 100644 index 0000000000000000000000000000000000000000..ad27b5a2231d0526ebeb9d3f8a10a4bf56ce26a5 --- /dev/null +++ b/train/package_00038.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b950b95f6c90b27b4686fe4e1f115e6ef7c746acf70a18d60983bf310a94cfd +size 67748 diff --git a/train/package_00039.png b/train/package_00039.png new file mode 100644 index 0000000000000000000000000000000000000000..4d18adebfc3f39bfdd49c84f03c507fa71d9148d --- /dev/null +++ b/train/package_00039.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d130b7012bb9bfa9e0b6fe58edd8506fd0c28a110cf8f40037121c9568da06f1 +size 73728 diff --git a/train/package_00040.png b/train/package_00040.png new file mode 100644 index 0000000000000000000000000000000000000000..03c27d96c13763a1255a0c80a65ff59cf1c7e651 --- /dev/null +++ b/train/package_00040.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3cd00de2740ff61a4f3bf4bb8a6bad4eceecb9e5cb0669f3b27993da05b8ec +size 71716 diff --git a/train/package_00041.png b/train/package_00041.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ca3020b06b4f7d34e15daf6276ed8cf90d1253 --- /dev/null +++ b/train/package_00041.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6c51a4a94075b74aacf95edd83e5e7638ce2ffcb3a177b6ccf89e2e11122bf +size 75903 diff --git a/train/package_00042.png b/train/package_00042.png new file mode 100644 index 0000000000000000000000000000000000000000..37efb383dd16ed6964aac97fd4f28b7bcdac98e0 --- /dev/null +++ b/train/package_00042.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2660d7a107e6b9f525cfd68ac4957508629b8eeb4d9f5e8c7903a229b988b686 +size 77342 diff --git a/train/package_00043.png b/train/package_00043.png new file mode 100644 index 0000000000000000000000000000000000000000..8e3e6c82f0e61d4bbaa4c8618d5734cd254587db --- /dev/null +++ b/train/package_00043.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f3c71f5cd251f370f5f8b5292b6c5e632d3335d05b85010f39c74906db8f1af +size 73191 diff --git a/train/package_00044.png b/train/package_00044.png new file mode 100644 index 0000000000000000000000000000000000000000..02eb651f39ee2785888b895b30223f0c81dd6ecb --- /dev/null +++ b/train/package_00044.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e5851241358c0fb5c54f04089429cb872c4f491a5b434e5488580dd0225405 +size 76118 diff --git a/train/package_00045.png b/train/package_00045.png new file mode 100644 index 0000000000000000000000000000000000000000..07f82e9dc859cb4c4a7f8ac98e3ce6ecdb35981e --- /dev/null +++ b/train/package_00045.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c69f3e21a44c7f243337cb89bb62c33781814fec1239af62025a53d84c27d24 +size 76781 diff --git a/train/package_00046.png b/train/package_00046.png new file mode 100644 index 0000000000000000000000000000000000000000..d223f00be07b72c857cb49cd465e112712e3a00b --- /dev/null +++ b/train/package_00046.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9caaf7d54bebb636b04b2dafd990e20cf9bc829210f9fdbf015119a977d0fc61 +size 64090 diff --git a/train/package_00047.png b/train/package_00047.png new file mode 100644 index 0000000000000000000000000000000000000000..847e00498ae7b4df1f94970bc3b6f4a1b2d811a4 --- /dev/null +++ b/train/package_00047.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3ca119d647316d3ffa8edcac0eb3dcb5f155b7c1842fe2c8a059f1bfb69098 +size 67768 diff --git a/train/package_00048.png b/train/package_00048.png new file mode 100644 index 0000000000000000000000000000000000000000..3f4ee8871afdee0b1a1acf33bcdfc896dca0544c --- /dev/null +++ b/train/package_00048.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baaba74b60ae24757ae9199d68546f61fe0707c1afd51b225136b6550c662c60 +size 72235 diff --git a/train/package_00049.png b/train/package_00049.png new file mode 100644 index 0000000000000000000000000000000000000000..1a1aad9df83cfc4c5959865bb3f118bd8777bc94 --- /dev/null +++ b/train/package_00049.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcfca0d6227374cb690080437bcbe4eeaeac879ac5425c3e5a3537ed9f234a2 +size 72481 diff --git a/train/package_00050.png b/train/package_00050.png new file mode 100644 index 0000000000000000000000000000000000000000..d9c4bf0d423b3142bed97c8c8f6d187ac19a0f18 --- /dev/null +++ b/train/package_00050.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0302ec92334a100f0b084cb8f1ba58f23d99d45e6e0bcaa5a53957fe51443941 +size 66513 diff --git a/val/annotations.json b/val/annotations.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a6694fb12e9cd94030e400597580c4259c39a1 --- /dev/null +++ b/val/annotations.json @@ -0,0 +1,3882 @@ +[ + { + "file_name": "package_00051.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00051", + "order_date": "2026-06-26", + "sales_order_number": "578595", + "po_number": "PO-45464" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "18", + "unit_price": "125", + "total_price": "2250" + }, + { + "sr_no": "2", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "5", + "unit_price": "60", + "total_price": "300" + }, + { + "sr_no": "3", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "2", + "unit_price": "100", + "total_price": "200" + } + ], + "summary": { + "total_quantity": "25", + "sub_total": "2750", + "tax": "200", + "freight": "150", + "grand_total": "3100" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000512026-06-26578595PO-454641Security Seal StripSEC-4011812522502Pallet Label CardPAL-3185603003Plastic SleeveSLV-89021002002527502001503100Attach invoice copy to shipment" + }, + { + "file_name": "package_00052.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00052", + "order_date": "2026-06-26", + "sales_order_number": "564392", + "po_number": "PO-37296" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "13", + "unit_price": "60", + "total_price": "780" + }, + { + "sr_no": "2", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "18", + "unit_price": "100", + "total_price": "1800" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "15", + "unit_price": "10", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "5", + "unit_price": "175", + "total_price": "875" + }, + { + "sr_no": "5", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "20", + "unit_price": "10", + "total_price": "200" + }, + { + "sr_no": "6", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "2", + "unit_price": "40", + "total_price": "80" + }, + { + "sr_no": "7", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "3", + "unit_price": "175", + "total_price": "525" + } + ], + "summary": { + "total_quantity": "76", + "sub_total": "4410", + "tax": "0", + "freight": "150", + "grand_total": "4560" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000522026-06-26564392PO-372961Gift Wrap SheetGFT-81213607802Barcode Sticker RollBAR-2441810018003Mailer Box LargeMBOX-LG15101504Return Label SheetRTN-50951758755Shipping Label PackLBL-45020102006Warranty CardWAR-110240807Kraft Paper RollKRAFT-221317552576441001504560Attach invoice copy to shipment" + }, + { + "file_name": "package_00053.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00053", + "order_date": "2026-04-08", + "sales_order_number": "524531", + "po_number": "PO-68212" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "12", + "unit_price": "250", + "total_price": "3000" + }, + { + "sr_no": "2", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "19", + "unit_price": "15", + "total_price": "285" + }, + { + "sr_no": "3", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "15", + "unit_price": "10", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "10", + "unit_price": "15", + "total_price": "150" + }, + { + "sr_no": "5", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "20", + "unit_price": "12", + "total_price": "240" + } + ], + "summary": { + "total_quantity": "76", + "sub_total": "3825", + "tax": "125", + "freight": "75", + "grand_total": "4025" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000532026-04-08524531PO-682121Shipping Label PackLBL-4501225030002Die Cut InsertDCI-72519152853Invoice CopyINV-COPY15101504Kraft Paper RollKRAFT-22110151505Custom Poly MailerPOLY-6202012240763825125754025Priority delivery requested" + }, + { + "file_name": "package_00054.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00054", + "order_date": "2026-03-13", + "sales_order_number": "521297", + "po_number": "PO-62595" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "5", + "unit_price": "200", + "total_price": "1000" + }, + { + "sr_no": "2", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "19", + "unit_price": "125", + "total_price": "2375" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "17", + "unit_price": "20", + "total_price": "340" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "11", + "unit_price": "200", + "total_price": "2200" + }, + { + "sr_no": "5", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "11", + "unit_price": "90", + "total_price": "990" + }, + { + "sr_no": "6", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "2", + "unit_price": "175", + "total_price": "350" + } + ], + "summary": { + "total_quantity": "65", + "sub_total": "7255", + "tax": "150", + "freight": "250", + "grand_total": "7655" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000542026-03-13521297PO-625951Invoice CopyINV-COPY520010002Ad DesignAD-DES-0031912523753Documentation PouchDOC-87217203404Packing TapeTAPE-3381120022005Thermal Label RollTHR-61211909906Fragile Label SetFRG-11221753506572551502507655Partial shipment allowed" + }, + { + "file_name": "package_00055.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00055", + "order_date": "2026-07-29", + "sales_order_number": "579740", + "po_number": "PO-45968" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "9", + "unit_price": "225", + "total_price": "2025" + }, + { + "sr_no": "2", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "3", + "unit_price": "125", + "total_price": "375" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "2", + "unit_price": "75", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "12", + "unit_price": "25", + "total_price": "300" + } + ], + "summary": { + "total_quantity": "26", + "sub_total": "2850", + "tax": "0", + "freight": "125", + "grand_total": "2975" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000552026-07-29579740PO-459681Logo Sticker PackLOGO-754922520252Moisture Guard BagMGB-30931253753Die Cut InsertDCI-7252751504Documentation PouchDOC-872122530026285001252975Deliver during business hours" + }, + { + "file_name": "package_00056.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00056", + "order_date": "2026-09-15", + "sales_order_number": "568863", + "po_number": "PO-59859" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "4", + "unit_price": "12", + "total_price": "48" + }, + { + "sr_no": "2", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "6", + "unit_price": "200", + "total_price": "1200" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "10", + "unit_price": "100", + "total_price": "1000" + }, + { + "sr_no": "4", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "4", + "unit_price": "250", + "total_price": "1000" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "8", + "unit_price": "40", + "total_price": "320" + }, + { + "sr_no": "6", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "18", + "unit_price": "200", + "total_price": "3600" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "10", + "unit_price": "50", + "total_price": "500" + }, + { + "sr_no": "8", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "13", + "unit_price": "200", + "total_price": "2600" + } + ], + "summary": { + "total_quantity": "73", + "sub_total": "10268", + "tax": "100", + "freight": "0", + "grand_total": "10368" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000562026-09-15568863PO-598591Die Cut InsertDCI-725412482Warranty CardWAR-110620012003Instruction LeafletLEAF-5571010010004Logo Sticker PackLOGO-754425010005Foam InsertFOM-5608403206Packing Slip CopyPSC-3911820036007Mailer Box LargeMBOX-LG10505008Ad DesignAD-DES-0031320026007310268100010368Do not stack above five cartons" + }, + { + "file_name": "package_00057.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00057", + "order_date": "2026-09-03", + "sales_order_number": "567978", + "po_number": "PO-56887" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "19", + "unit_price": "15", + "total_price": "285" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "18", + "unit_price": "100", + "total_price": "1800" + }, + { + "sr_no": "3", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "19", + "unit_price": "40", + "total_price": "760" + }, + { + "sr_no": "4", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "12", + "unit_price": "200", + "total_price": "2400" + }, + { + "sr_no": "5", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "15", + "unit_price": "175", + "total_price": "2625" + } + ], + "summary": { + "total_quantity": "83", + "sub_total": "7870", + "tax": "50", + "freight": "50", + "grand_total": "7970" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000572026-09-03567978PO-568871Product ManualMAN-78019152852Corner ProtectorCRN-0191810018003Documentation PouchDOC-87219407604Mailer Box SmallMBOX-SM1220024005Packing TapeTAPE-33815175262583787050507970Verify carton count before dispatch" + }, + { + "file_name": "package_00058.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00058", + "order_date": "2026-04-06", + "sales_order_number": "584663", + "po_number": "PO-59912" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "14", + "unit_price": "15", + "total_price": "210" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "4", + "unit_price": "250", + "total_price": "1000" + }, + { + "sr_no": "3", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "13", + "unit_price": "75", + "total_price": "975" + } + ], + "summary": { + "total_quantity": "31", + "sub_total": "2185", + "tax": "50", + "freight": "100", + "grand_total": "2335" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000582026-04-06584663PO-599121Moisture Guard BagMGB-30914152102Fragile Label SetFRG-112425010003Corrugated DividerDIV-7311375975312185501002335Attach invoice copy to shipment" + }, + { + "file_name": "package_00059.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00059", + "order_date": "2026-01-20", + "sales_order_number": "590011", + "po_number": "PO-66679" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "14", + "unit_price": "100", + "total_price": "1400" + }, + { + "sr_no": "2", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "3", + "unit_price": "60", + "total_price": "180" + }, + { + "sr_no": "3", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "11", + "unit_price": "15", + "total_price": "165" + }, + { + "sr_no": "4", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "12", + "unit_price": "150", + "total_price": "1800" + } + ], + "summary": { + "total_quantity": "40", + "sub_total": "3545", + "tax": "50", + "freight": "150", + "grand_total": "3745" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000592026-01-20590011PO-666791Product ManualMAN-7801410014002Gift Wrap SheetGFT-8123601803Hang Tag BundleTAG-14911151654Bubble Wrap RollBUB-908121501800403545501503745Priority delivery requested" + }, + { + "file_name": "package_00060.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00060", + "order_date": "2026-03-19", + "sales_order_number": "543217", + "po_number": "PO-43682" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "8", + "unit_price": "225", + "total_price": "1800" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "15", + "unit_price": "150", + "total_price": "2250" + }, + { + "sr_no": "3", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "19", + "unit_price": "150", + "total_price": "2850" + } + ], + "summary": { + "total_quantity": "42", + "sub_total": "6900", + "tax": "125", + "freight": "100", + "grand_total": "7125" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000602026-03-19543217PO-436821Gift Wrap SheetGFT-812822518002Kraft Paper RollKRAFT-2211515022503Custom Poly MailerPOLY-6201915028504269001251007125Shipment can be split by item line" + }, + { + "file_name": "package_00061.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00061", + "order_date": "2026-03-14", + "sales_order_number": "534204", + "po_number": "PO-41866" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "2", + "unit_price": "100", + "total_price": "200" + }, + { + "sr_no": "2", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "12", + "unit_price": "30", + "total_price": "360" + }, + { + "sr_no": "3", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "3", + "unit_price": "40", + "total_price": "120" + }, + { + "sr_no": "4", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "11", + "unit_price": "100", + "total_price": "1100" + }, + { + "sr_no": "5", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "16", + "unit_price": "10", + "total_price": "160" + }, + { + "sr_no": "6", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "6", + "unit_price": "12", + "total_price": "72" + }, + { + "sr_no": "7", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "17", + "unit_price": "25", + "total_price": "425" + } + ], + "summary": { + "total_quantity": "67", + "sub_total": "2437", + "tax": "0", + "freight": "100", + "grand_total": "2537" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000612026-03-14534204PO-418661Gift Wrap SheetGFT-81221002002Pallet Label CardPAL-31812303603Invoice CopyINV-COPY3401204Printed CartonCRT-6701110011005Kraft Paper RollKRAFT-22116101606Corner ProtectorCRN-019612727Logo Sticker PackLOGO-754172542567243701002537Use dock entrance for unloading" + }, + { + "file_name": "package_00062.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Northline Supplies", + "address": "7455 Drew Court, White City, KS 66872", + "phone_number": "+91-88390-36062" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00062", + "order_date": "2026-11-09", + "sales_order_number": "556604", + "po_number": "PO-61940" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "19", + "unit_price": "100", + "total_price": "1900" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "5", + "unit_price": "100", + "total_price": "500" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "9", + "unit_price": "10", + "total_price": "90" + }, + { + "sr_no": "4", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "1", + "unit_price": "12", + "total_price": "12" + }, + { + "sr_no": "5", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "7", + "unit_price": "75", + "total_price": "525" + }, + { + "sr_no": "6", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "4", + "unit_price": "25", + "total_price": "100" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "20", + "unit_price": "10", + "total_price": "200" + }, + { + "sr_no": "8", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "4", + "unit_price": "200", + "total_price": "800" + } + ], + "summary": { + "total_quantity": "69", + "sub_total": "4127", + "tax": "150", + "freight": "50", + "grand_total": "4327" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000622026-11-09556604PO-619401Barcode Sticker RollBAR-2441910019002Printed CartonCRT-67051005003Mailer Box LargeMBOX-LG910904Packing Slip CopyPSC-391112125Shipping Label PackLBL-4507755256Security Seal StripSEC-4014251007Mailer Box SmallMBOX-SM20102008Foam InsertFOM-5604200800694127150504327Priority delivery requested" + }, + { + "file_name": "package_00063.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "OakBridge Market", + "bill_to_address": "15 Elm Street, Boston, MA 02108", + "ship_to_name": "OakBridge Market", + "ship_to_address": "112 Dock Road, Everett, MA 02149" + }, + "document": { + "package_number": "PKG00063", + "order_date": "2026-01-27", + "sales_order_number": "532369", + "po_number": "PO-41185" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "18", + "unit_price": "200", + "total_price": "3600" + }, + { + "sr_no": "2", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "14", + "unit_price": "20", + "total_price": "280" + }, + { + "sr_no": "3", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "11", + "unit_price": "225", + "total_price": "2475" + }, + { + "sr_no": "4", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "13", + "unit_price": "100", + "total_price": "1300" + } + ], + "summary": { + "total_quantity": "56", + "sub_total": "7655", + "tax": "0", + "freight": "0", + "grand_total": "7655" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000632026-01-27532369PO-411851Logo Sticker PackLOGO-7541820036002Foam InsertFOM-56014202803Plastic SleeveSLV-8901122524754Documentation PouchDOC-872131001300567655007655Partial shipment allowed" + }, + { + "file_name": "package_00064.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00064", + "order_date": "2026-10-08", + "sales_order_number": "593433", + "po_number": "PO-46839" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "14", + "unit_price": "10", + "total_price": "140" + }, + { + "sr_no": "2", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "16", + "unit_price": "60", + "total_price": "960" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "5", + "unit_price": "150", + "total_price": "750" + }, + { + "sr_no": "4", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "2", + "unit_price": "100", + "total_price": "200" + }, + { + "sr_no": "5", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "12", + "unit_price": "20", + "total_price": "240" + }, + { + "sr_no": "6", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "11", + "unit_price": "40", + "total_price": "440" + } + ], + "summary": { + "total_quantity": "60", + "sub_total": "2730", + "tax": "200", + "freight": "150", + "grand_total": "3080" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000642026-10-08593433PO-468391Mailer Box SmallMBOX-SM14101402Warranty CardWAR-11016609603Die Cut InsertDCI-72551507504Thermal Label RollTHR-61221002005Corner ProtectorCRN-01912202406Instruction LeafletLEAF-55711404406027302001503080Use dock entrance for unloading" + }, + { + "file_name": "package_00065.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00065", + "order_date": "2026-09-25", + "sales_order_number": "537983", + "po_number": "PO-40567" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "9", + "unit_price": "150", + "total_price": "1350" + }, + { + "sr_no": "2", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "2", + "unit_price": "200", + "total_price": "400" + }, + { + "sr_no": "3", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "13", + "unit_price": "250", + "total_price": "3250" + }, + { + "sr_no": "4", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "3", + "unit_price": "12", + "total_price": "36" + }, + { + "sr_no": "5", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "17", + "unit_price": "100", + "total_price": "1700" + } + ], + "summary": { + "total_quantity": "44", + "sub_total": "6736", + "tax": "0", + "freight": "75", + "grand_total": "6811" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000652026-09-25537983PO-405671Mailer Box SmallMBOX-SM915013502Pallet Label CardPAL-31822004003Gift Wrap SheetGFT-8121325032504Logo Sticker PackLOGO-754312365Return Label SheetRTN-5091710017004467360756811Deliver during business hours" + }, + { + "file_name": "package_00066.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00066", + "order_date": "2026-03-06", + "sales_order_number": "534379", + "po_number": "PO-48189" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "15", + "unit_price": "10", + "total_price": "150" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "11", + "unit_price": "20", + "total_price": "220" + }, + { + "sr_no": "3", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "5", + "unit_price": "10", + "total_price": "50" + } + ], + "summary": { + "total_quantity": "31", + "sub_total": "420", + "tax": "0", + "freight": "250", + "grand_total": "670" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000662026-03-06534379PO-481891Packing TapeTAPE-33815101502Fragile Label SetFRG-11211202203Return Label SheetRTN-50951050314200250670Do not stack above five cartons" + }, + { + "file_name": "package_00067.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00067", + "order_date": "2026-12-04", + "sales_order_number": "552903", + "po_number": "PO-32841" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "2", + "unit_price": "75", + "total_price": "150" + }, + { + "sr_no": "2", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "2", + "unit_price": "10", + "total_price": "20" + }, + { + "sr_no": "3", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "8", + "unit_price": "10", + "total_price": "80" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "20", + "unit_price": "125", + "total_price": "2500" + }, + { + "sr_no": "5", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "3", + "unit_price": "12", + "total_price": "36" + }, + { + "sr_no": "6", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "2", + "unit_price": "25", + "total_price": "50" + }, + { + "sr_no": "7", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "15", + "unit_price": "12", + "total_price": "180" + } + ], + "summary": { + "total_quantity": "52", + "sub_total": "3016", + "tax": "0", + "freight": "150", + "grand_total": "3166" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000672026-12-04552903PO-328411Moisture Guard BagMGB-3092751502Product ManualMAN-780210203Corner ProtectorCRN-019810804Invoice CopyINV-COPY2012525005Shipping Label PackLBL-450312366Printed CartonCRT-670225507Barcode Sticker RollBAR-244151218052301601503166Priority delivery requested" + }, + { + "file_name": "package_00068.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Vertex Home Mart", + "bill_to_address": "312 King Street, Seattle, WA 98104", + "ship_to_name": "Vertex Home Mart", + "ship_to_address": "810 Depot Road, Tacoma, WA 98421" + }, + "document": { + "package_number": "PKG00068", + "order_date": "2026-10-22", + "sales_order_number": "502234", + "po_number": "PO-36425" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "15", + "unit_price": "175", + "total_price": "2625" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "11", + "unit_price": "150", + "total_price": "1650" + }, + { + "sr_no": "3", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "1", + "unit_price": "175", + "total_price": "175" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "5", + "unit_price": "75", + "total_price": "375" + }, + { + "sr_no": "5", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "13", + "unit_price": "20", + "total_price": "260" + }, + { + "sr_no": "6", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "1", + "unit_price": "40", + "total_price": "40" + }, + { + "sr_no": "7", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "3", + "unit_price": "20", + "total_price": "60" + } + ], + "summary": { + "total_quantity": "49", + "sub_total": "5185", + "tax": "100", + "freight": "125", + "grand_total": "5410" + }, + "notes": "Use dock entrance for unloading" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000682026-10-22502234PO-364251Barcode Sticker RollBAR-2441517526252Corner ProtectorCRN-0191115016503Thermal Label RollTHR-61211751754Instruction LeafletLEAF-5575753755Return Label SheetRTN-50913202606Foam InsertFOM-560140407Mailer Box LargeMBOX-LG320604951851001255410Use dock entrance for unloading" + }, + { + "file_name": "package_00069.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00069", + "order_date": "2026-03-22", + "sales_order_number": "579348", + "po_number": "PO-46711" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "9", + "unit_price": "12", + "total_price": "108" + }, + { + "sr_no": "2", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "11", + "unit_price": "10", + "total_price": "110" + }, + { + "sr_no": "3", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "4", + "unit_price": "100", + "total_price": "400" + }, + { + "sr_no": "4", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "14", + "unit_price": "225", + "total_price": "3150" + } + ], + "summary": { + "total_quantity": "38", + "sub_total": "3768", + "tax": "0", + "freight": "200", + "grand_total": "3968" + }, + "notes": "Attach invoice copy to shipment" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000692026-03-22579348PO-467111Moisture Guard BagMGB-3099121082Documentation PouchDOC-87211101103Kraft Paper RollKRAFT-22141004004Mailer Box SmallMBOX-SM14225315038376802003968Attach invoice copy to shipment" + }, + { + "file_name": "package_00070.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00070", + "order_date": "2026-03-16", + "sales_order_number": "570873", + "po_number": "PO-36068" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "8", + "unit_price": "10", + "total_price": "80" + }, + { + "sr_no": "2", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "15", + "unit_price": "30", + "total_price": "450" + }, + { + "sr_no": "3", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "18", + "unit_price": "30", + "total_price": "540" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "12", + "unit_price": "20", + "total_price": "240" + } + ], + "summary": { + "total_quantity": "53", + "sub_total": "1310", + "tax": "150", + "freight": "75", + "grand_total": "1535" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000702026-03-16570873PO-360681Pallet Label CardPAL-318810802Custom Poly MailerPOLY-62015304503Barcode Sticker RollBAR-24418305404Invoice CopyINV-COPY1220240531310150751535Keep goods dry during transit" + }, + { + "file_name": "package_00071.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Canyon Craft Supplies", + "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", + "ship_to_name": "Canyon Craft Supplies", + "ship_to_address": "77 South Yard Way, Tempe, AZ 85281" + }, + "document": { + "package_number": "PKG00071", + "order_date": "2026-04-20", + "sales_order_number": "527649", + "po_number": "PO-38630" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "10", + "unit_price": "100", + "total_price": "1000" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "6", + "unit_price": "15", + "total_price": "90" + }, + { + "sr_no": "3", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "14", + "unit_price": "200", + "total_price": "2800" + }, + { + "sr_no": "4", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "20", + "unit_price": "15", + "total_price": "300" + }, + { + "sr_no": "5", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "1", + "unit_price": "15", + "total_price": "15" + }, + { + "sr_no": "6", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "2", + "unit_price": "60", + "total_price": "120" + }, + { + "sr_no": "7", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "10", + "unit_price": "30", + "total_price": "300" + }, + { + "sr_no": "8", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "6", + "unit_price": "225", + "total_price": "1350" + } + ], + "summary": { + "total_quantity": "69", + "sub_total": "5975", + "tax": "125", + "freight": "50", + "grand_total": "6150" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000712026-04-20527649PO-386301Thermal Label RollTHR-6121010010002Corner ProtectorCRN-019615903Packing Slip CopyPSC-3911420028004Foam InsertFOM-56020153005Die Cut InsertDCI-725115156Printed CartonCRT-6702601207Return Label SheetRTN-50910303008Corrugated DividerDIV-73162251350695975125506150Shipment can be split by item line" + }, + { + "file_name": "package_00072.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00072", + "order_date": "2026-08-23", + "sales_order_number": "525471", + "po_number": "PO-67932" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "7", + "unit_price": "125", + "total_price": "875" + }, + { + "sr_no": "2", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "6", + "unit_price": "75", + "total_price": "450" + }, + { + "sr_no": "3", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "14", + "unit_price": "20", + "total_price": "280" + }, + { + "sr_no": "4", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "17", + "unit_price": "20", + "total_price": "340" + } + ], + "summary": { + "total_quantity": "44", + "sub_total": "1945", + "tax": "125", + "freight": "0", + "grand_total": "2070" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000722026-08-23525471PO-679321Return Label SheetRTN-50971258752Custom Poly MailerPOLY-6206754503Bubble Wrap RollBUB-90814202804Kraft Paper RollKRAFT-221172034044194512502070Deliver during business hours" + }, + { + "file_name": "package_00073.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00073", + "order_date": "2026-12-07", + "sales_order_number": "570796", + "po_number": "PO-31544" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "4", + "unit_price": "250", + "total_price": "1000" + }, + { + "sr_no": "2", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "16", + "unit_price": "10", + "total_price": "160" + }, + { + "sr_no": "3", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "19", + "unit_price": "15", + "total_price": "285" + }, + { + "sr_no": "4", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "13", + "unit_price": "175", + "total_price": "2275" + } + ], + "summary": { + "total_quantity": "52", + "sub_total": "3720", + "tax": "125", + "freight": "250", + "grand_total": "4095" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000732026-12-07570796PO-315441Corrugated DividerDIV-731425010002Shipping Label PackLBL-45016101603Hang Tag BundleTAG-14919152854Security Seal StripSEC-4011317522755237201252504095Handle cartons with care" + }, + { + "file_name": "package_00074.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00074", + "order_date": "2026-04-03", + "sales_order_number": "542517", + "po_number": "PO-41110" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "15", + "unit_price": "60", + "total_price": "900" + }, + { + "sr_no": "2", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "19", + "unit_price": "75", + "total_price": "1425" + }, + { + "sr_no": "3", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "18", + "unit_price": "225", + "total_price": "4050" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "5", + "unit_price": "175", + "total_price": "875" + } + ], + "summary": { + "total_quantity": "57", + "sub_total": "7250", + "tax": "125", + "freight": "50", + "grand_total": "7425" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000742026-04-03542517PO-411101Foam InsertFOM-56015609002Moisture Guard BagMGB-309197514253Packing Slip CopyPSC-3911822540504Packing TapeTAPE-3385175875577250125507425Verify carton count before dispatch" + }, + { + "file_name": "package_00075.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Pacific Label House", + "address": "311 Ocean Park Blvd, San Diego, CA 92109", + "phone_number": "+1-619-555-0154" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00075", + "order_date": "2026-06-20", + "sales_order_number": "534124", + "po_number": "PO-64052" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "12", + "unit_price": "30", + "total_price": "360" + }, + { + "sr_no": "2", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "2", + "unit_price": "50", + "total_price": "100" + }, + { + "sr_no": "3", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "20", + "unit_price": "30", + "total_price": "600" + } + ], + "summary": { + "total_quantity": "34", + "sub_total": "1060", + "tax": "0", + "freight": "50", + "grand_total": "1110" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000752026-06-20534124PO-640521Printed CartonCRT-67012303602Instruction LeafletLEAF-5572501003Moisture Guard BagMGB-30920306003410600501110Do not stack above five cartons" + }, + { + "file_name": "package_00076.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00076", + "order_date": "2026-10-29", + "sales_order_number": "560184", + "po_number": "PO-67783" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "17", + "unit_price": "125", + "total_price": "2125" + }, + { + "sr_no": "2", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "5", + "unit_price": "200", + "total_price": "1000" + }, + { + "sr_no": "3", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "1", + "unit_price": "20", + "total_price": "20" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "1", + "unit_price": "12", + "total_price": "12" + } + ], + "summary": { + "total_quantity": "24", + "sub_total": "3157", + "tax": "100", + "freight": "100", + "grand_total": "3357" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000762026-10-29560184PO-677831Documentation PouchDOC-8721712521252Hang Tag BundleTAG-149520010003Plastic SleeveSLV-890120204Ad DesignAD-DES-003112122431571001003357Deliver during business hours" + }, + { + "file_name": "package_00077.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00077", + "order_date": "2026-09-21", + "sales_order_number": "525000", + "po_number": "PO-67834" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "17", + "unit_price": "100", + "total_price": "1700" + }, + { + "sr_no": "2", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "15", + "unit_price": "125", + "total_price": "1875" + }, + { + "sr_no": "3", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "11", + "unit_price": "250", + "total_price": "2750" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "14", + "unit_price": "30", + "total_price": "420" + }, + { + "sr_no": "5", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "3", + "unit_price": "90", + "total_price": "270" + } + ], + "summary": { + "total_quantity": "60", + "sub_total": "7015", + "tax": "200", + "freight": "50", + "grand_total": "7265" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000772026-09-21525000PO-678341Kraft Paper RollKRAFT-2211710017002Custom Poly MailerPOLY-6201512518753Ad DesignAD-DES-0031125027504Instruction LeafletLEAF-55714304205Gift Wrap SheetGFT-812390270607015200507265Verify carton count before dispatch" + }, + { + "file_name": "package_00078.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "GreenLeaf Cartons", + "address": "58 Rosewood Avenue, Portland, OR 97205", + "phone_number": "+1-503-555-0141" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00078", + "order_date": "2026-01-22", + "sales_order_number": "551264", + "po_number": "PO-65696" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "1", + "unit_price": "12", + "total_price": "12" + }, + { + "sr_no": "2", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "16", + "unit_price": "20", + "total_price": "320" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "2", + "unit_price": "30", + "total_price": "60" + }, + { + "sr_no": "4", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "4", + "unit_price": "125", + "total_price": "500" + }, + { + "sr_no": "5", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "15", + "unit_price": "250", + "total_price": "3750" + }, + { + "sr_no": "6", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "6", + "unit_price": "50", + "total_price": "300" + }, + { + "sr_no": "7", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "14", + "unit_price": "175", + "total_price": "2450" + } + ], + "summary": { + "total_quantity": "58", + "sub_total": "7392", + "tax": "50", + "freight": "125", + "grand_total": "7567" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000782026-01-22551264PO-656961Mailer Box LargeMBOX-LG112122Custom Poly MailerPOLY-62016203203Mailer Box SmallMBOX-SM230604Die Cut InsertDCI-72541255005Ad DesignAD-DES-0031525037506Pallet Label CardPAL-3186503007Thermal Label RollTHR-612141752450587392501257567Verify carton count before dispatch" + }, + { + "file_name": "package_00079.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00079", + "order_date": "2026-05-17", + "sales_order_number": "528501", + "po_number": "PO-30703" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "6", + "unit_price": "15", + "total_price": "90" + }, + { + "sr_no": "2", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "18", + "unit_price": "12", + "total_price": "216" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "4", + "unit_price": "75", + "total_price": "300" + } + ], + "summary": { + "total_quantity": "28", + "sub_total": "606", + "tax": "100", + "freight": "300", + "grand_total": "1006" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000792026-05-17528501PO-307031Thermal Label RollTHR-612615902Gift Wrap SheetGFT-81218122163Die Cut InsertDCI-725475300286061003001006Customer signature required" + }, + { + "file_name": "package_00080.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Jeff Ritchie Stores", + "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", + "ship_to_name": "Jeff Ritchie Stores", + "ship_to_address": "7455 Drew Court, White City, KS 66872" + }, + "document": { + "package_number": "PKG00080", + "order_date": "2026-05-21", + "sales_order_number": "526443", + "po_number": "PO-36190" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "15", + "unit_price": "90", + "total_price": "1350" + }, + { + "sr_no": "2", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "18", + "unit_price": "90", + "total_price": "1620" + }, + { + "sr_no": "3", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "7", + "unit_price": "30", + "total_price": "210" + }, + { + "sr_no": "4", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "14", + "unit_price": "75", + "total_price": "1050" + } + ], + "summary": { + "total_quantity": "54", + "sub_total": "4230", + "tax": "0", + "freight": "200", + "grand_total": "4430" + }, + "notes": "Contact buyer before final delivery" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000802026-05-21526443PO-361901Pallet Label CardPAL-318159013502Invoice CopyINV-COPY189016203Hang Tag BundleTAG-1497302104Logo Sticker PackLOGO-7541475105054423002004430Contact buyer before final delivery" + }, + { + "file_name": "package_00081.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00081", + "order_date": "2026-09-15", + "sales_order_number": "566771", + "po_number": "PO-42689" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "14", + "unit_price": "40", + "total_price": "560" + }, + { + "sr_no": "2", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "3", + "unit_price": "20", + "total_price": "60" + }, + { + "sr_no": "3", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "2", + "unit_price": "20", + "total_price": "40" + }, + { + "sr_no": "4", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "20", + "unit_price": "40", + "total_price": "800" + }, + { + "sr_no": "5", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "15", + "unit_price": "90", + "total_price": "1350" + } + ], + "summary": { + "total_quantity": "54", + "sub_total": "2810", + "tax": "125", + "freight": "100", + "grand_total": "3035" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000812026-09-15566771PO-426891Printed CartonCRT-67014405602Barcode Sticker RollBAR-244320603Pallet Label CardPAL-318220404Invoice CopyINV-COPY20408005Hang Tag BundleTAG-149159013505428101251003035Keep goods dry during transit" + }, + { + "file_name": "package_00082.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "BluePeak Packaging Co", + "address": "214 Pine Ridge Lane, Boulder, CO 80302", + "phone_number": "+1-303-555-0194" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00082", + "order_date": "2026-08-05", + "sales_order_number": "522310", + "po_number": "PO-56875" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "4", + "unit_price": "150", + "total_price": "600" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "11", + "unit_price": "30", + "total_price": "330" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "19", + "unit_price": "100", + "total_price": "1900" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "19", + "unit_price": "90", + "total_price": "1710" + }, + { + "sr_no": "5", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "10", + "unit_price": "12", + "total_price": "120" + }, + { + "sr_no": "6", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "20", + "unit_price": "200", + "total_price": "4000" + }, + { + "sr_no": "7", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "2", + "unit_price": "20", + "total_price": "40" + } + ], + "summary": { + "total_quantity": "85", + "sub_total": "8700", + "tax": "0", + "freight": "100", + "grand_total": "8800" + }, + "notes": "Do not stack above five cartons" + } + }, + "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000822026-08-05522310PO-568751Warranty CardWAR-11041506002Fragile Label SetFRG-11211303303Mailer Box SmallMBOX-SM1910019004Ad DesignAD-DES-003199017105Barcode Sticker RollBAR-24410121206Documentation PouchDOC-8722020040007Hang Tag BundleTAG-1492204085870001008800Do not stack above five cartons" + }, + { + "file_name": "package_00083.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "EverReady Packaging", + "address": "301 Lakeside Drive, Madison, WI 53703", + "phone_number": "+1-608-555-0139" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00083", + "order_date": "2026-06-28", + "sales_order_number": "579866", + "po_number": "PO-47984" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "17", + "unit_price": "150", + "total_price": "2550" + }, + { + "sr_no": "2", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "19", + "unit_price": "40", + "total_price": "760" + }, + { + "sr_no": "3", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "2", + "unit_price": "200", + "total_price": "400" + }, + { + "sr_no": "4", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "5", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "7", + "unit_price": "175", + "total_price": "1225" + }, + { + "sr_no": "6", + "item_description": "Mailer Box Large", + "sku": "MBOX-LG", + "quantity": "8", + "unit_price": "200", + "total_price": "1600" + }, + { + "sr_no": "7", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "5", + "unit_price": "25", + "total_price": "125" + }, + { + "sr_no": "8", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "18", + "unit_price": "40", + "total_price": "720" + } + ], + "summary": { + "total_quantity": "85", + "sub_total": "7560", + "tax": "0", + "freight": "75", + "grand_total": "7635" + }, + "notes": "Handle cartons with care" + } + }, + "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000832026-06-28579866PO-479841Plastic SleeveSLV-8901715025502Product ManualMAN-78019407603Instruction LeafletLEAF-55722004004Ad DesignAD-DES-0039201805Return Label SheetRTN-509717512256Mailer Box LargeMBOX-LG820016007Printed CartonCRT-6705251258Thermal Label RollTHR-61218407208575600757635Handle cartons with care" + }, + { + "file_name": "package_00084.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Northline Supplies", + "address": "7455 Drew Court, White City, KS 66872", + "phone_number": "+91-88390-36062" + }, + "buyer": { + "bill_to_name": "Riverside Retail Group", + "bill_to_address": "72 Market Square, Chennai, TN 600001", + "ship_to_name": "Riverside Retail Group", + "ship_to_address": "18 Park Street, Pune, MH 411001" + }, + "document": { + "package_number": "PKG00084", + "order_date": "2026-06-19", + "sales_order_number": "509019", + "po_number": "PO-46877" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "6", + "unit_price": "150", + "total_price": "900" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "12", + "unit_price": "150", + "total_price": "1800" + }, + { + "sr_no": "3", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "12", + "unit_price": "200", + "total_price": "2400" + }, + { + "sr_no": "4", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "20", + "unit_price": "15", + "total_price": "300" + }, + { + "sr_no": "5", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "6", + "unit_price": "50", + "total_price": "300" + }, + { + "sr_no": "6", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "13", + "unit_price": "150", + "total_price": "1950" + }, + { + "sr_no": "7", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "2", + "unit_price": "125", + "total_price": "250" + } + ], + "summary": { + "total_quantity": "71", + "sub_total": "7900", + "tax": "100", + "freight": "300", + "grand_total": "8300" + }, + "notes": "Partial shipment allowed" + } + }, + "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000842026-06-19509019PO-468771Shipping Label PackLBL-45061509002Mailer Box SmallMBOX-SM1215018003Return Label SheetRTN-5091220024004Corrugated DividerDIV-73120153005Pallet Label CardPAL-3186503006Hang Tag BundleTAG-1491315019507Kraft Paper RollKRAFT-22121252507179001003008300Partial shipment allowed" + }, + { + "file_name": "package_00085.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Crestline Box Works", + "address": "8800 Valley Crest Road, Austin, TX 78745", + "phone_number": "+1-512-555-0176" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00085", + "order_date": "2026-09-27", + "sales_order_number": "537575", + "po_number": "PO-67933" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "12", + "unit_price": "200", + "total_price": "2400" + }, + { + "sr_no": "2", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "9", + "unit_price": "90", + "total_price": "810" + }, + { + "sr_no": "3", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "5", + "unit_price": "30", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "2", + "unit_price": "60", + "total_price": "120" + }, + { + "sr_no": "5", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "14", + "unit_price": "50", + "total_price": "700" + }, + { + "sr_no": "6", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "12", + "unit_price": "150", + "total_price": "1800" + }, + { + "sr_no": "7", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "3", + "unit_price": "200", + "total_price": "600" + } + ], + "summary": { + "total_quantity": "57", + "sub_total": "6580", + "tax": "0", + "freight": "200", + "grand_total": "6780" + }, + "notes": "Deliver during business hours" + } + }, + "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000852026-09-27537575PO-679331Ad DesignAD-DES-0031220024002Printed CartonCRT-6709908103Logo Sticker PackLOGO-7545301504Warranty CardWAR-1102601205Pallet Label CardPAL-31814507006Documentation PouchDOC-8721215018007Foam InsertFOM-560320060057658002006780Deliver during business hours" + }, + { + "file_name": "package_00086.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00086", + "order_date": "2026-08-08", + "sales_order_number": "532483", + "po_number": "PO-62145" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "5", + "unit_price": "250", + "total_price": "1250" + }, + { + "sr_no": "2", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "14", + "unit_price": "75", + "total_price": "1050" + }, + { + "sr_no": "3", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "14", + "unit_price": "150", + "total_price": "2100" + }, + { + "sr_no": "4", + "item_description": "Custom Poly Mailer", + "sku": "POLY-620", + "quantity": "18", + "unit_price": "250", + "total_price": "4500" + } + ], + "summary": { + "total_quantity": "51", + "sub_total": "8900", + "tax": "125", + "freight": "75", + "grand_total": "9100" + }, + "notes": "Verify carton count before dispatch" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000862026-08-08532483PO-621451Pallet Label CardPAL-318525012502Return Label SheetRTN-509147510503Invoice CopyINV-COPY1415021004Custom Poly MailerPOLY-620182504500518900125759100Verify carton count before dispatch" + }, + { + "file_name": "package_00087.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00087", + "order_date": "2026-05-11", + "sales_order_number": "529268", + "po_number": "PO-33885" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "4", + "unit_price": "100", + "total_price": "400" + }, + { + "sr_no": "2", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "18", + "unit_price": "25", + "total_price": "450" + }, + { + "sr_no": "3", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "19", + "unit_price": "20", + "total_price": "380" + }, + { + "sr_no": "4", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "1", + "unit_price": "90", + "total_price": "90" + }, + { + "sr_no": "5", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "20", + "unit_price": "10", + "total_price": "200" + } + ], + "summary": { + "total_quantity": "62", + "sub_total": "1520", + "tax": "0", + "freight": "200", + "grand_total": "1720" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000872026-05-11529268PO-338851Packing TapeTAPE-33841004002Instruction LeafletLEAF-55718254503Packing Slip CopyPSC-39119203804Die Cut InsertDCI-725190905Corrugated DividerDIV-731201020062152002001720Customer signature required" + }, + { + "file_name": "package_00088.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Hilltop Office Depot", + "bill_to_address": "140 Cedar Lane, Albany, NY 12207", + "ship_to_name": "Hilltop Office Depot", + "ship_to_address": "500 River Road, Troy, NY 12180" + }, + "document": { + "package_number": "PKG00088", + "order_date": "2026-03-31", + "sales_order_number": "514622", + "po_number": "PO-56428" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "6", + "unit_price": "50", + "total_price": "300" + }, + { + "sr_no": "2", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "11", + "unit_price": "40", + "total_price": "440" + }, + { + "sr_no": "3", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "7", + "unit_price": "30", + "total_price": "210" + } + ], + "summary": { + "total_quantity": "24", + "sub_total": "950", + "tax": "0", + "freight": "75", + "grand_total": "1025" + }, + "notes": "Shipment can be split by item line" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000882026-03-31514622PO-564281Printed CartonCRT-6706503002Mailer Box SmallMBOX-SM11404403Foam InsertFOM-560730210249500751025Shipment can be split by item line" + }, + { + "file_name": "package_00089.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Apex Cartons Ltd", + "address": "4799 Highland View Drive, Sacramento, CA 95815", + "phone_number": "+91-78778-81186" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00089", + "order_date": "2026-07-07", + "sales_order_number": "546973", + "po_number": "PO-40935" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "17", + "unit_price": "75", + "total_price": "1275" + }, + { + "sr_no": "2", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "13", + "unit_price": "30", + "total_price": "390" + }, + { + "sr_no": "3", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "20", + "unit_price": "175", + "total_price": "3500" + }, + { + "sr_no": "4", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "16", + "unit_price": "100", + "total_price": "1600" + } + ], + "summary": { + "total_quantity": "66", + "sub_total": "6765", + "tax": "50", + "freight": "200", + "grand_total": "7015" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000892026-07-07546973PO-409351Return Label SheetRTN-509177512752Product ManualMAN-78013303903Shipping Label PackLBL-4502017535004Die Cut InsertDCI-725161001600666765502007015Customer signature required" + }, + { + "file_name": "package_00090.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Central Furnishing Co", + "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", + "ship_to_name": "Central Furnishing Co", + "ship_to_address": "2300 Freight Drive, Marietta, GA 30060" + }, + "document": { + "package_number": "PKG00090", + "order_date": "2026-04-22", + "sales_order_number": "575005", + "po_number": "PO-47782" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "15", + "unit_price": "150", + "total_price": "2250" + }, + { + "sr_no": "2", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "12", + "unit_price": "75", + "total_price": "900" + }, + { + "sr_no": "3", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "20", + "unit_price": "15", + "total_price": "300" + }, + { + "sr_no": "4", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "20", + "unit_price": "60", + "total_price": "1200" + }, + { + "sr_no": "5", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "12", + "unit_price": "100", + "total_price": "1200" + }, + { + "sr_no": "6", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "14", + "unit_price": "225", + "total_price": "3150" + } + ], + "summary": { + "total_quantity": "93", + "sub_total": "9000", + "tax": "100", + "freight": "50", + "grand_total": "9150" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000902026-04-22575005PO-477821Gift Wrap SheetGFT-8121515022502Security Seal StripSEC-40112759003Corrugated DividerDIV-73120153004Packing TapeTAPE-338206012005Ad DesignAD-DES-0031210012006Plastic SleeveSLV-890142253150939000100509150Keep goods dry during transit" + }, + { + "file_name": "package_00091.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Mason Distribution", + "bill_to_address": "89 Foundry Street, Detroit, MI 48207", + "ship_to_name": "Mason Distribution", + "ship_to_address": "44 Logistics Park, Warren, MI 48089" + }, + "document": { + "package_number": "PKG00091", + "order_date": "2026-01-31", + "sales_order_number": "512920", + "po_number": "PO-66384" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "4", + "unit_price": "30", + "total_price": "120" + }, + { + "sr_no": "2", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "2", + "unit_price": "90", + "total_price": "180" + }, + { + "sr_no": "3", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "20", + "unit_price": "250", + "total_price": "5000" + }, + { + "sr_no": "4", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "20", + "unit_price": "125", + "total_price": "2500" + }, + { + "sr_no": "5", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "20", + "unit_price": "250", + "total_price": "5000" + }, + { + "sr_no": "6", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "4", + "unit_price": "150", + "total_price": "600" + }, + { + "sr_no": "7", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "10", + "unit_price": "25", + "total_price": "250" + }, + { + "sr_no": "8", + "item_description": "Plastic Sleeve", + "sku": "SLV-890", + "quantity": "12", + "unit_price": "250", + "total_price": "3000" + } + ], + "summary": { + "total_quantity": "92", + "sub_total": "16650", + "tax": "0", + "freight": "150", + "grand_total": "16800" + }, + "notes": "Contact buyer before final delivery" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000912026-01-31512920PO-663841Ad DesignAD-DES-0034301202Product ManualMAN-7802901803Die Cut InsertDCI-7252025050004Kraft Paper RollKRAFT-2212012525005Return Label SheetRTN-5092025050006Corner ProtectorCRN-01941506007Thermal Label RollTHR-61210252508Plastic SleeveSLV-8901225030009216650015016800Contact buyer before final delivery" + }, + { + "file_name": "package_00092.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "UrbanCarton Supply", + "address": "91 Sector 44 Road, Gurugram, HR 122003", + "phone_number": "+91-98122-55340" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00092", + "order_date": "2026-02-27", + "sales_order_number": "519136", + "po_number": "PO-51274" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "20", + "unit_price": "50", + "total_price": "1000" + }, + { + "sr_no": "2", + "item_description": "Corner Protector", + "sku": "CRN-019", + "quantity": "10", + "unit_price": "250", + "total_price": "2500" + }, + { + "sr_no": "3", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "9", + "unit_price": "15", + "total_price": "135" + }, + { + "sr_no": "4", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "4", + "unit_price": "10", + "total_price": "40" + }, + { + "sr_no": "5", + "item_description": "Hang Tag Bundle", + "sku": "TAG-149", + "quantity": "13", + "unit_price": "100", + "total_price": "1300" + }, + { + "sr_no": "6", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "20", + "unit_price": "40", + "total_price": "800" + } + ], + "summary": { + "total_quantity": "76", + "sub_total": "5775", + "tax": "50", + "freight": "100", + "grand_total": "5925" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000922026-02-27519136PO-512741Mailer Box SmallMBOX-SM205010002Corner ProtectorCRN-0191025025003Printed CartonCRT-6709151354Security Seal StripSEC-401410405Hang Tag BundleTAG-1491310013006Ad DesignAD-DES-0032040800765775501005925Customer signature required" + }, + { + "file_name": "package_00093.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00093", + "order_date": "2026-04-27", + "sales_order_number": "594430", + "po_number": "PO-32837" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Packing Slip Copy", + "sku": "PSC-391", + "quantity": "18", + "unit_price": "60", + "total_price": "1080" + }, + { + "sr_no": "2", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "5", + "unit_price": "40", + "total_price": "200" + }, + { + "sr_no": "3", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "10", + "unit_price": "15", + "total_price": "150" + }, + { + "sr_no": "4", + "item_description": "Pallet Label Card", + "sku": "PAL-318", + "quantity": "12", + "unit_price": "150", + "total_price": "1800" + }, + { + "sr_no": "5", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "9", + "unit_price": "20", + "total_price": "180" + }, + { + "sr_no": "6", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "3", + "unit_price": "40", + "total_price": "120" + }, + { + "sr_no": "7", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "12", + "unit_price": "100", + "total_price": "1200" + }, + { + "sr_no": "8", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "18", + "unit_price": "100", + "total_price": "1800" + } + ], + "summary": { + "total_quantity": "87", + "sub_total": "6530", + "tax": "0", + "freight": "125", + "grand_total": "6655" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000932026-04-27594430PO-328371Packing Slip CopyPSC-391186010802Ad DesignAD-DES-0035402003Mailer Box SmallMBOX-SM10151504Pallet Label CardPAL-3181215018005Gift Wrap SheetGFT-8129201806Thermal Label RollTHR-6123401207Logo Sticker PackLOGO-7541210012008Fragile Label SetFRG-11218100180087653001256655Customer signature required" + }, + { + "file_name": "package_00094.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "SilverBox Enterprises", + "address": "18 Race Course Road, Chennai, TN 600032", + "phone_number": "+91-94444-70981" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00094", + "order_date": "2026-04-09", + "sales_order_number": "586895", + "po_number": "PO-35365" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Mailer Box Small", + "sku": "MBOX-SM", + "quantity": "13", + "unit_price": "150", + "total_price": "1950" + }, + { + "sr_no": "2", + "item_description": "Kraft Paper Roll", + "sku": "KRAFT-221", + "quantity": "19", + "unit_price": "125", + "total_price": "2375" + }, + { + "sr_no": "3", + "item_description": "Gift Wrap Sheet", + "sku": "GFT-812", + "quantity": "13", + "unit_price": "200", + "total_price": "2600" + }, + { + "sr_no": "4", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "8", + "unit_price": "20", + "total_price": "160" + }, + { + "sr_no": "5", + "item_description": "Documentation Pouch", + "sku": "DOC-872", + "quantity": "7", + "unit_price": "30", + "total_price": "210" + } + ], + "summary": { + "total_quantity": "60", + "sub_total": "7295", + "tax": "0", + "freight": "150", + "grand_total": "7445" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000942026-04-09586895PO-353651Mailer Box SmallMBOX-SM1315019502Kraft Paper RollKRAFT-2211912523753Gift Wrap SheetGFT-8121320026004Instruction LeafletLEAF-5578201605Documentation PouchDOC-87273021060729501507445Keep goods dry during transit" + }, + { + "file_name": "package_00095.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Nova General Stores", + "bill_to_address": "6 MG Road, Bengaluru, KA 560001", + "ship_to_name": "Nova General Stores", + "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066" + }, + "document": { + "package_number": "PKG00095", + "order_date": "2026-05-22", + "sales_order_number": "579117", + "po_number": "PO-40968" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "13", + "unit_price": "75", + "total_price": "975" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "19", + "unit_price": "12", + "total_price": "228" + }, + { + "sr_no": "3", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "8", + "unit_price": "90", + "total_price": "720" + } + ], + "summary": { + "total_quantity": "40", + "sub_total": "1923", + "tax": "100", + "freight": "125", + "grand_total": "2148" + }, + "notes": "Priority delivery requested" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000952026-05-22579117PO-409681Bubble Wrap RollBUB-90813759752Fragile Label SetFRG-11219122283Packing TapeTAPE-3388907204019231001252148Priority delivery requested" + }, + { + "file_name": "package_00096.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Northline Supplies", + "address": "7455 Drew Court, White City, KS 66872", + "phone_number": "+91-88390-36062" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00096", + "order_date": "2026-04-03", + "sales_order_number": "576966", + "po_number": "PO-34030" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Die Cut Insert", + "sku": "DCI-725", + "quantity": "9", + "unit_price": "250", + "total_price": "2250" + }, + { + "sr_no": "2", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "7", + "unit_price": "10", + "total_price": "70" + }, + { + "sr_no": "3", + "item_description": "Moisture Guard Bag", + "sku": "MGB-309", + "quantity": "9", + "unit_price": "50", + "total_price": "450" + }, + { + "sr_no": "4", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "1", + "unit_price": "200", + "total_price": "200" + }, + { + "sr_no": "5", + "item_description": "Instruction Leaflet", + "sku": "LEAF-557", + "quantity": "11", + "unit_price": "15", + "total_price": "165" + }, + { + "sr_no": "6", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "1", + "unit_price": "15", + "total_price": "15" + }, + { + "sr_no": "7", + "item_description": "Invoice Copy", + "sku": "INV-COPY", + "quantity": "1", + "unit_price": "125", + "total_price": "125" + }, + { + "sr_no": "8", + "item_description": "Packing Tape", + "sku": "TAPE-338", + "quantity": "5", + "unit_price": "15", + "total_price": "75" + } + ], + "summary": { + "total_quantity": "44", + "sub_total": "3350", + "tax": "100", + "freight": "100", + "grand_total": "3550" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000962026-04-03576966PO-340301Die Cut InsertDCI-725925022502Warranty CardWAR-110710703Moisture Guard BagMGB-3099504504Return Label SheetRTN-50912002005Instruction LeafletLEAF-55711151656Logo Sticker PackLOGO-754115157Invoice CopyINV-COPY11251258Packing TapeTAPE-338515754433501001003550Customer signature required" + }, + { + "file_name": "package_00097.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Sunrise Stationers", + "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", + "ship_to_name": "Sunrise Stationers", + "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003" + }, + "document": { + "package_number": "PKG00097", + "order_date": "2026-03-09", + "sales_order_number": "589904", + "po_number": "PO-42188" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "5", + "unit_price": "30", + "total_price": "150" + }, + { + "sr_no": "2", + "item_description": "Logo Sticker Pack", + "sku": "LOGO-754", + "quantity": "19", + "unit_price": "60", + "total_price": "1140" + }, + { + "sr_no": "3", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "10", + "unit_price": "225", + "total_price": "2250" + }, + { + "sr_no": "4", + "item_description": "Barcode Sticker Roll", + "sku": "BAR-244", + "quantity": "6", + "unit_price": "150", + "total_price": "900" + } + ], + "summary": { + "total_quantity": "40", + "sub_total": "4440", + "tax": "150", + "freight": "125", + "grand_total": "4715" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000972026-03-09589904PO-421881Bubble Wrap RollBUB-9085301502Logo Sticker PackLOGO-754196011403Product ManualMAN-7801022522504Barcode Sticker RollBAR-24461509004044401501254715Keep goods dry during transit" + }, + { + "file_name": "package_00098.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "PrimePack Traders", + "address": "27 Industrial Estate, Pune, MH 411045", + "phone_number": "+91-98810-44231" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00098", + "order_date": "2026-11-17", + "sales_order_number": "544286", + "po_number": "PO-36446" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Product Manual", + "sku": "MAN-780", + "quantity": "15", + "unit_price": "175", + "total_price": "2625" + }, + { + "sr_no": "2", + "item_description": "Fragile Label Set", + "sku": "FRG-112", + "quantity": "3", + "unit_price": "75", + "total_price": "225" + }, + { + "sr_no": "3", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "15", + "unit_price": "15", + "total_price": "225" + } + ], + "summary": { + "total_quantity": "33", + "sub_total": "3075", + "tax": "200", + "freight": "200", + "grand_total": "3475" + }, + "notes": "Customer signature required" + } + }, + "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000982026-11-17544286PO-364461Product ManualMAN-7801517526252Fragile Label SetFRG-1123752253Security Seal StripSEC-40115152253330752002003475Customer signature required" + }, + { + "file_name": "package_00099.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "Summit Packaging Hub", + "address": "1700 Market Street, Denver, CO 80202", + "phone_number": "+1-720-555-0188" + }, + "buyer": { + "bill_to_name": "Orbit Commerce Pvt Ltd", + "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", + "ship_to_name": "Orbit Commerce Pvt Ltd", + "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405" + }, + "document": { + "package_number": "PKG00099", + "order_date": "2026-09-13", + "sales_order_number": "562933", + "po_number": "PO-55235" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Warranty Card", + "sku": "WAR-110", + "quantity": "15", + "unit_price": "250", + "total_price": "3750" + }, + { + "sr_no": "2", + "item_description": "Shipping Label Pack", + "sku": "LBL-450", + "quantity": "16", + "unit_price": "20", + "total_price": "320" + }, + { + "sr_no": "3", + "item_description": "Ad Design", + "sku": "AD-DES-003", + "quantity": "9", + "unit_price": "200", + "total_price": "1800" + }, + { + "sr_no": "4", + "item_description": "Bubble Wrap Roll", + "sku": "BUB-908", + "quantity": "10", + "unit_price": "225", + "total_price": "2250" + }, + { + "sr_no": "5", + "item_description": "Foam Insert", + "sku": "FOM-560", + "quantity": "6", + "unit_price": "250", + "total_price": "1500" + }, + { + "sr_no": "6", + "item_description": "Return Label Sheet", + "sku": "RTN-509", + "quantity": "16", + "unit_price": "30", + "total_price": "480" + }, + { + "sr_no": "7", + "item_description": "Thermal Label Roll", + "sku": "THR-612", + "quantity": "7", + "unit_price": "50", + "total_price": "350" + } + ], + "summary": { + "total_quantity": "79", + "sub_total": "10450", + "tax": "100", + "freight": "150", + "grand_total": "10700" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000992026-09-13562933PO-552351Warranty CardWAR-1101525037502Shipping Label PackLBL-45016203203Ad DesignAD-DES-003920018004Bubble Wrap RollBUB-9081022522505Foam InsertFOM-560625015006Return Label SheetRTN-50916304807Thermal Label RollTHR-612750350791045010015010700Keep goods dry during transit" + }, + { + "file_name": "package_00100.png", + "split": "val", + "ground_truth": { + "packaging": { + "seller": { + "company_name": "MetroWrap Logistics", + "address": "1024 Harbor Street, Newark, NJ 07105", + "phone_number": "+1-973-555-0182" + }, + "buyer": { + "bill_to_name": "Prairie Wholesale", + "bill_to_address": "210 North 8th Street, Omaha, NE 68102", + "ship_to_name": "Prairie Wholesale", + "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508" + }, + "document": { + "package_number": "PKG00100", + "order_date": "2026-05-30", + "sales_order_number": "593454", + "po_number": "PO-41816" + }, + "items": [ + { + "sr_no": "1", + "item_description": "Printed Carton", + "sku": "CRT-670", + "quantity": "9", + "unit_price": "100", + "total_price": "900" + }, + { + "sr_no": "2", + "item_description": "Security Seal Strip", + "sku": "SEC-401", + "quantity": "7", + "unit_price": "100", + "total_price": "700" + }, + { + "sr_no": "3", + "item_description": "Corrugated Divider", + "sku": "DIV-731", + "quantity": "17", + "unit_price": "15", + "total_price": "255" + } + ], + "summary": { + "total_quantity": "33", + "sub_total": "1855", + "tax": "125", + "freight": "75", + "grand_total": "2055" + }, + "notes": "Keep goods dry during transit" + } + }, + "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG001002026-05-30593454PO-418161Printed CartonCRT-67091009002Security Seal StripSEC-40171007003Corrugated DividerDIV-7311715255331855125752055Keep goods dry during transit" + } +] \ No newline at end of file diff --git a/val/annotations_with_sequences.jsonl b/val/annotations_with_sequences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..865e91496bef0a81b2d8e9c46cb0605ee84eb919 --- /dev/null +++ b/val/annotations_with_sequences.jsonl @@ -0,0 +1,50 @@ +{"file_name": "package_00051.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00051", "order_date": "2026-06-26", "sales_order_number": "578595", "po_number": "PO-45464"}, "items": [{"sr_no": "1", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "18", "unit_price": "125", "total_price": "2250"}, {"sr_no": "2", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "5", "unit_price": "60", "total_price": "300"}, {"sr_no": "3", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "2", "unit_price": "100", "total_price": "200"}], "summary": {"total_quantity": "25", "sub_total": "2750", "tax": "200", "freight": "150", "grand_total": "3100"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000512026-06-26578595PO-454641Security Seal StripSEC-4011812522502Pallet Label CardPAL-3185603003Plastic SleeveSLV-89021002002527502001503100Attach invoice copy to shipment"} +{"file_name": "package_00052.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00052", "order_date": "2026-06-26", "sales_order_number": "564392", "po_number": "PO-37296"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "13", "unit_price": "60", "total_price": "780"}, {"sr_no": "2", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "18", "unit_price": "100", "total_price": "1800"}, {"sr_no": "3", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "15", "unit_price": "10", "total_price": "150"}, {"sr_no": "4", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "5", "unit_price": "175", "total_price": "875"}, {"sr_no": "5", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "20", "unit_price": "10", "total_price": "200"}, {"sr_no": "6", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "2", "unit_price": "40", "total_price": "80"}, {"sr_no": "7", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "3", "unit_price": "175", "total_price": "525"}], "summary": {"total_quantity": "76", "sub_total": "4410", "tax": "0", "freight": "150", "grand_total": "4560"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000522026-06-26564392PO-372961Gift Wrap SheetGFT-81213607802Barcode Sticker RollBAR-2441810018003Mailer Box LargeMBOX-LG15101504Return Label SheetRTN-50951758755Shipping Label PackLBL-45020102006Warranty CardWAR-110240807Kraft Paper RollKRAFT-221317552576441001504560Attach invoice copy to shipment"} +{"file_name": "package_00053.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00053", "order_date": "2026-04-08", "sales_order_number": "524531", "po_number": "PO-68212"}, "items": [{"sr_no": "1", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "12", "unit_price": "250", "total_price": "3000"}, {"sr_no": "2", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "19", "unit_price": "15", "total_price": "285"}, {"sr_no": "3", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "15", "unit_price": "10", "total_price": "150"}, {"sr_no": "4", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "10", "unit_price": "15", "total_price": "150"}, {"sr_no": "5", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "20", "unit_price": "12", "total_price": "240"}], "summary": {"total_quantity": "76", "sub_total": "3825", "tax": "125", "freight": "75", "grand_total": "4025"}, "notes": "Priority delivery requested"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000532026-04-08524531PO-682121Shipping Label PackLBL-4501225030002Die Cut InsertDCI-72519152853Invoice CopyINV-COPY15101504Kraft Paper RollKRAFT-22110151505Custom Poly MailerPOLY-6202012240763825125754025Priority delivery requested"} +{"file_name": "package_00054.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00054", "order_date": "2026-03-13", "sales_order_number": "521297", "po_number": "PO-62595"}, "items": [{"sr_no": "1", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "5", "unit_price": "200", "total_price": "1000"}, {"sr_no": "2", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "19", "unit_price": "125", "total_price": "2375"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "17", "unit_price": "20", "total_price": "340"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "11", "unit_price": "200", "total_price": "2200"}, {"sr_no": "5", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "11", "unit_price": "90", "total_price": "990"}, {"sr_no": "6", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "2", "unit_price": "175", "total_price": "350"}], "summary": {"total_quantity": "65", "sub_total": "7255", "tax": "150", "freight": "250", "grand_total": "7655"}, "notes": "Partial shipment allowed"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000542026-03-13521297PO-625951Invoice CopyINV-COPY520010002Ad DesignAD-DES-0031912523753Documentation PouchDOC-87217203404Packing TapeTAPE-3381120022005Thermal Label RollTHR-61211909906Fragile Label SetFRG-11221753506572551502507655Partial shipment allowed"} +{"file_name": "package_00055.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00055", "order_date": "2026-07-29", "sales_order_number": "579740", "po_number": "PO-45968"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "9", "unit_price": "225", "total_price": "2025"}, {"sr_no": "2", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "3", "unit_price": "125", "total_price": "375"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "2", "unit_price": "75", "total_price": "150"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "12", "unit_price": "25", "total_price": "300"}], "summary": {"total_quantity": "26", "sub_total": "2850", "tax": "0", "freight": "125", "grand_total": "2975"}, "notes": "Deliver during business hours"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000552026-07-29579740PO-459681Logo Sticker PackLOGO-754922520252Moisture Guard BagMGB-30931253753Die Cut InsertDCI-7252751504Documentation PouchDOC-872122530026285001252975Deliver during business hours"} +{"file_name": "package_00056.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00056", "order_date": "2026-09-15", "sales_order_number": "568863", "po_number": "PO-59859"}, "items": [{"sr_no": "1", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "4", "unit_price": "12", "total_price": "48"}, {"sr_no": "2", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "6", "unit_price": "200", "total_price": "1200"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "10", "unit_price": "100", "total_price": "1000"}, {"sr_no": "4", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "4", "unit_price": "250", "total_price": "1000"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "8", "unit_price": "40", "total_price": "320"}, {"sr_no": "6", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "18", "unit_price": "200", "total_price": "3600"}, {"sr_no": "7", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "10", "unit_price": "50", "total_price": "500"}, {"sr_no": "8", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "13", "unit_price": "200", "total_price": "2600"}], "summary": {"total_quantity": "73", "sub_total": "10268", "tax": "100", "freight": "0", "grand_total": "10368"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000562026-09-15568863PO-598591Die Cut InsertDCI-725412482Warranty CardWAR-110620012003Instruction LeafletLEAF-5571010010004Logo Sticker PackLOGO-754425010005Foam InsertFOM-5608403206Packing Slip CopyPSC-3911820036007Mailer Box LargeMBOX-LG10505008Ad DesignAD-DES-0031320026007310268100010368Do not stack above five cartons"} +{"file_name": "package_00057.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00057", "order_date": "2026-09-03", "sales_order_number": "567978", "po_number": "PO-56887"}, "items": [{"sr_no": "1", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "19", "unit_price": "15", "total_price": "285"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "18", "unit_price": "100", "total_price": "1800"}, {"sr_no": "3", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "19", "unit_price": "40", "total_price": "760"}, {"sr_no": "4", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "12", "unit_price": "200", "total_price": "2400"}, {"sr_no": "5", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "15", "unit_price": "175", "total_price": "2625"}], "summary": {"total_quantity": "83", "sub_total": "7870", "tax": "50", "freight": "50", "grand_total": "7970"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000572026-09-03567978PO-568871Product ManualMAN-78019152852Corner ProtectorCRN-0191810018003Documentation PouchDOC-87219407604Mailer Box SmallMBOX-SM1220024005Packing TapeTAPE-33815175262583787050507970Verify carton count before dispatch"} +{"file_name": "package_00058.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00058", "order_date": "2026-04-06", "sales_order_number": "584663", "po_number": "PO-59912"}, "items": [{"sr_no": "1", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "14", "unit_price": "15", "total_price": "210"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "4", "unit_price": "250", "total_price": "1000"}, {"sr_no": "3", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "13", "unit_price": "75", "total_price": "975"}], "summary": {"total_quantity": "31", "sub_total": "2185", "tax": "50", "freight": "100", "grand_total": "2335"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000582026-04-06584663PO-599121Moisture Guard BagMGB-30914152102Fragile Label SetFRG-112425010003Corrugated DividerDIV-7311375975312185501002335Attach invoice copy to shipment"} +{"file_name": "package_00059.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00059", "order_date": "2026-01-20", "sales_order_number": "590011", "po_number": "PO-66679"}, "items": [{"sr_no": "1", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "14", "unit_price": "100", "total_price": "1400"}, {"sr_no": "2", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "3", "unit_price": "60", "total_price": "180"}, {"sr_no": "3", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "11", "unit_price": "15", "total_price": "165"}, {"sr_no": "4", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "12", "unit_price": "150", "total_price": "1800"}], "summary": {"total_quantity": "40", "sub_total": "3545", "tax": "50", "freight": "150", "grand_total": "3745"}, "notes": "Priority delivery requested"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000592026-01-20590011PO-666791Product ManualMAN-7801410014002Gift Wrap SheetGFT-8123601803Hang Tag BundleTAG-14911151654Bubble Wrap RollBUB-908121501800403545501503745Priority delivery requested"} +{"file_name": "package_00060.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00060", "order_date": "2026-03-19", "sales_order_number": "543217", "po_number": "PO-43682"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "8", "unit_price": "225", "total_price": "1800"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "15", "unit_price": "150", "total_price": "2250"}, {"sr_no": "3", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "19", "unit_price": "150", "total_price": "2850"}], "summary": {"total_quantity": "42", "sub_total": "6900", "tax": "125", "freight": "100", "grand_total": "7125"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000602026-03-19543217PO-436821Gift Wrap SheetGFT-812822518002Kraft Paper RollKRAFT-2211515022503Custom Poly MailerPOLY-6201915028504269001251007125Shipment can be split by item line"} +{"file_name": "package_00061.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00061", "order_date": "2026-03-14", "sales_order_number": "534204", "po_number": "PO-41866"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "2", "unit_price": "100", "total_price": "200"}, {"sr_no": "2", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "12", "unit_price": "30", "total_price": "360"}, {"sr_no": "3", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "3", "unit_price": "40", "total_price": "120"}, {"sr_no": "4", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "11", "unit_price": "100", "total_price": "1100"}, {"sr_no": "5", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "16", "unit_price": "10", "total_price": "160"}, {"sr_no": "6", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "6", "unit_price": "12", "total_price": "72"}, {"sr_no": "7", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "17", "unit_price": "25", "total_price": "425"}], "summary": {"total_quantity": "67", "sub_total": "2437", "tax": "0", "freight": "100", "grand_total": "2537"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000612026-03-14534204PO-418661Gift Wrap SheetGFT-81221002002Pallet Label CardPAL-31812303603Invoice CopyINV-COPY3401204Printed CartonCRT-6701110011005Kraft Paper RollKRAFT-22116101606Corner ProtectorCRN-019612727Logo Sticker PackLOGO-754172542567243701002537Use dock entrance for unloading"} +{"file_name": "package_00062.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Northline Supplies", "address": "7455 Drew Court, White City, KS 66872", "phone_number": "+91-88390-36062"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00062", "order_date": "2026-11-09", "sales_order_number": "556604", "po_number": "PO-61940"}, "items": [{"sr_no": "1", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "19", "unit_price": "100", "total_price": "1900"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "5", "unit_price": "100", "total_price": "500"}, {"sr_no": "3", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "9", "unit_price": "10", "total_price": "90"}, {"sr_no": "4", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "1", "unit_price": "12", "total_price": "12"}, {"sr_no": "5", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "7", "unit_price": "75", "total_price": "525"}, {"sr_no": "6", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "4", "unit_price": "25", "total_price": "100"}, {"sr_no": "7", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "20", "unit_price": "10", "total_price": "200"}, {"sr_no": "8", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "4", "unit_price": "200", "total_price": "800"}], "summary": {"total_quantity": "69", "sub_total": "4127", "tax": "150", "freight": "50", "grand_total": "4327"}, "notes": "Priority delivery requested"}}, "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000622026-11-09556604PO-619401Barcode Sticker RollBAR-2441910019002Printed CartonCRT-67051005003Mailer Box LargeMBOX-LG910904Packing Slip CopyPSC-391112125Shipping Label PackLBL-4507755256Security Seal StripSEC-4014251007Mailer Box SmallMBOX-SM20102008Foam InsertFOM-5604200800694127150504327Priority delivery requested"} +{"file_name": "package_00063.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "OakBridge Market", "bill_to_address": "15 Elm Street, Boston, MA 02108", "ship_to_name": "OakBridge Market", "ship_to_address": "112 Dock Road, Everett, MA 02149"}, "document": {"package_number": "PKG00063", "order_date": "2026-01-27", "sales_order_number": "532369", "po_number": "PO-41185"}, "items": [{"sr_no": "1", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "18", "unit_price": "200", "total_price": "3600"}, {"sr_no": "2", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "14", "unit_price": "20", "total_price": "280"}, {"sr_no": "3", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "11", "unit_price": "225", "total_price": "2475"}, {"sr_no": "4", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "13", "unit_price": "100", "total_price": "1300"}], "summary": {"total_quantity": "56", "sub_total": "7655", "tax": "0", "freight": "0", "grand_total": "7655"}, "notes": "Partial shipment allowed"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186OakBridge Market15 Elm Street, Boston, MA 02108OakBridge Market112 Dock Road, Everett, MA 02149PKG000632026-01-27532369PO-411851Logo Sticker PackLOGO-7541820036002Foam InsertFOM-56014202803Plastic SleeveSLV-8901122524754Documentation PouchDOC-872131001300567655007655Partial shipment allowed"} +{"file_name": "package_00064.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00064", "order_date": "2026-10-08", "sales_order_number": "593433", "po_number": "PO-46839"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "14", "unit_price": "10", "total_price": "140"}, {"sr_no": "2", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "16", "unit_price": "60", "total_price": "960"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "5", "unit_price": "150", "total_price": "750"}, {"sr_no": "4", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "2", "unit_price": "100", "total_price": "200"}, {"sr_no": "5", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "12", "unit_price": "20", "total_price": "240"}, {"sr_no": "6", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "11", "unit_price": "40", "total_price": "440"}], "summary": {"total_quantity": "60", "sub_total": "2730", "tax": "200", "freight": "150", "grand_total": "3080"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000642026-10-08593433PO-468391Mailer Box SmallMBOX-SM14101402Warranty CardWAR-11016609603Die Cut InsertDCI-72551507504Thermal Label RollTHR-61221002005Corner ProtectorCRN-01912202406Instruction LeafletLEAF-55711404406027302001503080Use dock entrance for unloading"} +{"file_name": "package_00065.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00065", "order_date": "2026-09-25", "sales_order_number": "537983", "po_number": "PO-40567"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "9", "unit_price": "150", "total_price": "1350"}, {"sr_no": "2", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "2", "unit_price": "200", "total_price": "400"}, {"sr_no": "3", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "13", "unit_price": "250", "total_price": "3250"}, {"sr_no": "4", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "3", "unit_price": "12", "total_price": "36"}, {"sr_no": "5", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "17", "unit_price": "100", "total_price": "1700"}], "summary": {"total_quantity": "44", "sub_total": "6736", "tax": "0", "freight": "75", "grand_total": "6811"}, "notes": "Deliver during business hours"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000652026-09-25537983PO-405671Mailer Box SmallMBOX-SM915013502Pallet Label CardPAL-31822004003Gift Wrap SheetGFT-8121325032504Logo Sticker PackLOGO-754312365Return Label SheetRTN-5091710017004467360756811Deliver during business hours"} +{"file_name": "package_00066.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00066", "order_date": "2026-03-06", "sales_order_number": "534379", "po_number": "PO-48189"}, "items": [{"sr_no": "1", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "15", "unit_price": "10", "total_price": "150"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "11", "unit_price": "20", "total_price": "220"}, {"sr_no": "3", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "5", "unit_price": "10", "total_price": "50"}], "summary": {"total_quantity": "31", "sub_total": "420", "tax": "0", "freight": "250", "grand_total": "670"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000662026-03-06534379PO-481891Packing TapeTAPE-33815101502Fragile Label SetFRG-11211202203Return Label SheetRTN-50951050314200250670Do not stack above five cartons"} +{"file_name": "package_00067.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00067", "order_date": "2026-12-04", "sales_order_number": "552903", "po_number": "PO-32841"}, "items": [{"sr_no": "1", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "2", "unit_price": "75", "total_price": "150"}, {"sr_no": "2", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "2", "unit_price": "10", "total_price": "20"}, {"sr_no": "3", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "8", "unit_price": "10", "total_price": "80"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "20", "unit_price": "125", "total_price": "2500"}, {"sr_no": "5", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "3", "unit_price": "12", "total_price": "36"}, {"sr_no": "6", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "2", "unit_price": "25", "total_price": "50"}, {"sr_no": "7", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "15", "unit_price": "12", "total_price": "180"}], "summary": {"total_quantity": "52", "sub_total": "3016", "tax": "0", "freight": "150", "grand_total": "3166"}, "notes": "Priority delivery requested"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000672026-12-04552903PO-328411Moisture Guard BagMGB-3092751502Product ManualMAN-780210203Corner ProtectorCRN-019810804Invoice CopyINV-COPY2012525005Shipping Label PackLBL-450312366Printed CartonCRT-670225507Barcode Sticker RollBAR-244151218052301601503166Priority delivery requested"} +{"file_name": "package_00068.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Vertex Home Mart", "bill_to_address": "312 King Street, Seattle, WA 98104", "ship_to_name": "Vertex Home Mart", "ship_to_address": "810 Depot Road, Tacoma, WA 98421"}, "document": {"package_number": "PKG00068", "order_date": "2026-10-22", "sales_order_number": "502234", "po_number": "PO-36425"}, "items": [{"sr_no": "1", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "15", "unit_price": "175", "total_price": "2625"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "11", "unit_price": "150", "total_price": "1650"}, {"sr_no": "3", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "1", "unit_price": "175", "total_price": "175"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "5", "unit_price": "75", "total_price": "375"}, {"sr_no": "5", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "13", "unit_price": "20", "total_price": "260"}, {"sr_no": "6", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "1", "unit_price": "40", "total_price": "40"}, {"sr_no": "7", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "3", "unit_price": "20", "total_price": "60"}], "summary": {"total_quantity": "49", "sub_total": "5185", "tax": "100", "freight": "125", "grand_total": "5410"}, "notes": "Use dock entrance for unloading"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Vertex Home Mart312 King Street, Seattle, WA 98104Vertex Home Mart810 Depot Road, Tacoma, WA 98421PKG000682026-10-22502234PO-364251Barcode Sticker RollBAR-2441517526252Corner ProtectorCRN-0191115016503Thermal Label RollTHR-61211751754Instruction LeafletLEAF-5575753755Return Label SheetRTN-50913202606Foam InsertFOM-560140407Mailer Box LargeMBOX-LG320604951851001255410Use dock entrance for unloading"} +{"file_name": "package_00069.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00069", "order_date": "2026-03-22", "sales_order_number": "579348", "po_number": "PO-46711"}, "items": [{"sr_no": "1", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "9", "unit_price": "12", "total_price": "108"}, {"sr_no": "2", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "11", "unit_price": "10", "total_price": "110"}, {"sr_no": "3", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "4", "unit_price": "100", "total_price": "400"}, {"sr_no": "4", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "14", "unit_price": "225", "total_price": "3150"}], "summary": {"total_quantity": "38", "sub_total": "3768", "tax": "0", "freight": "200", "grand_total": "3968"}, "notes": "Attach invoice copy to shipment"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000692026-03-22579348PO-467111Moisture Guard BagMGB-3099121082Documentation PouchDOC-87211101103Kraft Paper RollKRAFT-22141004004Mailer Box SmallMBOX-SM14225315038376802003968Attach invoice copy to shipment"} +{"file_name": "package_00070.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00070", "order_date": "2026-03-16", "sales_order_number": "570873", "po_number": "PO-36068"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "8", "unit_price": "10", "total_price": "80"}, {"sr_no": "2", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "15", "unit_price": "30", "total_price": "450"}, {"sr_no": "3", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "18", "unit_price": "30", "total_price": "540"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "12", "unit_price": "20", "total_price": "240"}], "summary": {"total_quantity": "53", "sub_total": "1310", "tax": "150", "freight": "75", "grand_total": "1535"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000702026-03-16570873PO-360681Pallet Label CardPAL-318810802Custom Poly MailerPOLY-62015304503Barcode Sticker RollBAR-24418305404Invoice CopyINV-COPY1220240531310150751535Keep goods dry during transit"} +{"file_name": "package_00071.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Canyon Craft Supplies", "bill_to_address": "460 Mesa Drive, Phoenix, AZ 85004", "ship_to_name": "Canyon Craft Supplies", "ship_to_address": "77 South Yard Way, Tempe, AZ 85281"}, "document": {"package_number": "PKG00071", "order_date": "2026-04-20", "sales_order_number": "527649", "po_number": "PO-38630"}, "items": [{"sr_no": "1", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "10", "unit_price": "100", "total_price": "1000"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "6", "unit_price": "15", "total_price": "90"}, {"sr_no": "3", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "14", "unit_price": "200", "total_price": "2800"}, {"sr_no": "4", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "20", "unit_price": "15", "total_price": "300"}, {"sr_no": "5", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "1", "unit_price": "15", "total_price": "15"}, {"sr_no": "6", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "2", "unit_price": "60", "total_price": "120"}, {"sr_no": "7", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "10", "unit_price": "30", "total_price": "300"}, {"sr_no": "8", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "6", "unit_price": "225", "total_price": "1350"}], "summary": {"total_quantity": "69", "sub_total": "5975", "tax": "125", "freight": "50", "grand_total": "6150"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Canyon Craft Supplies460 Mesa Drive, Phoenix, AZ 85004Canyon Craft Supplies77 South Yard Way, Tempe, AZ 85281PKG000712026-04-20527649PO-386301Thermal Label RollTHR-6121010010002Corner ProtectorCRN-019615903Packing Slip CopyPSC-3911420028004Foam InsertFOM-56020153005Die Cut InsertDCI-725115156Printed CartonCRT-6702601207Return Label SheetRTN-50910303008Corrugated DividerDIV-73162251350695975125506150Shipment can be split by item line"} +{"file_name": "package_00072.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00072", "order_date": "2026-08-23", "sales_order_number": "525471", "po_number": "PO-67932"}, "items": [{"sr_no": "1", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "7", "unit_price": "125", "total_price": "875"}, {"sr_no": "2", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "6", "unit_price": "75", "total_price": "450"}, {"sr_no": "3", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "14", "unit_price": "20", "total_price": "280"}, {"sr_no": "4", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "17", "unit_price": "20", "total_price": "340"}], "summary": {"total_quantity": "44", "sub_total": "1945", "tax": "125", "freight": "0", "grand_total": "2070"}, "notes": "Deliver during business hours"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000722026-08-23525471PO-679321Return Label SheetRTN-50971258752Custom Poly MailerPOLY-6206754503Bubble Wrap RollBUB-90814202804Kraft Paper RollKRAFT-221172034044194512502070Deliver during business hours"} +{"file_name": "package_00073.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00073", "order_date": "2026-12-07", "sales_order_number": "570796", "po_number": "PO-31544"}, "items": [{"sr_no": "1", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "4", "unit_price": "250", "total_price": "1000"}, {"sr_no": "2", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "16", "unit_price": "10", "total_price": "160"}, {"sr_no": "3", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "19", "unit_price": "15", "total_price": "285"}, {"sr_no": "4", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "13", "unit_price": "175", "total_price": "2275"}], "summary": {"total_quantity": "52", "sub_total": "3720", "tax": "125", "freight": "250", "grand_total": "4095"}, "notes": "Handle cartons with care"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000732026-12-07570796PO-315441Corrugated DividerDIV-731425010002Shipping Label PackLBL-45016101603Hang Tag BundleTAG-14919152854Security Seal StripSEC-4011317522755237201252504095Handle cartons with care"} +{"file_name": "package_00074.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00074", "order_date": "2026-04-03", "sales_order_number": "542517", "po_number": "PO-41110"}, "items": [{"sr_no": "1", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "15", "unit_price": "60", "total_price": "900"}, {"sr_no": "2", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "19", "unit_price": "75", "total_price": "1425"}, {"sr_no": "3", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "18", "unit_price": "225", "total_price": "4050"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "5", "unit_price": "175", "total_price": "875"}], "summary": {"total_quantity": "57", "sub_total": "7250", "tax": "125", "freight": "50", "grand_total": "7425"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000742026-04-03542517PO-411101Foam InsertFOM-56015609002Moisture Guard BagMGB-309197514253Packing Slip CopyPSC-3911822540504Packing TapeTAPE-3385175875577250125507425Verify carton count before dispatch"} +{"file_name": "package_00075.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Pacific Label House", "address": "311 Ocean Park Blvd, San Diego, CA 92109", "phone_number": "+1-619-555-0154"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00075", "order_date": "2026-06-20", "sales_order_number": "534124", "po_number": "PO-64052"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "12", "unit_price": "30", "total_price": "360"}, {"sr_no": "2", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "2", "unit_price": "50", "total_price": "100"}, {"sr_no": "3", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "20", "unit_price": "30", "total_price": "600"}], "summary": {"total_quantity": "34", "sub_total": "1060", "tax": "0", "freight": "50", "grand_total": "1110"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "Pacific Label House311 Ocean Park Blvd, San Diego, CA 92109+1-619-555-0154Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000752026-06-20534124PO-640521Printed CartonCRT-67012303602Instruction LeafletLEAF-5572501003Moisture Guard BagMGB-30920306003410600501110Do not stack above five cartons"} +{"file_name": "package_00076.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00076", "order_date": "2026-10-29", "sales_order_number": "560184", "po_number": "PO-67783"}, "items": [{"sr_no": "1", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "17", "unit_price": "125", "total_price": "2125"}, {"sr_no": "2", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "5", "unit_price": "200", "total_price": "1000"}, {"sr_no": "3", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "1", "unit_price": "20", "total_price": "20"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "1", "unit_price": "12", "total_price": "12"}], "summary": {"total_quantity": "24", "sub_total": "3157", "tax": "100", "freight": "100", "grand_total": "3357"}, "notes": "Deliver during business hours"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000762026-10-29560184PO-677831Documentation PouchDOC-8721712521252Hang Tag BundleTAG-149520010003Plastic SleeveSLV-890120204Ad DesignAD-DES-003112122431571001003357Deliver during business hours"} +{"file_name": "package_00077.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00077", "order_date": "2026-09-21", "sales_order_number": "525000", "po_number": "PO-67834"}, "items": [{"sr_no": "1", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "17", "unit_price": "100", "total_price": "1700"}, {"sr_no": "2", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "15", "unit_price": "125", "total_price": "1875"}, {"sr_no": "3", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "11", "unit_price": "250", "total_price": "2750"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "14", "unit_price": "30", "total_price": "420"}, {"sr_no": "5", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "3", "unit_price": "90", "total_price": "270"}], "summary": {"total_quantity": "60", "sub_total": "7015", "tax": "200", "freight": "50", "grand_total": "7265"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000772026-09-21525000PO-678341Kraft Paper RollKRAFT-2211710017002Custom Poly MailerPOLY-6201512518753Ad DesignAD-DES-0031125027504Instruction LeafletLEAF-55714304205Gift Wrap SheetGFT-812390270607015200507265Verify carton count before dispatch"} +{"file_name": "package_00078.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "GreenLeaf Cartons", "address": "58 Rosewood Avenue, Portland, OR 97205", "phone_number": "+1-503-555-0141"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00078", "order_date": "2026-01-22", "sales_order_number": "551264", "po_number": "PO-65696"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "1", "unit_price": "12", "total_price": "12"}, {"sr_no": "2", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "16", "unit_price": "20", "total_price": "320"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "2", "unit_price": "30", "total_price": "60"}, {"sr_no": "4", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "4", "unit_price": "125", "total_price": "500"}, {"sr_no": "5", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "15", "unit_price": "250", "total_price": "3750"}, {"sr_no": "6", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "6", "unit_price": "50", "total_price": "300"}, {"sr_no": "7", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "14", "unit_price": "175", "total_price": "2450"}], "summary": {"total_quantity": "58", "sub_total": "7392", "tax": "50", "freight": "125", "grand_total": "7567"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "GreenLeaf Cartons58 Rosewood Avenue, Portland, OR 97205+1-503-555-0141Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000782026-01-22551264PO-656961Mailer Box LargeMBOX-LG112122Custom Poly MailerPOLY-62016203203Mailer Box SmallMBOX-SM230604Die Cut InsertDCI-72541255005Ad DesignAD-DES-0031525037506Pallet Label CardPAL-3186503007Thermal Label RollTHR-612141752450587392501257567Verify carton count before dispatch"} +{"file_name": "package_00079.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00079", "order_date": "2026-05-17", "sales_order_number": "528501", "po_number": "PO-30703"}, "items": [{"sr_no": "1", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "6", "unit_price": "15", "total_price": "90"}, {"sr_no": "2", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "18", "unit_price": "12", "total_price": "216"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "4", "unit_price": "75", "total_price": "300"}], "summary": {"total_quantity": "28", "sub_total": "606", "tax": "100", "freight": "300", "grand_total": "1006"}, "notes": "Customer signature required"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000792026-05-17528501PO-307031Thermal Label RollTHR-612615902Gift Wrap SheetGFT-81218122163Die Cut InsertDCI-725475300286061003001006Customer signature required"} +{"file_name": "package_00080.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Jeff Ritchie Stores", "bill_to_address": "980 Industrial Road, Hyderabad, TS 500081", "ship_to_name": "Jeff Ritchie Stores", "ship_to_address": "7455 Drew Court, White City, KS 66872"}, "document": {"package_number": "PKG00080", "order_date": "2026-05-21", "sales_order_number": "526443", "po_number": "PO-36190"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "15", "unit_price": "90", "total_price": "1350"}, {"sr_no": "2", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "18", "unit_price": "90", "total_price": "1620"}, {"sr_no": "3", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "7", "unit_price": "30", "total_price": "210"}, {"sr_no": "4", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "14", "unit_price": "75", "total_price": "1050"}], "summary": {"total_quantity": "54", "sub_total": "4230", "tax": "0", "freight": "200", "grand_total": "4430"}, "notes": "Contact buyer before final delivery"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Jeff Ritchie Stores980 Industrial Road, Hyderabad, TS 500081Jeff Ritchie Stores7455 Drew Court, White City, KS 66872PKG000802026-05-21526443PO-361901Pallet Label CardPAL-318159013502Invoice CopyINV-COPY189016203Hang Tag BundleTAG-1497302104Logo Sticker PackLOGO-7541475105054423002004430Contact buyer before final delivery"} +{"file_name": "package_00081.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00081", "order_date": "2026-09-15", "sales_order_number": "566771", "po_number": "PO-42689"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "14", "unit_price": "40", "total_price": "560"}, {"sr_no": "2", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "3", "unit_price": "20", "total_price": "60"}, {"sr_no": "3", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "2", "unit_price": "20", "total_price": "40"}, {"sr_no": "4", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "20", "unit_price": "40", "total_price": "800"}, {"sr_no": "5", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "15", "unit_price": "90", "total_price": "1350"}], "summary": {"total_quantity": "54", "sub_total": "2810", "tax": "125", "freight": "100", "grand_total": "3035"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000812026-09-15566771PO-426891Printed CartonCRT-67014405602Barcode Sticker RollBAR-244320603Pallet Label CardPAL-318220404Invoice CopyINV-COPY20408005Hang Tag BundleTAG-149159013505428101251003035Keep goods dry during transit"} +{"file_name": "package_00082.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "BluePeak Packaging Co", "address": "214 Pine Ridge Lane, Boulder, CO 80302", "phone_number": "+1-303-555-0194"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00082", "order_date": "2026-08-05", "sales_order_number": "522310", "po_number": "PO-56875"}, "items": [{"sr_no": "1", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "4", "unit_price": "150", "total_price": "600"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "11", "unit_price": "30", "total_price": "330"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "19", "unit_price": "100", "total_price": "1900"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "19", "unit_price": "90", "total_price": "1710"}, {"sr_no": "5", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "10", "unit_price": "12", "total_price": "120"}, {"sr_no": "6", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "20", "unit_price": "200", "total_price": "4000"}, {"sr_no": "7", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "2", "unit_price": "20", "total_price": "40"}], "summary": {"total_quantity": "85", "sub_total": "8700", "tax": "0", "freight": "100", "grand_total": "8800"}, "notes": "Do not stack above five cartons"}}, "target_sequence": "BluePeak Packaging Co214 Pine Ridge Lane, Boulder, CO 80302+1-303-555-0194Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000822026-08-05522310PO-568751Warranty CardWAR-11041506002Fragile Label SetFRG-11211303303Mailer Box SmallMBOX-SM1910019004Ad DesignAD-DES-003199017105Barcode Sticker RollBAR-24410121206Documentation PouchDOC-8722020040007Hang Tag BundleTAG-1492204085870001008800Do not stack above five cartons"} +{"file_name": "package_00083.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "EverReady Packaging", "address": "301 Lakeside Drive, Madison, WI 53703", "phone_number": "+1-608-555-0139"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00083", "order_date": "2026-06-28", "sales_order_number": "579866", "po_number": "PO-47984"}, "items": [{"sr_no": "1", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "17", "unit_price": "150", "total_price": "2550"}, {"sr_no": "2", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "19", "unit_price": "40", "total_price": "760"}, {"sr_no": "3", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "2", "unit_price": "200", "total_price": "400"}, {"sr_no": "4", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "5", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "7", "unit_price": "175", "total_price": "1225"}, {"sr_no": "6", "item_description": "Mailer Box Large", "sku": "MBOX-LG", "quantity": "8", "unit_price": "200", "total_price": "1600"}, {"sr_no": "7", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "5", "unit_price": "25", "total_price": "125"}, {"sr_no": "8", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "18", "unit_price": "40", "total_price": "720"}], "summary": {"total_quantity": "85", "sub_total": "7560", "tax": "0", "freight": "75", "grand_total": "7635"}, "notes": "Handle cartons with care"}}, "target_sequence": "EverReady Packaging301 Lakeside Drive, Madison, WI 53703+1-608-555-0139Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000832026-06-28579866PO-479841Plastic SleeveSLV-8901715025502Product ManualMAN-78019407603Instruction LeafletLEAF-55722004004Ad DesignAD-DES-0039201805Return Label SheetRTN-509717512256Mailer Box LargeMBOX-LG820016007Printed CartonCRT-6705251258Thermal Label RollTHR-61218407208575600757635Handle cartons with care"} +{"file_name": "package_00084.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Northline Supplies", "address": "7455 Drew Court, White City, KS 66872", "phone_number": "+91-88390-36062"}, "buyer": {"bill_to_name": "Riverside Retail Group", "bill_to_address": "72 Market Square, Chennai, TN 600001", "ship_to_name": "Riverside Retail Group", "ship_to_address": "18 Park Street, Pune, MH 411001"}, "document": {"package_number": "PKG00084", "order_date": "2026-06-19", "sales_order_number": "509019", "po_number": "PO-46877"}, "items": [{"sr_no": "1", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "6", "unit_price": "150", "total_price": "900"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "12", "unit_price": "150", "total_price": "1800"}, {"sr_no": "3", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "12", "unit_price": "200", "total_price": "2400"}, {"sr_no": "4", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "20", "unit_price": "15", "total_price": "300"}, {"sr_no": "5", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "6", "unit_price": "50", "total_price": "300"}, {"sr_no": "6", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "13", "unit_price": "150", "total_price": "1950"}, {"sr_no": "7", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "2", "unit_price": "125", "total_price": "250"}], "summary": {"total_quantity": "71", "sub_total": "7900", "tax": "100", "freight": "300", "grand_total": "8300"}, "notes": "Partial shipment allowed"}}, "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Riverside Retail Group72 Market Square, Chennai, TN 600001Riverside Retail Group18 Park Street, Pune, MH 411001PKG000842026-06-19509019PO-468771Shipping Label PackLBL-45061509002Mailer Box SmallMBOX-SM1215018003Return Label SheetRTN-5091220024004Corrugated DividerDIV-73120153005Pallet Label CardPAL-3186503006Hang Tag BundleTAG-1491315019507Kraft Paper RollKRAFT-22121252507179001003008300Partial shipment allowed"} +{"file_name": "package_00085.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Crestline Box Works", "address": "8800 Valley Crest Road, Austin, TX 78745", "phone_number": "+1-512-555-0176"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00085", "order_date": "2026-09-27", "sales_order_number": "537575", "po_number": "PO-67933"}, "items": [{"sr_no": "1", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "12", "unit_price": "200", "total_price": "2400"}, {"sr_no": "2", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "9", "unit_price": "90", "total_price": "810"}, {"sr_no": "3", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "5", "unit_price": "30", "total_price": "150"}, {"sr_no": "4", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "2", "unit_price": "60", "total_price": "120"}, {"sr_no": "5", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "14", "unit_price": "50", "total_price": "700"}, {"sr_no": "6", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "12", "unit_price": "150", "total_price": "1800"}, {"sr_no": "7", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "3", "unit_price": "200", "total_price": "600"}], "summary": {"total_quantity": "57", "sub_total": "6580", "tax": "0", "freight": "200", "grand_total": "6780"}, "notes": "Deliver during business hours"}}, "target_sequence": "Crestline Box Works8800 Valley Crest Road, Austin, TX 78745+1-512-555-0176Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000852026-09-27537575PO-679331Ad DesignAD-DES-0031220024002Printed CartonCRT-6709908103Logo Sticker PackLOGO-7545301504Warranty CardWAR-1102601205Pallet Label CardPAL-31814507006Documentation PouchDOC-8721215018007Foam InsertFOM-560320060057658002006780Deliver during business hours"} +{"file_name": "package_00086.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00086", "order_date": "2026-08-08", "sales_order_number": "532483", "po_number": "PO-62145"}, "items": [{"sr_no": "1", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "5", "unit_price": "250", "total_price": "1250"}, {"sr_no": "2", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "14", "unit_price": "75", "total_price": "1050"}, {"sr_no": "3", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "14", "unit_price": "150", "total_price": "2100"}, {"sr_no": "4", "item_description": "Custom Poly Mailer", "sku": "POLY-620", "quantity": "18", "unit_price": "250", "total_price": "4500"}], "summary": {"total_quantity": "51", "sub_total": "8900", "tax": "125", "freight": "75", "grand_total": "9100"}, "notes": "Verify carton count before dispatch"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000862026-08-08532483PO-621451Pallet Label CardPAL-318525012502Return Label SheetRTN-509147510503Invoice CopyINV-COPY1415021004Custom Poly MailerPOLY-620182504500518900125759100Verify carton count before dispatch"} +{"file_name": "package_00087.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00087", "order_date": "2026-05-11", "sales_order_number": "529268", "po_number": "PO-33885"}, "items": [{"sr_no": "1", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "4", "unit_price": "100", "total_price": "400"}, {"sr_no": "2", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "18", "unit_price": "25", "total_price": "450"}, {"sr_no": "3", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "19", "unit_price": "20", "total_price": "380"}, {"sr_no": "4", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "1", "unit_price": "90", "total_price": "90"}, {"sr_no": "5", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "20", "unit_price": "10", "total_price": "200"}], "summary": {"total_quantity": "62", "sub_total": "1520", "tax": "0", "freight": "200", "grand_total": "1720"}, "notes": "Customer signature required"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000872026-05-11529268PO-338851Packing TapeTAPE-33841004002Instruction LeafletLEAF-55718254503Packing Slip CopyPSC-39119203804Die Cut InsertDCI-725190905Corrugated DividerDIV-731201020062152002001720Customer signature required"} +{"file_name": "package_00088.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Hilltop Office Depot", "bill_to_address": "140 Cedar Lane, Albany, NY 12207", "ship_to_name": "Hilltop Office Depot", "ship_to_address": "500 River Road, Troy, NY 12180"}, "document": {"package_number": "PKG00088", "order_date": "2026-03-31", "sales_order_number": "514622", "po_number": "PO-56428"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "6", "unit_price": "50", "total_price": "300"}, {"sr_no": "2", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "11", "unit_price": "40", "total_price": "440"}, {"sr_no": "3", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "7", "unit_price": "30", "total_price": "210"}], "summary": {"total_quantity": "24", "sub_total": "950", "tax": "0", "freight": "75", "grand_total": "1025"}, "notes": "Shipment can be split by item line"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Hilltop Office Depot140 Cedar Lane, Albany, NY 12207Hilltop Office Depot500 River Road, Troy, NY 12180PKG000882026-03-31514622PO-564281Printed CartonCRT-6706503002Mailer Box SmallMBOX-SM11404403Foam InsertFOM-560730210249500751025Shipment can be split by item line"} +{"file_name": "package_00089.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Apex Cartons Ltd", "address": "4799 Highland View Drive, Sacramento, CA 95815", "phone_number": "+91-78778-81186"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00089", "order_date": "2026-07-07", "sales_order_number": "546973", "po_number": "PO-40935"}, "items": [{"sr_no": "1", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "17", "unit_price": "75", "total_price": "1275"}, {"sr_no": "2", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "13", "unit_price": "30", "total_price": "390"}, {"sr_no": "3", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "20", "unit_price": "175", "total_price": "3500"}, {"sr_no": "4", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "16", "unit_price": "100", "total_price": "1600"}], "summary": {"total_quantity": "66", "sub_total": "6765", "tax": "50", "freight": "200", "grand_total": "7015"}, "notes": "Customer signature required"}}, "target_sequence": "Apex Cartons Ltd4799 Highland View Drive, Sacramento, CA 95815+91-78778-81186Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000892026-07-07546973PO-409351Return Label SheetRTN-509177512752Product ManualMAN-78013303903Shipping Label PackLBL-4502017535004Die Cut InsertDCI-725161001600666765502007015Customer signature required"} +{"file_name": "package_00090.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Central Furnishing Co", "bill_to_address": "100 Broad Avenue, Atlanta, GA 30303", "ship_to_name": "Central Furnishing Co", "ship_to_address": "2300 Freight Drive, Marietta, GA 30060"}, "document": {"package_number": "PKG00090", "order_date": "2026-04-22", "sales_order_number": "575005", "po_number": "PO-47782"}, "items": [{"sr_no": "1", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "15", "unit_price": "150", "total_price": "2250"}, {"sr_no": "2", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "12", "unit_price": "75", "total_price": "900"}, {"sr_no": "3", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "20", "unit_price": "15", "total_price": "300"}, {"sr_no": "4", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "20", "unit_price": "60", "total_price": "1200"}, {"sr_no": "5", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "12", "unit_price": "100", "total_price": "1200"}, {"sr_no": "6", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "14", "unit_price": "225", "total_price": "3150"}], "summary": {"total_quantity": "93", "sub_total": "9000", "tax": "100", "freight": "50", "grand_total": "9150"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Central Furnishing Co100 Broad Avenue, Atlanta, GA 30303Central Furnishing Co2300 Freight Drive, Marietta, GA 30060PKG000902026-04-22575005PO-477821Gift Wrap SheetGFT-8121515022502Security Seal StripSEC-40112759003Corrugated DividerDIV-73120153004Packing TapeTAPE-338206012005Ad DesignAD-DES-0031210012006Plastic SleeveSLV-890142253150939000100509150Keep goods dry during transit"} +{"file_name": "package_00091.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Mason Distribution", "bill_to_address": "89 Foundry Street, Detroit, MI 48207", "ship_to_name": "Mason Distribution", "ship_to_address": "44 Logistics Park, Warren, MI 48089"}, "document": {"package_number": "PKG00091", "order_date": "2026-01-31", "sales_order_number": "512920", "po_number": "PO-66384"}, "items": [{"sr_no": "1", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "4", "unit_price": "30", "total_price": "120"}, {"sr_no": "2", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "2", "unit_price": "90", "total_price": "180"}, {"sr_no": "3", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "20", "unit_price": "250", "total_price": "5000"}, {"sr_no": "4", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "20", "unit_price": "125", "total_price": "2500"}, {"sr_no": "5", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "20", "unit_price": "250", "total_price": "5000"}, {"sr_no": "6", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "4", "unit_price": "150", "total_price": "600"}, {"sr_no": "7", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "10", "unit_price": "25", "total_price": "250"}, {"sr_no": "8", "item_description": "Plastic Sleeve", "sku": "SLV-890", "quantity": "12", "unit_price": "250", "total_price": "3000"}], "summary": {"total_quantity": "92", "sub_total": "16650", "tax": "0", "freight": "150", "grand_total": "16800"}, "notes": "Contact buyer before final delivery"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Mason Distribution89 Foundry Street, Detroit, MI 48207Mason Distribution44 Logistics Park, Warren, MI 48089PKG000912026-01-31512920PO-663841Ad DesignAD-DES-0034301202Product ManualMAN-7802901803Die Cut InsertDCI-7252025050004Kraft Paper RollKRAFT-2212012525005Return Label SheetRTN-5092025050006Corner ProtectorCRN-01941506007Thermal Label RollTHR-61210252508Plastic SleeveSLV-8901225030009216650015016800Contact buyer before final delivery"} +{"file_name": "package_00092.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "UrbanCarton Supply", "address": "91 Sector 44 Road, Gurugram, HR 122003", "phone_number": "+91-98122-55340"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00092", "order_date": "2026-02-27", "sales_order_number": "519136", "po_number": "PO-51274"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "20", "unit_price": "50", "total_price": "1000"}, {"sr_no": "2", "item_description": "Corner Protector", "sku": "CRN-019", "quantity": "10", "unit_price": "250", "total_price": "2500"}, {"sr_no": "3", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "9", "unit_price": "15", "total_price": "135"}, {"sr_no": "4", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "4", "unit_price": "10", "total_price": "40"}, {"sr_no": "5", "item_description": "Hang Tag Bundle", "sku": "TAG-149", "quantity": "13", "unit_price": "100", "total_price": "1300"}, {"sr_no": "6", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "20", "unit_price": "40", "total_price": "800"}], "summary": {"total_quantity": "76", "sub_total": "5775", "tax": "50", "freight": "100", "grand_total": "5925"}, "notes": "Customer signature required"}}, "target_sequence": "UrbanCarton Supply91 Sector 44 Road, Gurugram, HR 122003+91-98122-55340Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000922026-02-27519136PO-512741Mailer Box SmallMBOX-SM205010002Corner ProtectorCRN-0191025025003Printed CartonCRT-6709151354Security Seal StripSEC-401410405Hang Tag BundleTAG-1491310013006Ad DesignAD-DES-0032040800765775501005925Customer signature required"} +{"file_name": "package_00093.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00093", "order_date": "2026-04-27", "sales_order_number": "594430", "po_number": "PO-32837"}, "items": [{"sr_no": "1", "item_description": "Packing Slip Copy", "sku": "PSC-391", "quantity": "18", "unit_price": "60", "total_price": "1080"}, {"sr_no": "2", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "5", "unit_price": "40", "total_price": "200"}, {"sr_no": "3", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "10", "unit_price": "15", "total_price": "150"}, {"sr_no": "4", "item_description": "Pallet Label Card", "sku": "PAL-318", "quantity": "12", "unit_price": "150", "total_price": "1800"}, {"sr_no": "5", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "9", "unit_price": "20", "total_price": "180"}, {"sr_no": "6", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "3", "unit_price": "40", "total_price": "120"}, {"sr_no": "7", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "12", "unit_price": "100", "total_price": "1200"}, {"sr_no": "8", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "18", "unit_price": "100", "total_price": "1800"}], "summary": {"total_quantity": "87", "sub_total": "6530", "tax": "0", "freight": "125", "grand_total": "6655"}, "notes": "Customer signature required"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000932026-04-27594430PO-328371Packing Slip CopyPSC-391186010802Ad DesignAD-DES-0035402003Mailer Box SmallMBOX-SM10151504Pallet Label CardPAL-3181215018005Gift Wrap SheetGFT-8129201806Thermal Label RollTHR-6123401207Logo Sticker PackLOGO-7541210012008Fragile Label SetFRG-11218100180087653001256655Customer signature required"} +{"file_name": "package_00094.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "SilverBox Enterprises", "address": "18 Race Course Road, Chennai, TN 600032", "phone_number": "+91-94444-70981"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00094", "order_date": "2026-04-09", "sales_order_number": "586895", "po_number": "PO-35365"}, "items": [{"sr_no": "1", "item_description": "Mailer Box Small", "sku": "MBOX-SM", "quantity": "13", "unit_price": "150", "total_price": "1950"}, {"sr_no": "2", "item_description": "Kraft Paper Roll", "sku": "KRAFT-221", "quantity": "19", "unit_price": "125", "total_price": "2375"}, {"sr_no": "3", "item_description": "Gift Wrap Sheet", "sku": "GFT-812", "quantity": "13", "unit_price": "200", "total_price": "2600"}, {"sr_no": "4", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "8", "unit_price": "20", "total_price": "160"}, {"sr_no": "5", "item_description": "Documentation Pouch", "sku": "DOC-872", "quantity": "7", "unit_price": "30", "total_price": "210"}], "summary": {"total_quantity": "60", "sub_total": "7295", "tax": "0", "freight": "150", "grand_total": "7445"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "SilverBox Enterprises18 Race Course Road, Chennai, TN 600032+91-94444-70981Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG000942026-04-09586895PO-353651Mailer Box SmallMBOX-SM1315019502Kraft Paper RollKRAFT-2211912523753Gift Wrap SheetGFT-8121320026004Instruction LeafletLEAF-5578201605Documentation PouchDOC-87273021060729501507445Keep goods dry during transit"} +{"file_name": "package_00095.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Nova General Stores", "bill_to_address": "6 MG Road, Bengaluru, KA 560001", "ship_to_name": "Nova General Stores", "ship_to_address": "42 Whitefield Main Road, Bengaluru, KA 560066"}, "document": {"package_number": "PKG00095", "order_date": "2026-05-22", "sales_order_number": "579117", "po_number": "PO-40968"}, "items": [{"sr_no": "1", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "13", "unit_price": "75", "total_price": "975"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "19", "unit_price": "12", "total_price": "228"}, {"sr_no": "3", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "8", "unit_price": "90", "total_price": "720"}], "summary": {"total_quantity": "40", "sub_total": "1923", "tax": "100", "freight": "125", "grand_total": "2148"}, "notes": "Priority delivery requested"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Nova General Stores6 MG Road, Bengaluru, KA 560001Nova General Stores42 Whitefield Main Road, Bengaluru, KA 560066PKG000952026-05-22579117PO-409681Bubble Wrap RollBUB-90813759752Fragile Label SetFRG-11219122283Packing TapeTAPE-3388907204019231001252148Priority delivery requested"} +{"file_name": "package_00096.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Northline Supplies", "address": "7455 Drew Court, White City, KS 66872", "phone_number": "+91-88390-36062"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00096", "order_date": "2026-04-03", "sales_order_number": "576966", "po_number": "PO-34030"}, "items": [{"sr_no": "1", "item_description": "Die Cut Insert", "sku": "DCI-725", "quantity": "9", "unit_price": "250", "total_price": "2250"}, {"sr_no": "2", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "7", "unit_price": "10", "total_price": "70"}, {"sr_no": "3", "item_description": "Moisture Guard Bag", "sku": "MGB-309", "quantity": "9", "unit_price": "50", "total_price": "450"}, {"sr_no": "4", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "1", "unit_price": "200", "total_price": "200"}, {"sr_no": "5", "item_description": "Instruction Leaflet", "sku": "LEAF-557", "quantity": "11", "unit_price": "15", "total_price": "165"}, {"sr_no": "6", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "1", "unit_price": "15", "total_price": "15"}, {"sr_no": "7", "item_description": "Invoice Copy", "sku": "INV-COPY", "quantity": "1", "unit_price": "125", "total_price": "125"}, {"sr_no": "8", "item_description": "Packing Tape", "sku": "TAPE-338", "quantity": "5", "unit_price": "15", "total_price": "75"}], "summary": {"total_quantity": "44", "sub_total": "3350", "tax": "100", "freight": "100", "grand_total": "3550"}, "notes": "Customer signature required"}}, "target_sequence": "Northline Supplies7455 Drew Court, White City, KS 66872+91-88390-36062Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000962026-04-03576966PO-340301Die Cut InsertDCI-725925022502Warranty CardWAR-110710703Moisture Guard BagMGB-3099504504Return Label SheetRTN-50912002005Instruction LeafletLEAF-55711151656Logo Sticker PackLOGO-754115157Invoice CopyINV-COPY11251258Packing TapeTAPE-338515754433501001003550Customer signature required"} +{"file_name": "package_00097.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Sunrise Stationers", "bill_to_address": "55 Ashok Nagar, Jaipur, RJ 302001", "ship_to_name": "Sunrise Stationers", "ship_to_address": "9 Transport Nagar, Jaipur, RJ 302003"}, "document": {"package_number": "PKG00097", "order_date": "2026-03-09", "sales_order_number": "589904", "po_number": "PO-42188"}, "items": [{"sr_no": "1", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "5", "unit_price": "30", "total_price": "150"}, {"sr_no": "2", "item_description": "Logo Sticker Pack", "sku": "LOGO-754", "quantity": "19", "unit_price": "60", "total_price": "1140"}, {"sr_no": "3", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "10", "unit_price": "225", "total_price": "2250"}, {"sr_no": "4", "item_description": "Barcode Sticker Roll", "sku": "BAR-244", "quantity": "6", "unit_price": "150", "total_price": "900"}], "summary": {"total_quantity": "40", "sub_total": "4440", "tax": "150", "freight": "125", "grand_total": "4715"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Sunrise Stationers55 Ashok Nagar, Jaipur, RJ 302001Sunrise Stationers9 Transport Nagar, Jaipur, RJ 302003PKG000972026-03-09589904PO-421881Bubble Wrap RollBUB-9085301502Logo Sticker PackLOGO-754196011403Product ManualMAN-7801022522504Barcode Sticker RollBAR-24461509004044401501254715Keep goods dry during transit"} +{"file_name": "package_00098.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "PrimePack Traders", "address": "27 Industrial Estate, Pune, MH 411045", "phone_number": "+91-98810-44231"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00098", "order_date": "2026-11-17", "sales_order_number": "544286", "po_number": "PO-36446"}, "items": [{"sr_no": "1", "item_description": "Product Manual", "sku": "MAN-780", "quantity": "15", "unit_price": "175", "total_price": "2625"}, {"sr_no": "2", "item_description": "Fragile Label Set", "sku": "FRG-112", "quantity": "3", "unit_price": "75", "total_price": "225"}, {"sr_no": "3", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "15", "unit_price": "15", "total_price": "225"}], "summary": {"total_quantity": "33", "sub_total": "3075", "tax": "200", "freight": "200", "grand_total": "3475"}, "notes": "Customer signature required"}}, "target_sequence": "PrimePack Traders27 Industrial Estate, Pune, MH 411045+91-98810-44231Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000982026-11-17544286PO-364461Product ManualMAN-7801517526252Fragile Label SetFRG-1123752253Security Seal StripSEC-40115152253330752002003475Customer signature required"} +{"file_name": "package_00099.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "Summit Packaging Hub", "address": "1700 Market Street, Denver, CO 80202", "phone_number": "+1-720-555-0188"}, "buyer": {"bill_to_name": "Orbit Commerce Pvt Ltd", "bill_to_address": "404 SG Highway, Ahmedabad, GJ 380015", "ship_to_name": "Orbit Commerce Pvt Ltd", "ship_to_address": "22 Narol Industrial Area, Ahmedabad, GJ 382405"}, "document": {"package_number": "PKG00099", "order_date": "2026-09-13", "sales_order_number": "562933", "po_number": "PO-55235"}, "items": [{"sr_no": "1", "item_description": "Warranty Card", "sku": "WAR-110", "quantity": "15", "unit_price": "250", "total_price": "3750"}, {"sr_no": "2", "item_description": "Shipping Label Pack", "sku": "LBL-450", "quantity": "16", "unit_price": "20", "total_price": "320"}, {"sr_no": "3", "item_description": "Ad Design", "sku": "AD-DES-003", "quantity": "9", "unit_price": "200", "total_price": "1800"}, {"sr_no": "4", "item_description": "Bubble Wrap Roll", "sku": "BUB-908", "quantity": "10", "unit_price": "225", "total_price": "2250"}, {"sr_no": "5", "item_description": "Foam Insert", "sku": "FOM-560", "quantity": "6", "unit_price": "250", "total_price": "1500"}, {"sr_no": "6", "item_description": "Return Label Sheet", "sku": "RTN-509", "quantity": "16", "unit_price": "30", "total_price": "480"}, {"sr_no": "7", "item_description": "Thermal Label Roll", "sku": "THR-612", "quantity": "7", "unit_price": "50", "total_price": "350"}], "summary": {"total_quantity": "79", "sub_total": "10450", "tax": "100", "freight": "150", "grand_total": "10700"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "Summit Packaging Hub1700 Market Street, Denver, CO 80202+1-720-555-0188Orbit Commerce Pvt Ltd404 SG Highway, Ahmedabad, GJ 380015Orbit Commerce Pvt Ltd22 Narol Industrial Area, Ahmedabad, GJ 382405PKG000992026-09-13562933PO-552351Warranty CardWAR-1101525037502Shipping Label PackLBL-45016203203Ad DesignAD-DES-003920018004Bubble Wrap RollBUB-9081022522505Foam InsertFOM-560625015006Return Label SheetRTN-50916304807Thermal Label RollTHR-612750350791045010015010700Keep goods dry during transit"} +{"file_name": "package_00100.png", "split": "val", "ground_truth": {"packaging": {"seller": {"company_name": "MetroWrap Logistics", "address": "1024 Harbor Street, Newark, NJ 07105", "phone_number": "+1-973-555-0182"}, "buyer": {"bill_to_name": "Prairie Wholesale", "bill_to_address": "210 North 8th Street, Omaha, NE 68102", "ship_to_name": "Prairie Wholesale", "ship_to_address": "95 Warehouse Avenue, Lincoln, NE 68508"}, "document": {"package_number": "PKG00100", "order_date": "2026-05-30", "sales_order_number": "593454", "po_number": "PO-41816"}, "items": [{"sr_no": "1", "item_description": "Printed Carton", "sku": "CRT-670", "quantity": "9", "unit_price": "100", "total_price": "900"}, {"sr_no": "2", "item_description": "Security Seal Strip", "sku": "SEC-401", "quantity": "7", "unit_price": "100", "total_price": "700"}, {"sr_no": "3", "item_description": "Corrugated Divider", "sku": "DIV-731", "quantity": "17", "unit_price": "15", "total_price": "255"}], "summary": {"total_quantity": "33", "sub_total": "1855", "tax": "125", "freight": "75", "grand_total": "2055"}, "notes": "Keep goods dry during transit"}}, "target_sequence": "MetroWrap Logistics1024 Harbor Street, Newark, NJ 07105+1-973-555-0182Prairie Wholesale210 North 8th Street, Omaha, NE 68102Prairie Wholesale95 Warehouse Avenue, Lincoln, NE 68508PKG001002026-05-30593454PO-418161Printed CartonCRT-67091009002Security Seal StripSEC-40171007003Corrugated DividerDIV-7311715255331855125752055Keep goods dry during transit"} diff --git a/val/metadata.jsonl b/val/metadata.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a69e489662fdef1d7b81c0e83e0bdd51af9017e3 --- /dev/null +++ b/val/metadata.jsonl @@ -0,0 +1,50 @@ +{"file_name": "package_00051.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00051\", \"order_date\": \"2026-06-26\", \"sales_order_number\": \"578595\", \"po_number\": \"PO-45464\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"18\", \"unit_price\": \"125\", \"total_price\": \"2250\"}, {\"sr_no\": \"2\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"5\", \"unit_price\": \"60\", \"total_price\": \"300\"}, {\"sr_no\": \"3\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"2\", \"unit_price\": \"100\", \"total_price\": \"200\"}], \"summary\": {\"total_quantity\": \"25\", \"sub_total\": \"2750\", \"tax\": \"200\", \"freight\": \"150\", \"grand_total\": \"3100\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00052.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00052\", \"order_date\": \"2026-06-26\", \"sales_order_number\": \"564392\", \"po_number\": \"PO-37296\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"13\", \"unit_price\": \"60\", \"total_price\": \"780\"}, {\"sr_no\": \"2\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"18\", \"unit_price\": \"100\", \"total_price\": \"1800\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"15\", \"unit_price\": \"10\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"5\", \"unit_price\": \"175\", \"total_price\": \"875\"}, {\"sr_no\": \"5\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"20\", \"unit_price\": \"10\", \"total_price\": \"200\"}, {\"sr_no\": \"6\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"2\", \"unit_price\": \"40\", \"total_price\": \"80\"}, {\"sr_no\": \"7\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"3\", \"unit_price\": \"175\", \"total_price\": \"525\"}], \"summary\": {\"total_quantity\": \"76\", \"sub_total\": \"4410\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"4560\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00053.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00053\", \"order_date\": \"2026-04-08\", \"sales_order_number\": \"524531\", \"po_number\": \"PO-68212\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"12\", \"unit_price\": \"250\", \"total_price\": \"3000\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"19\", \"unit_price\": \"15\", \"total_price\": \"285\"}, {\"sr_no\": \"3\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"15\", \"unit_price\": \"10\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"10\", \"unit_price\": \"15\", \"total_price\": \"150\"}, {\"sr_no\": \"5\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"20\", \"unit_price\": \"12\", \"total_price\": \"240\"}], \"summary\": {\"total_quantity\": \"76\", \"sub_total\": \"3825\", \"tax\": \"125\", \"freight\": \"75\", \"grand_total\": \"4025\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00054.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00054\", \"order_date\": \"2026-03-13\", \"sales_order_number\": \"521297\", \"po_number\": \"PO-62595\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"5\", \"unit_price\": \"200\", \"total_price\": \"1000\"}, {\"sr_no\": \"2\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"19\", \"unit_price\": \"125\", \"total_price\": \"2375\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"11\", \"unit_price\": \"200\", \"total_price\": \"2200\"}, {\"sr_no\": \"5\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"11\", \"unit_price\": \"90\", \"total_price\": \"990\"}, {\"sr_no\": \"6\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"2\", \"unit_price\": \"175\", \"total_price\": \"350\"}], \"summary\": {\"total_quantity\": \"65\", \"sub_total\": \"7255\", \"tax\": \"150\", \"freight\": \"250\", \"grand_total\": \"7655\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00055.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00055\", \"order_date\": \"2026-07-29\", \"sales_order_number\": \"579740\", \"po_number\": \"PO-45968\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"9\", \"unit_price\": \"225\", \"total_price\": \"2025\"}, {\"sr_no\": \"2\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"2\", \"unit_price\": \"75\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"12\", \"unit_price\": \"25\", \"total_price\": \"300\"}], \"summary\": {\"total_quantity\": \"26\", \"sub_total\": \"2850\", \"tax\": \"0\", \"freight\": \"125\", \"grand_total\": \"2975\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00056.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00056\", \"order_date\": \"2026-09-15\", \"sales_order_number\": \"568863\", \"po_number\": \"PO-59859\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"12\", \"total_price\": \"48\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"6\", \"unit_price\": \"200\", \"total_price\": \"1200\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"100\", \"total_price\": \"1000\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"4\", \"unit_price\": \"250\", \"total_price\": \"1000\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"8\", \"unit_price\": \"40\", \"total_price\": \"320\"}, {\"sr_no\": \"6\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"10\", \"unit_price\": \"50\", \"total_price\": \"500\"}, {\"sr_no\": \"8\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"13\", \"unit_price\": \"200\", \"total_price\": \"2600\"}], \"summary\": {\"total_quantity\": \"73\", \"sub_total\": \"10268\", \"tax\": \"100\", \"freight\": \"0\", \"grand_total\": \"10368\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00057.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00057\", \"order_date\": \"2026-09-03\", \"sales_order_number\": \"567978\", \"po_number\": \"PO-56887\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"19\", \"unit_price\": \"15\", \"total_price\": \"285\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"18\", \"unit_price\": \"100\", \"total_price\": \"1800\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"19\", \"unit_price\": \"40\", \"total_price\": \"760\"}, {\"sr_no\": \"4\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"12\", \"unit_price\": \"200\", \"total_price\": \"2400\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"15\", \"unit_price\": \"175\", \"total_price\": \"2625\"}], \"summary\": {\"total_quantity\": \"83\", \"sub_total\": \"7870\", \"tax\": \"50\", \"freight\": \"50\", \"grand_total\": \"7970\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00058.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00058\", \"order_date\": \"2026-04-06\", \"sales_order_number\": \"584663\", \"po_number\": \"PO-59912\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"14\", \"unit_price\": \"15\", \"total_price\": \"210\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"4\", \"unit_price\": \"250\", \"total_price\": \"1000\"}, {\"sr_no\": \"3\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"13\", \"unit_price\": \"75\", \"total_price\": \"975\"}], \"summary\": {\"total_quantity\": \"31\", \"sub_total\": \"2185\", \"tax\": \"50\", \"freight\": \"100\", \"grand_total\": \"2335\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00059.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00059\", \"order_date\": \"2026-01-20\", \"sales_order_number\": \"590011\", \"po_number\": \"PO-66679\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"14\", \"unit_price\": \"100\", \"total_price\": \"1400\"}, {\"sr_no\": \"2\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"3\", \"unit_price\": \"60\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"11\", \"unit_price\": \"15\", \"total_price\": \"165\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"12\", \"unit_price\": \"150\", \"total_price\": \"1800\"}], \"summary\": {\"total_quantity\": \"40\", \"sub_total\": \"3545\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"3745\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00060.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00060\", \"order_date\": \"2026-03-19\", \"sales_order_number\": \"543217\", \"po_number\": \"PO-43682\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"8\", \"unit_price\": \"225\", \"total_price\": \"1800\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"15\", \"unit_price\": \"150\", \"total_price\": \"2250\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"19\", \"unit_price\": \"150\", \"total_price\": \"2850\"}], \"summary\": {\"total_quantity\": \"42\", \"sub_total\": \"6900\", \"tax\": \"125\", \"freight\": \"100\", \"grand_total\": \"7125\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00061.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00061\", \"order_date\": \"2026-03-14\", \"sales_order_number\": \"534204\", \"po_number\": \"PO-41866\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"2\", \"unit_price\": \"100\", \"total_price\": \"200\"}, {\"sr_no\": \"2\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"30\", \"total_price\": \"360\"}, {\"sr_no\": \"3\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"3\", \"unit_price\": \"40\", \"total_price\": \"120\"}, {\"sr_no\": \"4\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"11\", \"unit_price\": \"100\", \"total_price\": \"1100\"}, {\"sr_no\": \"5\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"16\", \"unit_price\": \"10\", \"total_price\": \"160\"}, {\"sr_no\": \"6\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"7\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"17\", \"unit_price\": \"25\", \"total_price\": \"425\"}], \"summary\": {\"total_quantity\": \"67\", \"sub_total\": \"2437\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"2537\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00062.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00062\", \"order_date\": \"2026-11-09\", \"sales_order_number\": \"556604\", \"po_number\": \"PO-61940\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"19\", \"unit_price\": \"100\", \"total_price\": \"1900\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"5\", \"unit_price\": \"100\", \"total_price\": \"500\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"9\", \"unit_price\": \"10\", \"total_price\": \"90\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"1\", \"unit_price\": \"12\", \"total_price\": \"12\"}, {\"sr_no\": \"5\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"7\", \"unit_price\": \"75\", \"total_price\": \"525\"}, {\"sr_no\": \"6\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"4\", \"unit_price\": \"25\", \"total_price\": \"100\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"20\", \"unit_price\": \"10\", \"total_price\": \"200\"}, {\"sr_no\": \"8\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"200\", \"total_price\": \"800\"}], \"summary\": {\"total_quantity\": \"69\", \"sub_total\": \"4127\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"4327\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00063.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00063\", \"order_date\": \"2026-01-27\", \"sales_order_number\": \"532369\", \"po_number\": \"PO-41185\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}, {\"sr_no\": \"2\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"14\", \"unit_price\": \"20\", \"total_price\": \"280\"}, {\"sr_no\": \"3\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"11\", \"unit_price\": \"225\", \"total_price\": \"2475\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"13\", \"unit_price\": \"100\", \"total_price\": \"1300\"}], \"summary\": {\"total_quantity\": \"56\", \"sub_total\": \"7655\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"7655\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00064.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00064\", \"order_date\": \"2026-10-08\", \"sales_order_number\": \"593433\", \"po_number\": \"PO-46839\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"14\", \"unit_price\": \"10\", \"total_price\": \"140\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"16\", \"unit_price\": \"60\", \"total_price\": \"960\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"5\", \"unit_price\": \"150\", \"total_price\": \"750\"}, {\"sr_no\": \"4\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"2\", \"unit_price\": \"100\", \"total_price\": \"200\"}, {\"sr_no\": \"5\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"12\", \"unit_price\": \"20\", \"total_price\": \"240\"}, {\"sr_no\": \"6\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"40\", \"total_price\": \"440\"}], \"summary\": {\"total_quantity\": \"60\", \"sub_total\": \"2730\", \"tax\": \"200\", \"freight\": \"150\", \"grand_total\": \"3080\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00065.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00065\", \"order_date\": \"2026-09-25\", \"sales_order_number\": \"537983\", \"po_number\": \"PO-40567\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"9\", \"unit_price\": \"150\", \"total_price\": \"1350\"}, {\"sr_no\": \"2\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"2\", \"unit_price\": \"200\", \"total_price\": \"400\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"13\", \"unit_price\": \"250\", \"total_price\": \"3250\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"17\", \"unit_price\": \"100\", \"total_price\": \"1700\"}], \"summary\": {\"total_quantity\": \"44\", \"sub_total\": \"6736\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"6811\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00066.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00066\", \"order_date\": \"2026-03-06\", \"sales_order_number\": \"534379\", \"po_number\": \"PO-48189\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"15\", \"unit_price\": \"10\", \"total_price\": \"150\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"11\", \"unit_price\": \"20\", \"total_price\": \"220\"}, {\"sr_no\": \"3\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"5\", \"unit_price\": \"10\", \"total_price\": \"50\"}], \"summary\": {\"total_quantity\": \"31\", \"sub_total\": \"420\", \"tax\": \"0\", \"freight\": \"250\", \"grand_total\": \"670\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00067.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00067\", \"order_date\": \"2026-12-04\", \"sales_order_number\": \"552903\", \"po_number\": \"PO-32841\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"2\", \"unit_price\": \"75\", \"total_price\": \"150\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}, {\"sr_no\": \"3\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"8\", \"unit_price\": \"10\", \"total_price\": \"80\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"20\", \"unit_price\": \"125\", \"total_price\": \"2500\"}, {\"sr_no\": \"5\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"25\", \"total_price\": \"50\"}, {\"sr_no\": \"7\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"15\", \"unit_price\": \"12\", \"total_price\": \"180\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"3016\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"3166\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00068.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00068\", \"order_date\": \"2026-10-22\", \"sales_order_number\": \"502234\", \"po_number\": \"PO-36425\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"15\", \"unit_price\": \"175\", \"total_price\": \"2625\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"11\", \"unit_price\": \"150\", \"total_price\": \"1650\"}, {\"sr_no\": \"3\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"1\", \"unit_price\": \"175\", \"total_price\": \"175\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"5\", \"unit_price\": \"75\", \"total_price\": \"375\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"13\", \"unit_price\": \"20\", \"total_price\": \"260\"}, {\"sr_no\": \"6\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"3\", \"unit_price\": \"20\", \"total_price\": \"60\"}], \"summary\": {\"total_quantity\": \"49\", \"sub_total\": \"5185\", \"tax\": \"100\", \"freight\": \"125\", \"grand_total\": \"5410\"}, \"notes\": \"Use dock entrance for unloading\"}}}"} +{"file_name": "package_00069.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00069\", \"order_date\": \"2026-03-22\", \"sales_order_number\": \"579348\", \"po_number\": \"PO-46711\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"9\", \"unit_price\": \"12\", \"total_price\": \"108\"}, {\"sr_no\": \"2\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"11\", \"unit_price\": \"10\", \"total_price\": \"110\"}, {\"sr_no\": \"3\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"4\", \"unit_price\": \"100\", \"total_price\": \"400\"}, {\"sr_no\": \"4\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}], \"summary\": {\"total_quantity\": \"38\", \"sub_total\": \"3768\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"3968\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"} +{"file_name": "package_00070.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00070\", \"order_date\": \"2026-03-16\", \"sales_order_number\": \"570873\", \"po_number\": \"PO-36068\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"8\", \"unit_price\": \"10\", \"total_price\": \"80\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"15\", \"unit_price\": \"30\", \"total_price\": \"450\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"18\", \"unit_price\": \"30\", \"total_price\": \"540\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"12\", \"unit_price\": \"20\", \"total_price\": \"240\"}], \"summary\": {\"total_quantity\": \"53\", \"sub_total\": \"1310\", \"tax\": \"150\", \"freight\": \"75\", \"grand_total\": \"1535\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00071.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00071\", \"order_date\": \"2026-04-20\", \"sales_order_number\": \"527649\", \"po_number\": \"PO-38630\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"10\", \"unit_price\": \"100\", \"total_price\": \"1000\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"6\", \"unit_price\": \"15\", \"total_price\": \"90\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"14\", \"unit_price\": \"200\", \"total_price\": \"2800\"}, {\"sr_no\": \"4\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"20\", \"unit_price\": \"15\", \"total_price\": \"300\"}, {\"sr_no\": \"5\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"1\", \"unit_price\": \"15\", \"total_price\": \"15\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"60\", \"total_price\": \"120\"}, {\"sr_no\": \"7\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"10\", \"unit_price\": \"30\", \"total_price\": \"300\"}, {\"sr_no\": \"8\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"6\", \"unit_price\": \"225\", \"total_price\": \"1350\"}], \"summary\": {\"total_quantity\": \"69\", \"sub_total\": \"5975\", \"tax\": \"125\", \"freight\": \"50\", \"grand_total\": \"6150\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00072.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00072\", \"order_date\": \"2026-08-23\", \"sales_order_number\": \"525471\", \"po_number\": \"PO-67932\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"6\", \"unit_price\": \"75\", \"total_price\": \"450\"}, {\"sr_no\": \"3\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"14\", \"unit_price\": \"20\", \"total_price\": \"280\"}, {\"sr_no\": \"4\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}], \"summary\": {\"total_quantity\": \"44\", \"sub_total\": \"1945\", \"tax\": \"125\", \"freight\": \"0\", \"grand_total\": \"2070\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00073.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00073\", \"order_date\": \"2026-12-07\", \"sales_order_number\": \"570796\", \"po_number\": \"PO-31544\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"4\", \"unit_price\": \"250\", \"total_price\": \"1000\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"16\", \"unit_price\": \"10\", \"total_price\": \"160\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"19\", \"unit_price\": \"15\", \"total_price\": \"285\"}, {\"sr_no\": \"4\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"13\", \"unit_price\": \"175\", \"total_price\": \"2275\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"3720\", \"tax\": \"125\", \"freight\": \"250\", \"grand_total\": \"4095\"}, \"notes\": \"Handle cartons with care\"}}}"} +{"file_name": "package_00074.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00074\", \"order_date\": \"2026-04-03\", \"sales_order_number\": \"542517\", \"po_number\": \"PO-41110\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"15\", \"unit_price\": \"60\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"19\", \"unit_price\": \"75\", \"total_price\": \"1425\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"225\", \"total_price\": \"4050\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"5\", \"unit_price\": \"175\", \"total_price\": \"875\"}], \"summary\": {\"total_quantity\": \"57\", \"sub_total\": \"7250\", \"tax\": \"125\", \"freight\": \"50\", \"grand_total\": \"7425\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00075.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00075\", \"order_date\": \"2026-06-20\", \"sales_order_number\": \"534124\", \"po_number\": \"PO-64052\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"12\", \"unit_price\": \"30\", \"total_price\": \"360\"}, {\"sr_no\": \"2\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"2\", \"unit_price\": \"50\", \"total_price\": \"100\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"20\", \"unit_price\": \"30\", \"total_price\": \"600\"}], \"summary\": {\"total_quantity\": \"34\", \"sub_total\": \"1060\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"1110\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00076.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00076\", \"order_date\": \"2026-10-29\", \"sales_order_number\": \"560184\", \"po_number\": \"PO-67783\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"17\", \"unit_price\": \"125\", \"total_price\": \"2125\"}, {\"sr_no\": \"2\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"5\", \"unit_price\": \"200\", \"total_price\": \"1000\"}, {\"sr_no\": \"3\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"1\", \"unit_price\": \"20\", \"total_price\": \"20\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"1\", \"unit_price\": \"12\", \"total_price\": \"12\"}], \"summary\": {\"total_quantity\": \"24\", \"sub_total\": \"3157\", \"tax\": \"100\", \"freight\": \"100\", \"grand_total\": \"3357\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00077.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00077\", \"order_date\": \"2026-09-21\", \"sales_order_number\": \"525000\", \"po_number\": \"PO-67834\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"17\", \"unit_price\": \"100\", \"total_price\": \"1700\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"15\", \"unit_price\": \"125\", \"total_price\": \"1875\"}, {\"sr_no\": \"3\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"11\", \"unit_price\": \"250\", \"total_price\": \"2750\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"14\", \"unit_price\": \"30\", \"total_price\": \"420\"}, {\"sr_no\": \"5\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"3\", \"unit_price\": \"90\", \"total_price\": \"270\"}], \"summary\": {\"total_quantity\": \"60\", \"sub_total\": \"7015\", \"tax\": \"200\", \"freight\": \"50\", \"grand_total\": \"7265\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00078.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00078\", \"order_date\": \"2026-01-22\", \"sales_order_number\": \"551264\", \"po_number\": \"PO-65696\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"1\", \"unit_price\": \"12\", \"total_price\": \"12\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"16\", \"unit_price\": \"20\", \"total_price\": \"320\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"30\", \"total_price\": \"60\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"125\", \"total_price\": \"500\"}, {\"sr_no\": \"5\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"15\", \"unit_price\": \"250\", \"total_price\": \"3750\"}, {\"sr_no\": \"6\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"50\", \"total_price\": \"300\"}, {\"sr_no\": \"7\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"14\", \"unit_price\": \"175\", \"total_price\": \"2450\"}], \"summary\": {\"total_quantity\": \"58\", \"sub_total\": \"7392\", \"tax\": \"50\", \"freight\": \"125\", \"grand_total\": \"7567\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00079.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00079\", \"order_date\": \"2026-05-17\", \"sales_order_number\": \"528501\", \"po_number\": \"PO-30703\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"6\", \"unit_price\": \"15\", \"total_price\": \"90\"}, {\"sr_no\": \"2\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"18\", \"unit_price\": \"12\", \"total_price\": \"216\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"75\", \"total_price\": \"300\"}], \"summary\": {\"total_quantity\": \"28\", \"sub_total\": \"606\", \"tax\": \"100\", \"freight\": \"300\", \"grand_total\": \"1006\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00080.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00080\", \"order_date\": \"2026-05-21\", \"sales_order_number\": \"526443\", \"po_number\": \"PO-36190\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"15\", \"unit_price\": \"90\", \"total_price\": \"1350\"}, {\"sr_no\": \"2\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"18\", \"unit_price\": \"90\", \"total_price\": \"1620\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"7\", \"unit_price\": \"30\", \"total_price\": \"210\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}], \"summary\": {\"total_quantity\": \"54\", \"sub_total\": \"4230\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"4430\"}, \"notes\": \"Contact buyer before final delivery\"}}}"} +{"file_name": "package_00081.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00081\", \"order_date\": \"2026-09-15\", \"sales_order_number\": \"566771\", \"po_number\": \"PO-42689\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"14\", \"unit_price\": \"40\", \"total_price\": \"560\"}, {\"sr_no\": \"2\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"3\", \"unit_price\": \"20\", \"total_price\": \"60\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"2\", \"unit_price\": \"20\", \"total_price\": \"40\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"20\", \"unit_price\": \"40\", \"total_price\": \"800\"}, {\"sr_no\": \"5\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"90\", \"total_price\": \"1350\"}], \"summary\": {\"total_quantity\": \"54\", \"sub_total\": \"2810\", \"tax\": \"125\", \"freight\": \"100\", \"grand_total\": \"3035\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00082.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00082\", \"order_date\": \"2026-08-05\", \"sales_order_number\": \"522310\", \"po_number\": \"PO-56875\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"4\", \"unit_price\": \"150\", \"total_price\": \"600\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"11\", \"unit_price\": \"30\", \"total_price\": \"330\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"19\", \"unit_price\": \"100\", \"total_price\": \"1900\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"19\", \"unit_price\": \"90\", \"total_price\": \"1710\"}, {\"sr_no\": \"5\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"10\", \"unit_price\": \"12\", \"total_price\": \"120\"}, {\"sr_no\": \"6\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"20\", \"unit_price\": \"200\", \"total_price\": \"4000\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"2\", \"unit_price\": \"20\", \"total_price\": \"40\"}], \"summary\": {\"total_quantity\": \"85\", \"sub_total\": \"8700\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"8800\"}, \"notes\": \"Do not stack above five cartons\"}}}"} +{"file_name": "package_00083.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00083\", \"order_date\": \"2026-06-28\", \"sales_order_number\": \"579866\", \"po_number\": \"PO-47984\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"17\", \"unit_price\": \"150\", \"total_price\": \"2550\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"19\", \"unit_price\": \"40\", \"total_price\": \"760\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"2\", \"unit_price\": \"200\", \"total_price\": \"400\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"7\", \"unit_price\": \"175\", \"total_price\": \"1225\"}, {\"sr_no\": \"6\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"8\", \"unit_price\": \"200\", \"total_price\": \"1600\"}, {\"sr_no\": \"7\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"5\", \"unit_price\": \"25\", \"total_price\": \"125\"}, {\"sr_no\": \"8\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"18\", \"unit_price\": \"40\", \"total_price\": \"720\"}], \"summary\": {\"total_quantity\": \"85\", \"sub_total\": \"7560\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"7635\"}, \"notes\": \"Handle cartons with care\"}}}"} +{"file_name": "package_00084.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00084\", \"order_date\": \"2026-06-19\", \"sales_order_number\": \"509019\", \"po_number\": \"PO-46877\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"6\", \"unit_price\": \"150\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"12\", \"unit_price\": \"150\", \"total_price\": \"1800\"}, {\"sr_no\": \"3\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"12\", \"unit_price\": \"200\", \"total_price\": \"2400\"}, {\"sr_no\": \"4\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"20\", \"unit_price\": \"15\", \"total_price\": \"300\"}, {\"sr_no\": \"5\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"50\", \"total_price\": \"300\"}, {\"sr_no\": \"6\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"150\", \"total_price\": \"1950\"}, {\"sr_no\": \"7\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"2\", \"unit_price\": \"125\", \"total_price\": \"250\"}], \"summary\": {\"total_quantity\": \"71\", \"sub_total\": \"7900\", \"tax\": \"100\", \"freight\": \"300\", \"grand_total\": \"8300\"}, \"notes\": \"Partial shipment allowed\"}}}"} +{"file_name": "package_00085.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00085\", \"order_date\": \"2026-09-27\", \"sales_order_number\": \"537575\", \"po_number\": \"PO-67933\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"12\", \"unit_price\": \"200\", \"total_price\": \"2400\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"9\", \"unit_price\": \"90\", \"total_price\": \"810\"}, {\"sr_no\": \"3\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"5\", \"unit_price\": \"30\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"2\", \"unit_price\": \"60\", \"total_price\": \"120\"}, {\"sr_no\": \"5\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"14\", \"unit_price\": \"50\", \"total_price\": \"700\"}, {\"sr_no\": \"6\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"12\", \"unit_price\": \"150\", \"total_price\": \"1800\"}, {\"sr_no\": \"7\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"3\", \"unit_price\": \"200\", \"total_price\": \"600\"}], \"summary\": {\"total_quantity\": \"57\", \"sub_total\": \"6580\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"6780\"}, \"notes\": \"Deliver during business hours\"}}}"} +{"file_name": "package_00086.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00086\", \"order_date\": \"2026-08-08\", \"sales_order_number\": \"532483\", \"po_number\": \"PO-62145\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"5\", \"unit_price\": \"250\", \"total_price\": \"1250\"}, {\"sr_no\": \"2\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}, {\"sr_no\": \"3\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"14\", \"unit_price\": \"150\", \"total_price\": \"2100\"}, {\"sr_no\": \"4\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"18\", \"unit_price\": \"250\", \"total_price\": \"4500\"}], \"summary\": {\"total_quantity\": \"51\", \"sub_total\": \"8900\", \"tax\": \"125\", \"freight\": \"75\", \"grand_total\": \"9100\"}, \"notes\": \"Verify carton count before dispatch\"}}}"} +{"file_name": "package_00087.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00087\", \"order_date\": \"2026-05-11\", \"sales_order_number\": \"529268\", \"po_number\": \"PO-33885\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"4\", \"unit_price\": \"100\", \"total_price\": \"400\"}, {\"sr_no\": \"2\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"19\", \"unit_price\": \"20\", \"total_price\": \"380\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"1\", \"unit_price\": \"90\", \"total_price\": \"90\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"20\", \"unit_price\": \"10\", \"total_price\": \"200\"}], \"summary\": {\"total_quantity\": \"62\", \"sub_total\": \"1520\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"1720\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00088.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00088\", \"order_date\": \"2026-03-31\", \"sales_order_number\": \"514622\", \"po_number\": \"PO-56428\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"6\", \"unit_price\": \"50\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"11\", \"unit_price\": \"40\", \"total_price\": \"440\"}, {\"sr_no\": \"3\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"7\", \"unit_price\": \"30\", \"total_price\": \"210\"}], \"summary\": {\"total_quantity\": \"24\", \"sub_total\": \"950\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"1025\"}, \"notes\": \"Shipment can be split by item line\"}}}"} +{"file_name": "package_00089.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00089\", \"order_date\": \"2026-07-07\", \"sales_order_number\": \"546973\", \"po_number\": \"PO-40935\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"17\", \"unit_price\": \"75\", \"total_price\": \"1275\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"13\", \"unit_price\": \"30\", \"total_price\": \"390\"}, {\"sr_no\": \"3\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"20\", \"unit_price\": \"175\", \"total_price\": \"3500\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}], \"summary\": {\"total_quantity\": \"66\", \"sub_total\": \"6765\", \"tax\": \"50\", \"freight\": \"200\", \"grand_total\": \"7015\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00090.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00090\", \"order_date\": \"2026-04-22\", \"sales_order_number\": \"575005\", \"po_number\": \"PO-47782\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"15\", \"unit_price\": \"150\", \"total_price\": \"2250\"}, {\"sr_no\": \"2\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"12\", \"unit_price\": \"75\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"20\", \"unit_price\": \"15\", \"total_price\": \"300\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"20\", \"unit_price\": \"60\", \"total_price\": \"1200\"}, {\"sr_no\": \"5\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"12\", \"unit_price\": \"100\", \"total_price\": \"1200\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}], \"summary\": {\"total_quantity\": \"93\", \"sub_total\": \"9000\", \"tax\": \"100\", \"freight\": \"50\", \"grand_total\": \"9150\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00091.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00091\", \"order_date\": \"2026-01-31\", \"sales_order_number\": \"512920\", \"po_number\": \"PO-66384\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"4\", \"unit_price\": \"30\", \"total_price\": \"120\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"20\", \"unit_price\": \"250\", \"total_price\": \"5000\"}, {\"sr_no\": \"4\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"20\", \"unit_price\": \"125\", \"total_price\": \"2500\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"20\", \"unit_price\": \"250\", \"total_price\": \"5000\"}, {\"sr_no\": \"6\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"4\", \"unit_price\": \"150\", \"total_price\": \"600\"}, {\"sr_no\": \"7\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"10\", \"unit_price\": \"25\", \"total_price\": \"250\"}, {\"sr_no\": \"8\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"12\", \"unit_price\": \"250\", \"total_price\": \"3000\"}], \"summary\": {\"total_quantity\": \"92\", \"sub_total\": \"16650\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"16800\"}, \"notes\": \"Contact buyer before final delivery\"}}}"} +{"file_name": "package_00092.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00092\", \"order_date\": \"2026-02-27\", \"sales_order_number\": \"519136\", \"po_number\": \"PO-51274\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"20\", \"unit_price\": \"50\", \"total_price\": \"1000\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"10\", \"unit_price\": \"250\", \"total_price\": \"2500\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"9\", \"unit_price\": \"15\", \"total_price\": \"135\"}, {\"sr_no\": \"4\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"4\", \"unit_price\": \"10\", \"total_price\": \"40\"}, {\"sr_no\": \"5\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"100\", \"total_price\": \"1300\"}, {\"sr_no\": \"6\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"20\", \"unit_price\": \"40\", \"total_price\": \"800\"}], \"summary\": {\"total_quantity\": \"76\", \"sub_total\": \"5775\", \"tax\": \"50\", \"freight\": \"100\", \"grand_total\": \"5925\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00093.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00093\", \"order_date\": \"2026-04-27\", \"sales_order_number\": \"594430\", \"po_number\": \"PO-32837\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"60\", \"total_price\": \"1080\"}, {\"sr_no\": \"2\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"5\", \"unit_price\": \"40\", \"total_price\": \"200\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"10\", \"unit_price\": \"15\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"150\", \"total_price\": \"1800\"}, {\"sr_no\": \"5\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"3\", \"unit_price\": \"40\", \"total_price\": \"120\"}, {\"sr_no\": \"7\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"12\", \"unit_price\": \"100\", \"total_price\": \"1200\"}, {\"sr_no\": \"8\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"18\", \"unit_price\": \"100\", \"total_price\": \"1800\"}], \"summary\": {\"total_quantity\": \"87\", \"sub_total\": \"6530\", \"tax\": \"0\", \"freight\": \"125\", \"grand_total\": \"6655\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00094.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00094\", \"order_date\": \"2026-04-09\", \"sales_order_number\": \"586895\", \"po_number\": \"PO-35365\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"13\", \"unit_price\": \"150\", \"total_price\": \"1950\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"19\", \"unit_price\": \"125\", \"total_price\": \"2375\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"13\", \"unit_price\": \"200\", \"total_price\": \"2600\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"8\", \"unit_price\": \"20\", \"total_price\": \"160\"}, {\"sr_no\": \"5\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"7\", \"unit_price\": \"30\", \"total_price\": \"210\"}], \"summary\": {\"total_quantity\": \"60\", \"sub_total\": \"7295\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"7445\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00095.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00095\", \"order_date\": \"2026-05-22\", \"sales_order_number\": \"579117\", \"po_number\": \"PO-40968\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"13\", \"unit_price\": \"75\", \"total_price\": \"975\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"19\", \"unit_price\": \"12\", \"total_price\": \"228\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"8\", \"unit_price\": \"90\", \"total_price\": \"720\"}], \"summary\": {\"total_quantity\": \"40\", \"sub_total\": \"1923\", \"tax\": \"100\", \"freight\": \"125\", \"grand_total\": \"2148\"}, \"notes\": \"Priority delivery requested\"}}}"} +{"file_name": "package_00096.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00096\", \"order_date\": \"2026-04-03\", \"sales_order_number\": \"576966\", \"po_number\": \"PO-34030\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"9\", \"unit_price\": \"250\", \"total_price\": \"2250\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"7\", \"unit_price\": \"10\", \"total_price\": \"70\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"9\", \"unit_price\": \"50\", \"total_price\": \"450\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"1\", \"unit_price\": \"200\", \"total_price\": \"200\"}, {\"sr_no\": \"5\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"15\", \"total_price\": \"165\"}, {\"sr_no\": \"6\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"1\", \"unit_price\": \"15\", \"total_price\": \"15\"}, {\"sr_no\": \"7\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"1\", \"unit_price\": \"125\", \"total_price\": \"125\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"5\", \"unit_price\": \"15\", \"total_price\": \"75\"}], \"summary\": {\"total_quantity\": \"44\", \"sub_total\": \"3350\", \"tax\": \"100\", \"freight\": \"100\", \"grand_total\": \"3550\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00097.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00097\", \"order_date\": \"2026-03-09\", \"sales_order_number\": \"589904\", \"po_number\": \"PO-42188\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"5\", \"unit_price\": \"30\", \"total_price\": \"150\"}, {\"sr_no\": \"2\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"19\", \"unit_price\": \"60\", \"total_price\": \"1140\"}, {\"sr_no\": \"3\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"10\", \"unit_price\": \"225\", \"total_price\": \"2250\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"6\", \"unit_price\": \"150\", \"total_price\": \"900\"}], \"summary\": {\"total_quantity\": \"40\", \"sub_total\": \"4440\", \"tax\": \"150\", \"freight\": \"125\", \"grand_total\": \"4715\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00098.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00098\", \"order_date\": \"2026-11-17\", \"sales_order_number\": \"544286\", \"po_number\": \"PO-36446\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"15\", \"unit_price\": \"175\", \"total_price\": \"2625\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"3\", \"unit_price\": \"75\", \"total_price\": \"225\"}, {\"sr_no\": \"3\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"15\", \"unit_price\": \"15\", \"total_price\": \"225\"}], \"summary\": {\"total_quantity\": \"33\", \"sub_total\": \"3075\", \"tax\": \"200\", \"freight\": \"200\", \"grand_total\": \"3475\"}, \"notes\": \"Customer signature required\"}}}"} +{"file_name": "package_00099.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00099\", \"order_date\": \"2026-09-13\", \"sales_order_number\": \"562933\", \"po_number\": \"PO-55235\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"15\", \"unit_price\": \"250\", \"total_price\": \"3750\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"16\", \"unit_price\": \"20\", \"total_price\": \"320\"}, {\"sr_no\": \"3\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"9\", \"unit_price\": \"200\", \"total_price\": \"1800\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"10\", \"unit_price\": \"225\", \"total_price\": \"2250\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"6\", \"unit_price\": \"250\", \"total_price\": \"1500\"}, {\"sr_no\": \"6\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"16\", \"unit_price\": \"30\", \"total_price\": \"480\"}, {\"sr_no\": \"7\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"7\", \"unit_price\": \"50\", \"total_price\": \"350\"}], \"summary\": {\"total_quantity\": \"79\", \"sub_total\": \"10450\", \"tax\": \"100\", \"freight\": \"150\", \"grand_total\": \"10700\"}, \"notes\": \"Keep goods dry during transit\"}}}"} +{"file_name": "package_00100.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00100\", \"order_date\": \"2026-05-30\", \"sales_order_number\": \"593454\", \"po_number\": \"PO-41816\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"9\", \"unit_price\": \"100\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"7\", \"unit_price\": \"100\", \"total_price\": \"700\"}, {\"sr_no\": \"3\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}], \"summary\": {\"total_quantity\": \"33\", \"sub_total\": \"1855\", \"tax\": \"125\", \"freight\": \"75\", \"grand_total\": \"2055\"}, \"notes\": \"Keep goods dry during transit\"}}}"} diff --git a/val/package_00051.png b/val/package_00051.png new file mode 100644 index 0000000000000000000000000000000000000000..bb05eaff1263cd4f0e436e15ed126a79788413e5 --- /dev/null +++ b/val/package_00051.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6507b1aefea9a6419537694566167f321f06442d14c69df9958305129afd2bf +size 66370 diff --git a/val/package_00052.png b/val/package_00052.png new file mode 100644 index 0000000000000000000000000000000000000000..f87961270ee68c6391f9f5a6bb665a4dd31cae59 --- /dev/null +++ b/val/package_00052.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2335f3c9c22287f9880ee7569190642807374d8c32b7040c6c023577baffa7ab +size 75526 diff --git a/val/package_00053.png b/val/package_00053.png new file mode 100644 index 0000000000000000000000000000000000000000..ce55fafd3d469992b507058c7a453da99eb53737 --- /dev/null +++ b/val/package_00053.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab38ea9288b7f2a784dd94f5cc6cb46c484e6ae97dc50aca6cfaba364bb541e +size 69736 diff --git a/val/package_00054.png b/val/package_00054.png new file mode 100644 index 0000000000000000000000000000000000000000..9cb8a6813445f015bd467f517b23e9b3883f447d --- /dev/null +++ b/val/package_00054.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfbed5b3b66c4cd325f45b891ef8567eca1db15aecc0b3882157a9be0acaeea8 +size 68817 diff --git a/val/package_00055.png b/val/package_00055.png new file mode 100644 index 0000000000000000000000000000000000000000..8453ee0dd8d0a7f24da13d76ec874f577ae5a807 --- /dev/null +++ b/val/package_00055.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2106dd695684e9752360f12687ae8e1fcec7beb2357d487e6140a3ceda4b474c +size 69102 diff --git a/val/package_00056.png b/val/package_00056.png new file mode 100644 index 0000000000000000000000000000000000000000..effa19c021bcc35c57f477a5570657af2cd8e100 --- /dev/null +++ b/val/package_00056.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdccbe27b2363d3d47faf7098a1b4ab8bd4c2c5a1a1949893e66dac2d9985b1 +size 78845 diff --git a/val/package_00057.png b/val/package_00057.png new file mode 100644 index 0000000000000000000000000000000000000000..367c731360746b53c0eb0c3d40602718a43117dc --- /dev/null +++ b/val/package_00057.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c8ed846603e6d50602f7bcbd6ee3f07e72c53e25ba2a199d86875f8213531f +size 66321 diff --git a/val/package_00058.png b/val/package_00058.png new file mode 100644 index 0000000000000000000000000000000000000000..c5f80d6602622397d12b30e155ce97ce9495b697 --- /dev/null +++ b/val/package_00058.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a88bf2deacf438c16efe05d73328777b1dc69de9f7b80685119c8780e3185320 +size 61821 diff --git a/val/package_00059.png b/val/package_00059.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e9a8dbda239e6a6ae53baaf5c7ba7b07940d69 --- /dev/null +++ b/val/package_00059.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903b9178b544b7504fa763f285761c93ae25172e3a9c509b0fd2f8a910a07e2b +size 66336 diff --git a/val/package_00060.png b/val/package_00060.png new file mode 100644 index 0000000000000000000000000000000000000000..abc6ac73972f2b13ddf6db06fbfeda9f1a74be5e --- /dev/null +++ b/val/package_00060.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0de268b83f085497fb99449d617e68822dc6a49ae022eba348c82b95f71328 +size 61068 diff --git a/val/package_00061.png b/val/package_00061.png new file mode 100644 index 0000000000000000000000000000000000000000..04eb86567ce219d3e6a9e90e93ef9ca6bf6c7336 --- /dev/null +++ b/val/package_00061.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6eda4701ca4a18abd53701a9eacac5d7450eff1baf5b3846974638ce4175ce5 +size 72556 diff --git a/val/package_00062.png b/val/package_00062.png new file mode 100644 index 0000000000000000000000000000000000000000..9d1c94eb762d0c09249a42e8976ea917723bd584 --- /dev/null +++ b/val/package_00062.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e47d35a53455536d640db7e63b0e078b4c839e1b6dd11817b89b0696d140f79 +size 72619 diff --git a/val/package_00063.png b/val/package_00063.png new file mode 100644 index 0000000000000000000000000000000000000000..b83f0cc9a212cd3f15107b11a307687312950dc2 --- /dev/null +++ b/val/package_00063.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aaadf75aeddf53f4d0e8805433ff5d65e65b590ec048bd158f1277c7f855d45 +size 64019 diff --git a/val/package_00064.png b/val/package_00064.png new file mode 100644 index 0000000000000000000000000000000000000000..c48da8d2fa989c64512fba411915e55f64fe71f2 --- /dev/null +++ b/val/package_00064.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29c3920810c5dd0d84e2992e7a0e607d390270bc46b62e60c4e4b57aa02009e +size 70734 diff --git a/val/package_00065.png b/val/package_00065.png new file mode 100644 index 0000000000000000000000000000000000000000..4cc4dd320e9bf06bb31acc7f064d30762b116b92 --- /dev/null +++ b/val/package_00065.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91780a5469b8ce28622aa1555cbd21e856b983415b92c1adbae32edc4a516e9f +size 71684 diff --git a/val/package_00066.png b/val/package_00066.png new file mode 100644 index 0000000000000000000000000000000000000000..0759d32b94d3269ec735cf5f8aa25572d65b78ae --- /dev/null +++ b/val/package_00066.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f2a573613068dd57bf05ffbe5a6bec593c082a92f334b3b04321d4b3e32746 +size 60063 diff --git a/val/package_00067.png b/val/package_00067.png new file mode 100644 index 0000000000000000000000000000000000000000..f1cd1b1ede1dd754aabd59037a78e3a3b61baf75 --- /dev/null +++ b/val/package_00067.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:babbb37e1271711a331251069aa459111bc47ad32449a5f5a504d9b7058e1872 +size 75852 diff --git a/val/package_00068.png b/val/package_00068.png new file mode 100644 index 0000000000000000000000000000000000000000..fa2491acd99636ccb9c4fc599461a432faa15d05 --- /dev/null +++ b/val/package_00068.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216b68489346c313ca2eab8411a92a68097ef234c2513d558c61a62560553ff9 +size 75343 diff --git a/val/package_00069.png b/val/package_00069.png new file mode 100644 index 0000000000000000000000000000000000000000..b19bf6269f7c5d7d3faec66d78f847f8922ae69a --- /dev/null +++ b/val/package_00069.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856694a58a9081fd56d5025a29f1b62285b998b442a14391b3f1f386f59f5ed9 +size 70678 diff --git a/val/package_00070.png b/val/package_00070.png new file mode 100644 index 0000000000000000000000000000000000000000..a6c21fceb5af5a3bbe7bfb7c9a2a26cf657dda3e --- /dev/null +++ b/val/package_00070.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17e0547fa76d57b20e9bfa99bf14f43d90ffa33e9abe1c0c3d38055bbcfefc7 +size 63309 diff --git a/val/package_00071.png b/val/package_00071.png new file mode 100644 index 0000000000000000000000000000000000000000..d63c3086efafb76d224e65fc1425a341f0f08af3 --- /dev/null +++ b/val/package_00071.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dadea3ed9f3b3d9f61741ee2df4c49ae4cad88c8f4cb6a817ff41849964a3a37 +size 72944 diff --git a/val/package_00072.png b/val/package_00072.png new file mode 100644 index 0000000000000000000000000000000000000000..25ef99627e4b44386a236d0bf282c0bddcb1384e --- /dev/null +++ b/val/package_00072.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20e2f0cdeaadf8b442f265d78050e3f69e9ea85d86d1b20014cd14009f9f035 +size 67052 diff --git a/val/package_00073.png b/val/package_00073.png new file mode 100644 index 0000000000000000000000000000000000000000..a7840a35335841c348348a8cf16f6a98a6b4fede --- /dev/null +++ b/val/package_00073.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1285405860b58bd30e832a43fe2be1d7d1e8b90f515bf20e95ecc8c2b393ea +size 64197 diff --git a/val/package_00074.png b/val/package_00074.png new file mode 100644 index 0000000000000000000000000000000000000000..a860702ace0f49b667b6a85b203150acaa1375ac --- /dev/null +++ b/val/package_00074.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0895b9e2069653f239253da10075cfa3fd446d191151377693a4bbfb23c3b4 +size 69147 diff --git a/val/package_00075.png b/val/package_00075.png new file mode 100644 index 0000000000000000000000000000000000000000..3a6e9a16404cd35d819258d0d9b259a3b31d0853 --- /dev/null +++ b/val/package_00075.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1fe00ef62653feaf4affb8ffa8bebbe980cbeb8aafe9a4f3ca16984c0e2cee +size 64237 diff --git a/val/package_00076.png b/val/package_00076.png new file mode 100644 index 0000000000000000000000000000000000000000..60ed590b5b4c176d940aaa3e4ca1b72fc02ac5d7 --- /dev/null +++ b/val/package_00076.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2bb63c0fbe1d1882ef26fb71066746e91c9cb6de1eccece1f181af8b7c72d48 +size 62761 diff --git a/val/package_00077.png b/val/package_00077.png new file mode 100644 index 0000000000000000000000000000000000000000..ba200c988b66e19735e67b5e0fef7f86297415f4 --- /dev/null +++ b/val/package_00077.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0602f7e99fdb2c3ec714b2315adc8eb587ac2d36d522fa96a18a6eaf11635f3 +size 66313 diff --git a/val/package_00078.png b/val/package_00078.png new file mode 100644 index 0000000000000000000000000000000000000000..2162fa6a1974ff726e218972912a2093224e6bf3 --- /dev/null +++ b/val/package_00078.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a45ed12c194c2a750d1137c1eb5a2c49447b908bad4dee10ddca2927951dd4 +size 75041 diff --git a/val/package_00079.png b/val/package_00079.png new file mode 100644 index 0000000000000000000000000000000000000000..2752763686ee726bf9266ba19cd7300b4ecdc322 --- /dev/null +++ b/val/package_00079.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fb6a22ca481839f3b578ae0fbec360d2993d220235d73d641134f0faeeff7e +size 65991 diff --git a/val/package_00080.png b/val/package_00080.png new file mode 100644 index 0000000000000000000000000000000000000000..c6c769e2a2e2805ed70991a5a4679a26adedbb45 --- /dev/null +++ b/val/package_00080.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae480c5cb18f8e19c6ef932b17cd388cd279cba2605a6a6171eb49ffdf43e7b +size 68504 diff --git a/val/package_00081.png b/val/package_00081.png new file mode 100644 index 0000000000000000000000000000000000000000..4a5886bd8e2659d0a0a3c344ea4975e03f822622 --- /dev/null +++ b/val/package_00081.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0442424317c189a8ce64ded5be4492539d0bc64daf26be0cc9d712d95da9f89f +size 70505 diff --git a/val/package_00082.png b/val/package_00082.png new file mode 100644 index 0000000000000000000000000000000000000000..aba873b8df3f98d38fd96d09fa1b6b6aeb42a8f5 --- /dev/null +++ b/val/package_00082.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c36bfbb3b0ee01e686295f577d3736b716e4b0bb09cff7e94b13fd4fde44ae +size 69582 diff --git a/val/package_00083.png b/val/package_00083.png new file mode 100644 index 0000000000000000000000000000000000000000..07260c53b4822276ac6f91af741bde57d9d5685c --- /dev/null +++ b/val/package_00083.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58150e62f0f1af803e76b31b2115c0cfec3db3b3be339617b5c286d9e779f40d +size 76273 diff --git a/val/package_00084.png b/val/package_00084.png new file mode 100644 index 0000000000000000000000000000000000000000..6575b200c0d7422391ebee55f6c811376b5cd8b7 --- /dev/null +++ b/val/package_00084.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:496a1e590431c3d495ec4634f557a2171a573f79f1e92dec577b3b60de857a0c +size 75842 diff --git a/val/package_00085.png b/val/package_00085.png new file mode 100644 index 0000000000000000000000000000000000000000..398d33681f45924278d42753887cd93d7086f94e --- /dev/null +++ b/val/package_00085.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b92bd37f21549b26150f85704de34efec7e83954da4facba605ed04a6c0ca1a +size 74885 diff --git a/val/package_00086.png b/val/package_00086.png new file mode 100644 index 0000000000000000000000000000000000000000..386cb61fd29293b2e96230145f4d01d79eacf245 --- /dev/null +++ b/val/package_00086.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4877d10ebb9372138dc3087db8625dce8846b14e0a69490c11532e28a2a0870 +size 67131 diff --git a/val/package_00087.png b/val/package_00087.png new file mode 100644 index 0000000000000000000000000000000000000000..b7e6fad845aff4ee6abe0628f85f05f2a95b746b --- /dev/null +++ b/val/package_00087.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea838033086fb8d5941288ab3604c0e00cc16ab2c722381a7cb9117652ef6d1a +size 70884 diff --git a/val/package_00088.png b/val/package_00088.png new file mode 100644 index 0000000000000000000000000000000000000000..785d329f992708b1502d057f0c8a9fcc5da5bf02 --- /dev/null +++ b/val/package_00088.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fad04b5adcbb0bc4db36aaf7ed050c914dfba298d91d548c06509da21b88a96 +size 63791 diff --git a/val/package_00089.png b/val/package_00089.png new file mode 100644 index 0000000000000000000000000000000000000000..53c5dcc9746692829b114a8c1f14269a2db4fe80 --- /dev/null +++ b/val/package_00089.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30874b97cd33e38e08f29ab529091350ac5b51dc8fd7ff8b912e68d8cc2fa84 +size 63672 diff --git a/val/package_00090.png b/val/package_00090.png new file mode 100644 index 0000000000000000000000000000000000000000..122e1ff2a0f97601fd13cea087da020f50a4e2b7 --- /dev/null +++ b/val/package_00090.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afd5d6647e25430e20f53532d12a11646ac81128dbe62b20c703c914c744a0f +size 68027 diff --git a/val/package_00091.png b/val/package_00091.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f28b097e751118c2a2cbb96be2a6b663b3750d --- /dev/null +++ b/val/package_00091.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528ff9b2a58a9d14db5122ea05fc2b3acf95841bf73d0eb30307a099616b7bd0 +size 77453 diff --git a/val/package_00092.png b/val/package_00092.png new file mode 100644 index 0000000000000000000000000000000000000000..edd3e3b1072fee055b905f9f44cd10e139989e0c --- /dev/null +++ b/val/package_00092.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4feb57afb0613fa0fb848371fe515048efd8c7b7b3797e7d4053fed78ec23a4f +size 66714 diff --git a/val/package_00093.png b/val/package_00093.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff6b59cc78f978afd739660bbaff2dd303b0724 --- /dev/null +++ b/val/package_00093.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651615076a15a79561f99a152e3fb370c97f66475ba62207b9cb24c5ca5a398e +size 71881 diff --git a/val/package_00094.png b/val/package_00094.png new file mode 100644 index 0000000000000000000000000000000000000000..dec6851ef3b673e518f760f7d9add0ac424e4522 --- /dev/null +++ b/val/package_00094.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6555c439553215dded7ac6d14daf2e409d081dc8e2d7db97eab0e1cd56490ea8 +size 70542 diff --git a/val/package_00095.png b/val/package_00095.png new file mode 100644 index 0000000000000000000000000000000000000000..384efd30b39142fe15be4420503497245fc003ad --- /dev/null +++ b/val/package_00095.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1cacff48e4765599f85eba8fbadf24221cfab849ae9aa53806a302ab782b55 +size 64946 diff --git a/val/package_00096.png b/val/package_00096.png new file mode 100644 index 0000000000000000000000000000000000000000..1cfc03eed133f94e1fcac67b210382b13010670d --- /dev/null +++ b/val/package_00096.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ed434e223769cd748d267561bc7ed76fc393bb00a7402931e1e6a5a9b3a2ad +size 75264 diff --git a/val/package_00097.png b/val/package_00097.png new file mode 100644 index 0000000000000000000000000000000000000000..24292d386ce5c13ff48806c9005877ed48fc7021 --- /dev/null +++ b/val/package_00097.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c997bc82fa2dd7e8dab7ad5aea68d2c9c18b8b086f04ba717f68ac7a7d422b35 +size 67648 diff --git a/val/package_00098.png b/val/package_00098.png new file mode 100644 index 0000000000000000000000000000000000000000..e016a8022d059ed3ea66d36bb507dcf3abf94251 --- /dev/null +++ b/val/package_00098.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5dc89a305b930c9ae589a111b1c5d2fe6628b69072c683a74c2fea2e3f74b6 +size 65854 diff --git a/val/package_00099.png b/val/package_00099.png new file mode 100644 index 0000000000000000000000000000000000000000..597966695349d882e02ec6842d40becddbe0f962 --- /dev/null +++ b/val/package_00099.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d66558f4f82ebef8d55b7059dffd0cd505d86c3a26c3ee9bef894d88e79a12 +size 76025 diff --git a/val/package_00100.png b/val/package_00100.png new file mode 100644 index 0000000000000000000000000000000000000000..2ac36b57cf0893deabbd30fca28575a8b45985ee --- /dev/null +++ b/val/package_00100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a7ceec0ce2e460fc3ef95678ed5ce87e7d640dc8c907b0ea11f14a9d8b7006 +size 60733