You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

827 lines
227 KiB
Lua

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

local DB = require('./piazza-lmdb')
local db = DB.init()
local user = require('./models/user')
local item = require('./models/item')
user.setdb(db)
item.setdb(db)
user.new({
username = 'brian',
password = 'buginoO1$',
firstname = 'Brian',
lastname = 'Sakal',
is_admin = true
})
user.new({
username = 'guest',
password = 'buginoo',
firstname = 'Guest',
lastname = 'Beast'
})
user.new({
username = 'w',
password = 'w',
firstname = 'Test',
lastname = 'User',
is_admin = true
})
item.new({subtype='frame', brand='BubbleGum', model='BB200', color='C2', color_description='Matte Black with Red tips', size='46-16-127', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB200', color='C3', color_description='Matte Brown', size='46-16-127', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB200', color='C4', color_description='Frosted Grey', size='46-16-127', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB201', color='C1', color_description='Matte Blue', size='47-16-127', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB201', color='C2', color_description='Matte Lavender', size='47-16-127', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB202', color='C1', color_description='Matte Light Brown -Blue', size='47-16-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB202', color='C2', color_description='Matte Brown', size='47-16-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB202', color='C3', color_description='Matte Navy Blue with Blue temples', size='47-16-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB203', color='C1', color_description='Matte Blue', size='47-16-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB203', color='C2', color_description='Matte Black with Orange temple tips', size='47-16-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB203', color='C3', color_description='Matte Purple with Pink temple tips', size='47-16-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C1', color_description='Matte Burgundy', size='47-15-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C2', color_description='Matte Moss Grey with Grey temples', size='47-15-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C3', color_description='Matte Dark Grey with blue temples', size='47-15-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C4', color_description='Matte Brown', size='47-15-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C5', color_description='Matte Light Grey', size='47-15-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C6', color_description='Matte Navy Blue', size='47-15-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB204', color='C7', color_description='Matte Black with Red temples', size='47-15-125', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB205', color='C1', color_description='Matte Brown', size='49-15-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB205', color='C2', color_description='Matte Black with Orange temples', size='49-15-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB205', color='C3', color_description='Matte Navy Blue', size='49-15-128', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB206', color='C1', color_description='Matte Purple with Lavender temples', size='47-16-131', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB206', color='C2', color_description='Matte Red with Black temples', size='47-16-131', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB207', color='C1', color_description='Matte Lavender with Purple temples', size='46-16-131', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB207', color='C2', color_description='Matte Grey with Orange temples', size='46-16-131', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB207', color='C3', color_description='Matte Off White with Red temples', size='46-16-131', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='BB207', color='C4', color_description='Matte Black with Black temples', size='46-16-131', material='TR90', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC010', color='C45', color_description='Shiny Lavender/Matte Pink and Purple temples', size='46-16-125', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC010', color='C80', color_description='Shiny Blue/Matte Light Blue temples', size='46-16-125', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC010', color='C86', color_description='Shiny Black/Matte Light Blue temples', size='46-16-125', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC015', color='C31', color_description='Shiny Black/Neon Green with Green and Black temples', size='45-15-125', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC015', color='C39', color_description='Shiny Black/pink/grey with Pink and Black temples', size='45-15-125', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC015', color='C80', color_description='Shiny Blue with Blue temples', size='45-15-125', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC017', color='C53', color_description='Light Purple/Grey with Purple and Grey temples', size='49-16-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC017', color='C55', color_description='Pink with Pink temples', size='49-16-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC017', color='C80', color_description='Blue with Blue and Light Blue temples', size='49-16-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC019', color='C3', color_description='Black and Red with Black and Red temples', size='48-16-130', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC019', color='C47', color_description='Lime Green/White/Teal with White and Teal temples', size='48-16-130', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC019', color='C80', color_description='Blue/Light Blue with Blue temples', size='48-16-130', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC027', color='C22', color_description='Navy Blue/Light Blue with Blue and Grey temples', size='48-16-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC027', color='C45', color_description='Shiny Lavender/Pink with Pink and Light Purple temples', size='48-16-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC027', color='C75', color_description='Shiny Orange/Yellow with Orange and Yellow temples', size='48-16-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC028', color='C3', color_description='Black and Red', size='49-17-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC028', color='C33', color_description='Dark Hot Pink', size='49-17-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='SC028', color='C80', color_description='Shiny Blue/Lt. Blue with Blue and Light Blue temples', size='49-17-135', material='TR90 and Silicone', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR708', color='C1', color_description='Matte Black with Black temples', size='40-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR708', color='C14', color_description='Matte Powder Blue with Blue temples', size='40-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR708', color='C15', color_description='Matte Light Purple with Light Purple temples', size='40-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR819', color='C1', color_description='Matte Black with Black temples', size='45-16-120', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR819', color='C14', color_description='Matte Powder Blue with Blue temples', size='45-16-120', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR819', color='C15', color_description='Matte Lavender with Lavender temples', size='45-16-120', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR869', color='C8', color_description='Matte Red with Red temples', size='44-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR869', color='C14', color_description='Matte Baby Blue with Blue temples', size='44-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR869', color='C15', color_description='Matte Lt. Purple with Purple temples', size='44-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR911', color='C14', color_description='Matte Baby Blue with Blue temples', size='44-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR911', color='C15', color_description='Matte Lavender with Lavender temples', size='44-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR912', color='C15', color_description='Matte Lavender with Lavender temples', size='43-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR912', color='C18', color_description='Matte Grey with Grey temples', size='43-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR936', color='C15', color_description='Matte Lavender with Lavender temples', size='44-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR936', color='C16', color_description='Matte Brown with Brown temples', size='44-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='TR936', color='C18', color_description='Matte Grey with Grey temples', size='44-16-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='S3594100', color='C14', color_description='Matte Baby Blue with Blue temples', size='41-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='BubbleGum', model='S3594100', color='C15', color_description='Matte Lavender with Lavender temples', size='41-15-115', material='TR90 | Includes elastic adjustable holder', price_silver=15, price_gold=12, description_short='TR90 optical frame for kids in durable material', categories={'Bubble Gum','Collections Catalog','Exclusive Labels','Kids','Optical Frames','Plastic','TR90 & Silicone'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2035', color='C1', color_description='Black and Gold', size='51-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2035', color='C2', color_description='Demi and Gold', size='51-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2035', color='C4', color_description='Black and Silver', size='51-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2036', color='C1', color_description='Black and Silver', size='50-19-142', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate and Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2036', color='C2', color_description='Multi Blue-Brown and Silver', size='50-19-142', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate and Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2036', color='C4', color_description='Black and Gold', size='50-19-142', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate and Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2039', color='C1', color_description='Black and Silver', size='55-17-145', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Unisex optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2041', color='C1', color_description='Black', size='52-18-143', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2041', color='C3', color_description='Blue', size='52-18-143', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2041', color='C4', color_description='Crystal Red', size='52-18-143', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2105', color='C1', color_description='Black and Gold', size='53-18-140', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate and Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2105', color='C2', color_description='Demi Amber and Gold', size='53-18-140', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate and Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD YC2105', color='C3', color_description='Caramel and Silver', size='53-18-140', material='Acetate and Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate and Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4170', color='2001', color_description='Ebony and Gold | 55-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4170', color='2007', color_description='Burgundy and Gold | 55-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4170', color='2022', color_description='Violet and Gold | 55-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4170', color='2031', color_description='Copper and Gold | 55-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4181', color='2001', color_description='Ebony and Gold | 53-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4181', color='2022', color_description='Violet and Gold | 53-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4181', color='2031', color_description='Copper and Gold | 53-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4205', color='2007', color_description='Red and Gold | 53-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4205', color='2022', color_description='Violet and Gold | 53-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='BV 4205', color='2031', color_description='Copper and Gold | 53-16-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='GY 7053', color='C01', color_description='Ebony and Gold | 53-15-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='GY 7053', color='C02', color_description='Copper and Gold | 53-15-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='GY 7053', color='C03', color_description='Violet and Gold | 53-15-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='8181', color='C03', color_description='Ebony and Silver | 53-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8181', color='C04', color_description='Gunmetal and Silver | 53-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8181', color='C05', color_description='Copper and Gold | 53-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8182', color='C02', color_description='Ebony and Silver | 52-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8182', color='C05', color_description='Copper and Gold | 52-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8184', color='C2', color_description='Ebony and Silver | 54-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8184', color='C3', color_description='Ebony and Gunmetal | 54-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='8184', color='C4', color_description='Brown and Silver | 54-17-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Mens optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='1802', color='C3', color_description='Copper and Gold | 53-20-138', material='Monel Metal', price_silver=18, price_gold=14, description_short='Unisex optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='1802', color='C5', color_description='Navy Blue and Silver | 53-20-138', material='Monel Metal', price_silver=18, price_gold=14, description_short='Unisex optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 6821', color='C1',color_description='Black', size='53-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 6821', color='C2',color_description='Brown Multi', size='53-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 6821', color='C5',color_description='Lavender Multi', size='53-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='P7003', color='C1', color_description='Black and Silver details | 55-16-142', material='Acetate', price_silver=18, price_gold=14, description_short='Unisex optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='P7003', color='C2', color_description='Havanna and Gold details | 55-16-142', material='Acetate', price_silver=18, price_gold=14, description_short='Unisex optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='TF2192', color='C1', color_description='Ebony and Gold | 53-18-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='TF2192', color='C2', color_description='Copper and Gold | 53-18-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='TF2192', color='C4', color_description='Burgundy and Gold | 53-18-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='TF2192', color='C5', color_description='Purple and Silver | 53-18-140', material='Monel Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='WD4003', color='C2', color_description='Lavender-Grey Multi', size='53-15-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='WD4003', color='C4', color_description='Pearl-Grey Multi', size='53-15-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='WD4003', color='C6', color_description='Brick-Brown Multi', size='53-15-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='RD377', color='C2', color_description='Havanna and Gold details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='RD377', color='C3', color_description='Grey marble and Gold details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='RD377', color='C5', color_description='Burgundy marble and Gold details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='RD377', color='C7', color_description='Blue marble and Gold details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 650', color='C1', color_description='Honey-Aqua and Gold details', size='54-15-145', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 650', color='C2', color_description='Olive-Caramel and Gold details', size='54-15-145', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 650', color='C3', color_description='Violet-Lavender multi and Gold details', size='54-15-145', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 651', color='C1', color_description='Honey-Aqua and Gold details', size='53-16-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 651', color='C2', color_description='Olive-Caramel and Gold details', size='53-16-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 651', color='C3', color_description='Violet-Lavender multi and Gold details', size='53-16-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 652', color='C1', color_description='Black and Gold details', size='53-15-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 652', color='C2', color_description='Purple and Gold details', size='53-15-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 652', color='C3', color_description='Beige and Gold details', size='53-15-135', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 681', color='C2', color_description='Graffite Grey and Silver | 50-19-147', material='Metal and Plastic', price_silver=18, price_gold=14, description_short='Unisex optical frame, Metal and plastic', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal and plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 681', color='C2', color_description='Light Grey and Silver | 50-19-147', material='Metal and Plastic', price_silver=18, price_gold=14, description_short='Unisex optical frame, Metal and plastic', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal and plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 681', color='C4', color_description='Matte Brown and Gold | 50-19-147', material='Metal and Plastic', price_silver=18, price_gold=14, description_short='Unisex optical frame, Metal and plastic', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal and plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 683', color='C2', color_description='Matte Copper and Gold details', size='54-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 683', color='C3', color_description='Matte Purple and Gold details', size='54-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 683', color='C4', color_description='Matte Burgundy and Gold details', size='54-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 684', color='C1', color_description='Matte Black and Gold details', size='52-16-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 684', color='C3', color_description='Matte Purple and Gold details', size='52-16-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 684', color='C4', color_description='Matte Burgundy and Gold details', size='52-16-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 685', color='C1', color_description='Matte Black and Gold details', size='53-17-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 685', color='C3', color_description='Matte Purple and Gold details', size='53-17-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 685', color='C2', color_description='Matte Copper and Gold details', size='53-17-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 686', color='C1', color_description='Matte Black and Gold details', size='53-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 686', color='C3', color_description='Matte Purple and Gold details', size='53-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 686', color='C4', color_description='Matte Burgundy and Gold details', size='53-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 687', color='C1', color_description='Matte Black and Silver details', size='53-15-140', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 687', color='C2', color_description='Matte Copper and Gold details', size='53-15-142', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 687', color='C3', color_description='Matte Purple and Gold details', size='53-15-142', material='Metal', price_silver=18, price_gold=14, description_short='Lady optical frame, Metal', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 688', color='C5', color_description='Grey marble and Gold details', size='56-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 688', color='C6', color_description='Purple marble and Gold details', size='56-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 689', color='C7', color_description='Purple marble and Gold details', size='54-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 689', color='C6', color_description='Red marble and Gold details', size='54-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 689', color='C1', color_description='Black and Gold details', size='54-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 690', color='C1', color_description='Black and Gold details', size='53-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 690', color='C4', color_description='Blue and Gold details', size='53-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 690', color='C6', color_description='Purple and Gold details', size='53-18-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 691', color='C1', color_description='Purple Multi and Gold details| Size: 52-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 691', color='C6', color_description='Caramel and Gold details| Size: 52-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 691', color='C7', color_description='Violet Crystal and Gold details| Size: 52-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 692', color='C1', color_description='Black and Gold details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Mens optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 692', color='C2', color_description='Matte Black and Silver details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Mens optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='KD 692', color='C1', color_description='Matte Navy and Silver details | 53-17-140', material='Acetate', price_silver=18, price_gold=14, description_short='Mens optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Kadima', model='MG6003', color='C3', color_description='Burgundy and Gunmetal details', size='54-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='MG6003', color='C4', color_description='Violet Crystal and Silver details', size='54-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Kadima', model='MG6003', color='C5', color_description='Blue/Black and Gunmetal details', size='54-16-140', material='Acetate', price_silver=18, price_gold=14, description_short='Lady optical frame, Acetate', categories={'Kadima', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='1064', color='C2', color_description='Shiny Gun', size='54-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='3125', color='BUR',color_description='Shiny Burgundy', size='53-17-138', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='3125', color='PNK',color_description='Shiny Pink', size='53-17-138', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='5063', color='C3',color_description='Matte Blue /Navy', size='55-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Unisex frame, Metal', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='HG1731', color='C1', color_description='Black', size='53-16-140', material='Acetate', price_silver=10.50, price_gold=8.50, description_short='Acetate Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='HG1731', color='C2', color_description='Brown', size='53-16-140', material='Acetate', price_silver=10.50, price_gold=8.50, description_short='Acetate Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5177', color='C2', color_description='Shiny Silver-Black', size='59-15-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5177', color='C3', color_description='Shiny Gold-Brown', size='59-15-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5222', color='C1', color_description='Matte Black', size='53-17-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5222', color='C3', color_description='Matte Blue', size='53-17-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5222', color='C4', color_description='Matte Copper', size='53-17-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5239', color='C4', color_description='Matte Purple-Gold', size='51-17-135', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5242', color='C1', color_description='Gold /Black', size='52-17-135', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Lady frame with Strass detail', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5242', color='C2', color_description='Gun /Violet', size='52-17-135', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Lady frame with Strass detail', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5242', color='C4', color_description='Copper /Brown', size='52-17-135', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Lady frame with Strass detail', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5280', color='C1', color_description='Matte Black', size='54-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5280', color='C2', color_description='Shiny Black', size='54-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='HG5280', color='C3', color_description='Shiny Gun', size='54-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='M18366', color='C2', color_description='Shiny Gold', size='55-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='M18366', color='C3N', color_description='Navy Blue', size='55-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='M18366', color='C3B', color_description='Brown/orange', size='55-18-140', material='Metal', price_silver=10.50, price_gold=8.50, description_short='Metal Mens frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8014', color='C3', color_description='Black/Blue-Gold Mosaic', size='51-17-145', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8030', color='C2', color_description='Matte Black/Blue Stripe', size='52-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8030', color='C3', color_description='Matte Black/Burg Stripe', size='52-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8030', color='C4', color_description='Matte Black/Burg Mottled', size='52-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8086', color='C2', color_description='Black/Zebra', size='53-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8086', color='C4', color_description='Brown/Caramel', size='53-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH8086', color='C5', color_description='Purple/Lavender', size='53-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH18082', color='C2009', color_description='Violet', size='54-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH18082', color='C2022', color_description='Grey/Blue', size='54-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH18082', color='C2028', color_description='Black/Wine', size='54-17-140', material='Injected', price_silver=10.50, price_gold=8.50, description_short='Injected Unisex frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Primmera', model='YH18090', color='C8', color_description='Black/Green', size='52-16-140', material='Acetate', price_silver=10.50, price_gold=8.50, description_short='Acetate Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='YH18090', color='C9', color_description='Tortoise Shell/Havanna', size='52-16-140', material='Acetate', price_silver=10.50, price_gold=8.50, description_short='Acetate Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Primmera', model='YH18090', color='C11',color_description='Black/Burgundy', size='52-16-140', material='Acetate', price_silver=10.50, price_gold=8.50, description_short='Acetate Lady frame', categories={'Primmera', 'Collections Catalog', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5453', color='669', color_description='Dark Demi/Gold', size='54-18-140', material='Metal and plastic', price_silver=35.00, price_gold=33.00, description_short='Lady optical frame, Metal and Plastic', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5454', color='414', color_description='Matte Navy', size='54-18-140', material='Metal', price_silver=35.00, price_gold=33.00, description_short='Mens optical frame, Metal', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5650', color='214', color_description='Havana', size='50-17-140', material='Plastic', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5837', color='414', color_description='Crystal Cobalt Blue', size='52-16-140', material='Plastic', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5847A', color='215', color_description='Tortoise Shell', size='55-16-140', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Lady optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5886', color='278', color_description='Matte Grey/Bone/Navy', size='54-19-140', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5908', color='201', color_description='Havanna', size='51-18-140', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5909', color='201', color_description='Dark Havanna', size='51-18-140', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Lady optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5933', color='229', color_description='Black/Cobalt Blue Temples', size='51-16-140', material='Plastic', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5957', color='040', color_description='Grey', size='52-17-135', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5958', color='204', color_description='Crystal Havanna/Cobalt Blue Temples', size='52-17-135', material='Plastic', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK5974', color='214', color_description='Demi Amber', size='55-17-145', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK8522', color='239', color_description='Matte Havanna/Grey', size='51-20-140', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK8535', color='214', color_description='Tortoise Shell', size='51-17-135', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Lady optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Calvin Klein', model='CK18707', color='620',color_description='Crystal Brick Red', size='53-18-140', material='Acetate', price_silver=35.00, price_gold=33.00, description_short='Unisex optical frame, Acetate', categories={'Calvin Klein', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE079', color='0SN4', color_description='Taupe and Coral ', size='53-16-140', material='Metal', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE091', color='033M', color_description='Light Taupe-Burgundy ', size='53-16-135', material='Metal', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE091', color='0S68', color_description='Light Grey-Black ', size='53-16-135', material='Metal', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE094', color='0323', color_description='Beige, Brown, Black Multi and Gold ', size='52-17-135', material='Plastic and Metal', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE096', color='0530', color_description='Black and Red ', size='55-16-135', material='Metal', price_silver=55.00, price_gold=50.00, description_short='Unisex optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE123', color='0301', color_description='Black ', size='53-16-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE123', color='0I21', color_description='Navy Blue ', size='53-16-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE123', color='0R10', color_description='Dark Copper-Blue ', size='53-16-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE125', color='0E59', color_description='Brown-Gold ', size='54-15-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE125', color='0287', color_description='Dark Copper-Gold ', size='54-15-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE125', color='0301', color_description='Black-Red-Bone-Gold ', size='54-15-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE134', color='08FC', color_description='Brown Marble/Multi and Gold ', size='53-18-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE134', color='300Y', color_description='Wine/Multi and Gold ', size='53-18-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE134', color='0300', color_description='Black/Multi', size='53-18-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE137', color='0E59', color_description='Violet-Mauve ', size='54-16-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE137', color='0301', color_description='Dark Brown-Red ', size='54-16-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE137', color='0320', color_description='Marble Brown-Gold ', size='54-16-135', material='Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE146', color='0300', color_description='Brown Stripe and Gold ', size='51-19-145', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE146', color='0579', color_description='Black and Silver', size='51-19-145', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE146', color='0581', color_description='Marble Frosted Blue and Matte Silver', size='51-19-145', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE660', color='0G96', color_description='Rust and Demi', size='52-17-135', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE672', color='0M65', color_description='Multi Brown and Beige', size='54-15-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE673', color='06HN', color_description='Demi Stipe and Taupe', size='53-17-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE679', color='01GQ', color_description='Brown and Mauve Multi', size='53-15-135', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE729N', color='096N',color_description='Black/Grey Multi and Taupe', size='53-16-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE730N', color='0700',color_description='Black and Red', size='53-17-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE738', color='01GQ', color_description='Brown and Coral Multi', size='52-16-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE738', color='0700', color_description='Black and Rose Taupe', size='52-16-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE738', color='0752', color_description='Marble Brown', size='52-16-140', material='Plastic', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE799', color='06DQ', color_description='Black and Blue Multi', size='53-15-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE799', color='0752', color_description='Marble Brown and Red', size='53-15-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE800', color='0ADQ', color_description='Rust Brown-Bone-Coral', size='52-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE800', color='09RV', color_description='Red Wine', size='52-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE800', color='07C4', color_description='Black and Blue', size='52-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE801', color='0971', color_description='Violet and Blue', size='53-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE801', color='09P2', color_description='Black and Red', size='53-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE801', color='09RV', color_description='Red Wine', size='53-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE804', color='05AH', color_description='Burgundy Multi', size='54-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE804', color='0APK', color_description='Tortoise Shell', size='54-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE804', color='0U75', color_description='Black', size='54-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE806L', color='06YZ', color_description='Light Havanna Beige & Grey| Size: 54-15-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE806L', color='0752', color_description='Marble Brown-Beige-Black', size='54-15-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE812', color='09H7', color_description='Black-Red-Gun', size='51-20-145', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE812', color='1GZY', color_description='Demi-Navy-Gun', size='51-20-145', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE813', color='096X', color_description='Multi Brown-Purple', size='54-15-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE813', color='0D78', color_description='Purple Crystal', size='54-15-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE814', color='0722', color_description='Demi ', size='54-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE814', color='0AR3', color_description='Wine ', size='54-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE814', color='0700', color_description='Black ', size='54-16-135', material='Plastic', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE816', color='0752', color_description='Marble Brown-Powder Pink-Gold', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE816', color='0AFG', color_description='Reddish Brown ', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE816', color='0700', color_description='Black ', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE817', color='0GEN', color_description='Brown Stripe and Aqua-Gold ', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE817', color='06YH', color_description='Brown Marble', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE817', color='0AFG', color_description='Red Wine-Brown-Gold', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE817', color='0700', color_description='Black', size='53-16-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE818', color='0713', color_description='Rust Brown ', size='54-15-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Carolina Herrera', model='VHE818', color='0752', color_description='Marble Brown-Red-Gold ', size='54-15-135', material='Plastic and Metal', price_silver=75.00, price_gold=70.00, description_short='Lady optical frame, Acetate and Metal', categories={'Carolina Herrera', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0058Q', color='06L5', color_description='Light Fuschia and Crystal', size='53-17-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Ladys, Adult, Teens, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0058Q', color='06PF', color_description='Crystalline Lilac ', size='53-17-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Ladys, Adult, Teens, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0058Q', color='OT31', color_description='Violet/Powder Blue Temples', size='53-17-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Ladys, Adult, Teens, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0060Q', color='0741', color_description='DemiAmber/Blue Temples', size='52-17-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0060Q', color='0W60', color_description='Navy Blue/Crystal light blue', size='52-17-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0063Q', color='0840M', color_description='Frosted Grey/Neon Green', size='51-19-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Lightweight, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0065Q', color='0F94', color_description='Matte Cobalt Blue/Silver', size='55-17-145', material='Metal (Stainless Steel)', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Lightweight, Metal (Stainless Steel)', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal (Stainless Steel)'}})
item.new({subtype='frame', brand='Converse', model='VCO0065Q', color='0K07', color_description='Matte Black/Silver', size='55-17-145', material='Metal (Stainless Steel)', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Lightweight, Metal (Stainless Steel)', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal (Stainless Steel)'}})
item.new({subtype='frame', brand='Converse', model='VCO0065Q', color='0539', color_description='Matte Taupe/Silver', size='55-17-145', material='Metal (Stainless Steel)', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Lightweight, Metal (Stainless Steel)', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal (Stainless Steel)'}})
item.new({subtype='frame', brand='Converse', model='VCO0071Q', color='09GU', color_description='Navy dark Blue/Silver ', size='52-17-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0075Q', color='0W74', color_description='Matte Navy/Red Twist and Turn Temples', size='54-15-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0124Q', color='0627', color_description='Dark Crystal Grey/Matte Gun/Red', size='50-20-145', material='Metal and Plastic', price_silver=50.00, price_gold=48.00, description_short='Unisex frame, Lightweight, Metal and Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic and Metal'}})
item.new({subtype='frame', brand='Converse', model='VCO0133Q', color='0568', color_description='Shiny Gun/Red Twist and Turn Temples ', size='55-17-145', material='Metal', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Metal', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal'}})
item.new({subtype='frame', brand='Converse', model='VCO0174Q', color='0892', color_description='Crystalline Grey', size='54-18-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0174Q', color='0703Y', color_description='Matte Black/Blue Temples', size='54-18-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0176Q', color='01AY', color_description='Brown', size='54-17-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0176Q', color='7NSM', color_description='Matte Navy Blue', size='54-17-145', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0184Q', color='0700', color_description='Black/Grey Twist and Turn Temples', size='53-16-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0184Q', color='0738', color_description='Frosted Demi/Twist and Turn Olive temples', size='53-16-140', material='Plastic', price_silver=50.00, price_gold=48.00, description_short='Mens frame, Plastic', categories={'Converse', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Gant', model='GW102', color='BLKTO', color_description='Black/Tortoise Temples', size='53-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA3030', color='BLK', color_description='Black/Demi and Gold Temples', size='54-16-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Gant', model='GA3054', color='009', color_description='Matte Gunmetal/Navy and Red Temples', size='53-17-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Unisex frame, Metal (Stainless Steel)', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Gant', model='GA3099', color='002', color_description='Matte Black', size='54-16-140', material='Plastic', price_silver=20.00, price_gold=18.00, description_short='Unisex frame, Plastic', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Gant', model='GA3116', color='052', color_description='Tortoise Shell/Silver', size='50-19-140', material='Acetate and Metal ', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate and Metal', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Gant', model='GA3163', color='002', color_description='Matte Black/Houndstooth print Temples', size='51-19-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Unisex frame, Metal (Stainless Steel)', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Gant', model='GA4055', color='002', color_description='Matte Black/Tortoise Shell Temples', size='51-16-135', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Metal (Stainless Steel)', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4055', color='049', color_description='Matte Copper/Tortoise Shell Temples', size='51-16-135', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Metal (Stainless Steel)', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4055', color='070', color_description='Matte Burgundy/MaroonTemples', size='51-16-135', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Metal (Stainless Steel)', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4056', color='001', color_description='Black/Tortoise Shell Temples', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4056', color='052', color_description='Tortoise Shell', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4058', color='001', color_description='Black', size='50-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4058', color='056', color_description='Demi Amber', size='50-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4058', color='092', color_description='Navy Blue/Crystal Blue', size='52-18-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4065', color='001', color_description='Black', size='49-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4065', color='045', color_description='Almond Milk with Brown Temples', size='52-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4065', color='052', color_description='Tortoise Shell', size='49-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4069', color='069', color_description='Burgundy and Honey', size='50-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Petite Fit, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GA4070', color='001', color_description='Black', size='53-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys frame, Acetate', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Ladys frames'}})
item.new({subtype='frame', brand='Gant', model='GR105', color='MBLKGN', color_description='Matte Black/Shiny Gun/Matte Tortoise Temples', size='47-21-145', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Unisex frame, Rugger, Metal ', categories={'Gant', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', Metal}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1482ST', color='BLKGRY', color_description='Matte Black-Grey with rhinestones', size='50-19-135', material='Metal', price_silver=17.00, price_gold=15.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU1482ST', color='BRNPK', color_description='Matte Brown-Pink with rhinestones', size='50-19-135', material='Metal', price_silver=17.00, price_gold=15.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU1562', color='BRNOL', color_description='Shiny Copper/Gold', size='50-17-135', material='Metal', price_silver=17.00, price_gold=15.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU1652', color='BLK', color_description='Shiny Black/ Grey', size='52-17-135', material='Metal', price_silver=17.00, price_gold=15.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU1736', color='BLK', color_description='Matte Black-Gold with caramel temples', size='53-18-140', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU1803', color='MGRN', color_description='Matte Camouflage', size='53-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1811', color='MBRN', color_description='Frosted Caramel', size='53-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1827', color='BLK', color_description='Black with Matte Black Reptile Temples', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1827', color='BL', color_description='Matte Blueish Grey with Matte Black Reptile Temples', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1844', color='BL', color_description='Frosted Light Blue with Grey Temples', size='53-18-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1846', color='LBRN', color_description='Tree Bark with Capuccino', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1866F', color='052', color_description='Havanna marble with Brown and orangeTemples', size='55-18-145', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1869', color='052', color_description='Frosted Tortoise Shell with Matte Brown Temples', size='53-17-145', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1872', color='002', color_description='Matte Black with Black and Red Temples', size='53-17-145', material='Plastic', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Plastic', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1876', color='049', color_description='Matte Brown with Matte Brown-Matte Gold temples ', size='53-17-140', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1879', color='049', color_description='Matte Copper with Matte Brown temples', size='56-17-140', material='Metal ', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', Metal }, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Guess', model='GU1886', color='052', color_description='Matte Copper and Tortoise w/matte copper temples ', size='53-16-140', material='Metal and plastic', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Metal and plastic', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', Metal and plastic}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1889', color='092', color_description='Matte Navy Blue with Blue and Red temples ', size='53-16-145', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Metal (Stainless Steel)', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1889', color='009', color_description='Matte Gunmetal with Taupe temples ', size='53-16-145', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Metal (Stainless Steel)', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU1912', color='009', color_description='Matte Gunmetal with Matte Black temples', size='55-15-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal (Stainless Steel)', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Guess', model='GU1913', color='033', color_description='Matte Brown/Matte Gold with Matte Brown Temples', size='51-20-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal (Stainless Steel)', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU1926', color='009', color_description='Matte Gunmetal with Matte Brown-Navy temples ', size='54-17-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal (Stainless Steel)', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Guess', model='GU1961', color='005', color_description='Matte Black with Black/Wine temples', size='52-18-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Metal (Stainless Steel)', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Guess', model='GU2274', color='AMB', color_description='Marbled Caramel/Lavender', size='52-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2287', color='BLK', color_description='Black/White with Silver and Lilac Temples w/ rhinestones', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2288', color='BRN', color_description='Dark Honey with Matte Copper Temples w/ rhinestones', size='51-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2288', color='WHT', color_description='Crystal with White and Silver Temples w/ rhinestones', size='51-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2333', color='DKPUR', color_description='Gradient Purple with Reptile print Temples', size='52-18-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2347', color='BLK', color_description='Matte Black with Rhinestones', size='51-16-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2351', color='AMB', color_description='Marbled Caramel/Lavender & Matte Gold', size='53-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2373', color='BLK', color_description='Black and Crystal w/silver chain insert on temples', size='51-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2381', color='TO', color_description='Tortoise Shell with Matte Gold and Copper Braid on temple', size='52-16-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2383', color='PUR', color_description='Gradient Mauve and Light Honey', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GUA2385', color='PUR', color_description='Gradient Mauve and Light Honey', size='52-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2387', color='O64', color_description='Dark Purple w/rhinestones on Temples', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2387', color='O64', color_description='Dark Purple w/rhinestones on Temples', size='51-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2388', color='BRN', color_description='Matte Brown with Rhinestones on Temples', size='52-18-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2414', color='BLK', color_description='Black/Aqua w/rhinestones on Temples', size='50-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2414', color='TO', color_description='Dark Tortoise/Bone w/rhinestones on Temples', size='50-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2414', color='BE', color_description='Light Beige/Dark Brown w/rhinestones on Temples', size='50-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2415', color='BL', color_description='Pearly Light Blue w/rhinestones on Temples', size='51-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2417', color='081', color_description='Dark Violet', size='49-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2417', color='096', color_description='Dark Forest Green', size='52-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2463', color='BLPUR', color_description='Transparent Blueish Purple', size='55-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2464', color='Burd', color_description='Dark Burgundy/Red', size='54-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2466', color='BLGRN', color_description='Frosted Blueish Green', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2466', color='PRBL', color_description='Frosted Purple-Blue', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2466', color='BLK', color_description='Black with Wine temples', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2492', color='052', color_description='Havanna Brown wth gold chain detail', size='52-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2494', color='001', color_description='Black and Crystal', size='53-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2494', color='056', color_description='Tortoise & Olive Green', size='53-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2506', color='005', color_description='Black with animal print/black temples', size='52-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2513', color='047', color_description='Transparent Honey with animal print/brown temples', size='53-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2514', color='BLK', color_description='Black', size='50-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2514', color='049', color_description='Matte Brown', size='50-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2514', color='082', color_description='Matte Violet', size='50-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2516', color='001', color_description='Satin Black and Silver temples w/Black tips', size='53-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2516', color='048', color_description='Matte Brown and Gold temples w/Tortoise Shell tips', size='53-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2516', color='048', color_description='Matte Brown and Gold temples w/Tortoise Shell tips', size='53-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2517', color='081', color_description='Crystalline Violet', size='50-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2521', color='049', color_description='Matte Brown and Tortoise Shell temples', size='53-16-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2523', color='048', color_description='Caramel/Gold', size='52-16-135', material='Metal and Plastic', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal and Plastic', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal and Plastic'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2553', color='005', color_description='Black-Blue with sparkles', size='53-16-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2554', color='050', color_description='Brown with Strass', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2561F', color='045', color_description='Crystalline Brown', size='53-15-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2566', color='005', color_description='Black-Matte Gold', size='53-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2568', color='002', color_description='Matte Black with Rhinestones', size='52-17-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2582', color='052', color_description='Tortoise Shell/Light Purple', size='51-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2589', color='092', color_description='Blue and Crystal w/silver side detail', size='54-17-140', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2596', color='003', color_description='Black and Crystal', size='49-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2604', color='001', color_description='Black-Tortoise-Matte Gold', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2604', color='050', color_description='Brown-Tortoise-Orange-Matte Copper Temples', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2604', color='068', color_description='Lipstick Red with Matte Copper Temples', size='52-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2606', color='066', color_description='Strawberry Red', size='52-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2527', color='049', color_description='Matte Copper/Matte Gold and Teal tips', size='51-16-135', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2635', color='001', color_description='Tortoise Shell-Matte Gold/Gold', size='54-14-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2635', color='050', color_description='Brown-Tortoise-Orange-Matte Copper', size='54-14-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU2635', color='083', color_description='Purple with Matte Silver Temples', size='54-14-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU3025', color='052', color_description='Matte Demi/Shiny Copper', size='51-21-135', material='Acetate and Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate and Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU3025', color='073', color_description='Bubblegum Matte Pink/Shiny Gold', size='51-21-135', material='Acetate and Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate and Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU3025', color='088', color_description='Matte Teal/Shiny Green', size='51-21-135', material='Acetate and Metal', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate and Metal', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Acetate and Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Guess', model='GU9145', color='091', color_description='Matte Navy/Neon Yellow', size='48-16-130', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Unisex optical frame, Acetate', categories={'Guess', 'Collections Catalog', 'Designer Brands', 'Teens', 'Children', 'Optical Frames', 'Acetate'}, tags={'Teens', 'Children', 'Unisex frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD105', color='BLKBL', color_description='Black and Crystal Blue', size='49-17-130', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD105', color='BLKGRN', color_description='Black and Crystal Green', size='49-17-130', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD123T', color='005', color_description='Matte Black Matte Gun and Navy Temples', size='47-17-130', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD123T', color='009', color_description='Matte Gun Matte Gun and Navy Temples', size='47-17-130', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD129T', color='001', color_description='Black', size='47-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD403', color='AGUN', color_description='Brushed Gunmetal', size='59-17-145', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD428', color='BLK', color_description='Black', size='54-17-145', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD478', color='BLK', color_description='Matte Black', size='52-18-145', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD0511', color='DBRN', color_description='Brown/Copper', size='53-15-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', Acetate}, tags={'Adult', 'Ladys frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD0531', color='001', color_description='Black/Silver with strass', size='53-16-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Lady optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD0532', color='002', color_description='Black/Animal Print w/strass', size='52-16-135', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Ladys optical frame, Metal', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal'}, tags={'Adult', 'Ladys frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD0539', color='001', color_description='Black/Granite w/strass', size='54-17-135', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Ladys optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', Acetate}, tags={'Adult', 'Ladys frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD0721', color='BRN', color_description='Matte Brown', size='53-18-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal (Stainless Steel)', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Harley Davidson', model='HD0781', color='091', color_description='Matte Black', size='57-17-150', material='Acetate', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Acetate', categories={'Harley Davidson', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0084', color='6EC', color_description='Black ', size='52-16-140', material='Acetate', price_silver=37.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0209', color='KOL', color_description='Matte Matte Navy ', size='54-18-140', material='Metal Stainless Steel', price_silver=37.00, price_gold=35.00, description_short='Mens optical frame, Metal (Stainless Steel)', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0230', color='LHI', color_description='Brown/Orange ', size='57-17-140', material='Acetate', price_silver=37.00, price_gold=35.00, description_short='Unisex optical frame, Acetate', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0233', color='LH2', color_description='Matte Copper Brown/Pink ', size='54-16-140', material='Metal', price_silver=37.00, price_gold=35.00, description_short='Ladys optical frame, Metal', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Ladys frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0235', color='LEI', color_description='Frosted Blue ', size='53-17-140', material='Acetate', price_silver=37.00, price_gold=35.00, description_short='Unisex optical frame, Acetate', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0257', color='5FC', color_description='Marble Brown ', size='53-16-140', material='Acetate', price_silver=37.00, price_gold=35.00, description_short='Unisex optical frame, Acetate', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0262/F', color='TAY', color_description='Matte Black ', size='54-16-140', material='Acetate', price_silver=37.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Hugo Boss', model='BO0318', color='RCT', color_description='Frosted Blue ', size='52-17-140', material='Acetate', price_silver=37.00, price_gold=35.00, description_short='Unisex optical frame, Acetate', categories={'Hugo Boss', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC746', color='005', color_description='Dark Brown Reptile', size='53-15-135', material='Acetate', price_silver=12.00, price_gold=10.00, description_short='Lady optical frame, Acetate', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC746', color='050', color_description='Honey Brown Reptile', size='53-15-135', material='Acetate', price_silver=12.00, price_gold=10.00, description_short='Lady optical frame, Acetate', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC778', color='092', color_description='Matte Navy Blue', size='55-17-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC779', color='009', color_description='Matte Brown', size='54-16-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC780', color='002', color_description='Matte Black/Frosted Crystal', size='50-17-140', material='Plastic', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Plastic', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC782', color='002', color_description='Matte Gunmetal', size='53-18-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC782', color='049', color_description='Matte Copper Brown', size='53-18-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole Reaction', model='KC783', color='049', color_description='Matte Copper Brown', size='52-17-140', material='Metal (Stainless Steel)', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Kenneth Cole Reaction', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC203', color='002', color_description='Matte Gun/Granite Temples', size='53-17-135', material='Metal', price_silver=22.00, price_gold=20.00, description_short='Lady optical frame, Metal', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC254', color='001', color_description='Black', size='51-18-140', material='Plastic', price_silver=22.00, price_gold=20.00, description_short='Mens optical frame, plastic', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC258', color='001', color_description='Black/Matte Gold Temples', size='54-15-135', material='Plastic', price_silver=22.00, price_gold=20.00, description_short='Unisex optical frame, Plastic', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC258', color='052', color_description='Demi/Matte Gold Temples', size='54-15-135', material='Plastic', price_silver=22.00, price_gold=20.00, description_short='Unisex optical frame, Plastic', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC259', color='001', color_description='Satin Black/Demi Temples', size='54-16-135', material='Metal (Stainless Steel)', price_silver=22.00, price_gold=20.00, description_short='Unisex optical frame, Metal (Stainless Steel)', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC259', color='045', color_description='Matte Copper/Matte Demi Temples', size='54-16-135', material='Metal (Stainless Steel)', price_silver=22.00, price_gold=20.00, description_short='Unisex optical frame, Metal (Stainless Steel)', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC266', color='091', color_description='Matte Navy/Gun', size='52-18-145', material='Plastic and Metal', price_silver=22.00, price_gold=20.00, description_short='Unisex optical frame, Plastic and Metal', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic and Metal'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Kenneth Cole New York', model='KC271', color='002', color_description='Matte Black', size='54-18-145', material='Plastic', price_silver=22.00, price_gold=20.00, description_short='Mens optical frame, plastic', categories={'Kenneth Cole New York', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2223', color='001', color_description='Matte Black/Green', size='56-17-145', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2233', color='424', color_description='Matte Navy/Neon Green', size='53-17-145', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2233', color='210', color_description='Matte Brown', size='53-17-145', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2239', color='424', color_description='Matte Black/Neon Yellow', size='56-17-140', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2239', color='002', color_description='Matte Black/Blue', size='56-17-140', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2242', color='002', color_description='Matte Black', size='54-16-1xx', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2242', color='424', color_description='Matte Blue', size='54-16-1xx', material='Metal', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Metal', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2660', color='215', color_description='Blue/Black Marble', size='53-15-140', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Unisex optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2660', color='001', color_description='Black', size='53-15-140', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Unisex optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2672', color='214', color_description='Tortoise/Olive Green', size='52-17-140', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2685', color='210', color_description='Striped Brown Grey', size='53-16-140', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Unisex optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2738', color='615', color_description='Burgundy/Red', size='53-15-135', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Lady optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2769', color='001', color_description='Black Butterscotch', size='52-15-140', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Unisex optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2771', color='424', color_description='Blue/Black-Yellow stripe', size='53-18-145', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2774', color='035', color_description='Grey and Black', size='54-15-140', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Lady optical frame, Plastic', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2774', color='467', color_description='Azure Aqua', size='54-15-140', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Lady optical frame, Plastic', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2783', color='210', color_description='Frosted Brown', size='53-16-135', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2794', color='604', color_description='Matte Brown', size='52-17-140', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Acetate', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Lacoste', model='L2818', color='424', color_description='Crystalline Blue', size='53-15-145', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Lacoste', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='37KD', color='001', color_description='Matte Black', size='52-20-135', material='Acetate', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Acetate', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', Acetate}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='4278', color='005', color_description='Matte Black', size='54-16-140', material='Flexon Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='4281', color='001', color_description='Matte Black-Neon Yellow', size='52-16-140', material='Flexon Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='7070/2', color='035', color_description='Matte Black', size='57-15-135', material='Stealth Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='7078', color='401', color_description='Matte Teal', size='57-15-140', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='7097', color='215', color_description='Matte Tortoise', size='54-17-140', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='7102', color='002', color_description='Matte Black', size='55-15-140', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='7104', color='001', color_description='Matte Black', size='54-17-140', material='Plastic', price_silver=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Nike', model='FLEET', color='001', color_description='Matte Black', size='55-16-140', material='TR90', price_gold=35.00, price_gold=32.00, description_short='Mens optical frame, Plastic', categories={'Nike', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'TR90', 'Plastic'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PE0010O', color='005', color_description='Matte Black', size='53-15-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PE0020O', color='004', color_description='Crystalline Dark Smoke', size='53-18-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0031OA', color='005', color_description='Matte Burgundy', size='53-18-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0034O', color='004', color_description='Black/Yellow ', size='52-18-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0034O', color='002', color_description='Matte Dark Brown/Grey', size='52-18-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0034O', color='005', color_description='Crystalline Red/Grey-orange', size='52-18-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0035OA', color='001', color_description='Matte Black/Frosted Crystal ', size='53-17-145', material='Plastic', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Plastic', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0035OA', color='004', color_description='Matte Black/Frosted Orange ', size='53-18-145', material='Plastic', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Plastic', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0035OA', color='001', color_description='Black/Frosted Crystal', size='53-17-145', material='Acetate ', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0044OA', color='003', color_description='Tortoise/Red Suede', size='56-16-140', material='Acetate and Rubber', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0047O', color='003', color_description='Tortoise Shell ', size='53-19-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0047OA', color='009', color_description='Dark Tortoise ', size='57-17-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0047OA', color='011', color_description='Crystalline Blue ', size='57-17-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0048O', color='003', color_description='Tortoise Shell ', size='55-17-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0051OA', color='005', color_description='Crystalline Blue ', size='54-18-140', material='Plastic', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Plastic', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0051O', color='003', color_description='Crystalline Grey/Neon Yellow ', size='54-18-140', material='Plastic', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Plastic', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0051OA', color='001', color_description='Black ', size='56-15-140', material='Plastic', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Plastic', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0053OA', color='005', color_description='Matte Brown/Orange ', size='55-16-145', material='Plastic', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Plastic', categories={'Puma', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0066O', color='001', color_description='Matte Silver/Orange/White ', size='54-16-140', material='Metal', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Metal', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0067O', color='001', color_description='Black/Tortoise Shell ', size='53-18-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0067O', color='003', color_description='Crystalline Blue/Black ', size='53-18-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0067O', color='004', color_description='Tortoise/Orange ', size='53-18-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0068O', color='005', color_description='Crystalline Blue/Black ', size='52-17-140', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0075OA', color='003', color_description='Dark Grey/Crystalline Yellow ', size='56-16-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Puma', model='PU0075OA', color='001', color_description='Dark Navy Blue ', size='56-16-145', material='Acetate', price_silver=40.00, price_gold=35.00, description_short='Mens optical frame, Acetate', categories={'Puma', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5228', color='2000', color_description='Black', size='50-17-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5228', color='2012', color_description='Tortoise Shell', size='50-17-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5248', color='2000', color_description='Black', size='51-19-145', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5248', color='2012', color_description='Tortoise Shell', size='51-19-145', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5298', color='2012', color_description='Tortoise Shell', size='53-17-135', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5316', color='2012', color_description='Tortoise Shell', size='53-16-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5316', color='2034', color_description='Tortoise Shell', size='53-16-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Unisex frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB5360', color='5713', color_description='Tortoise Shell w/Matte Gold metal temples| Size: 52-18-145', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Ladies optical frame, Acetate', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB6263', color='2509', color_description='Matte Black', size='54-17-145', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Mens optical frame, Metal', categories={RayBan, 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB6336M', color='2503', color_description='Matte Black', size='53-16-140', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Mens optical frame, Metal', categories={RayBan, 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB6336M', color='2758', color_description='Matte Brown', size='53-16-140', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Mens optical frame, Metal', categories={RayBan, 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB6336', color='2857', color_description='Matte Silver/Mauve', size='51-18-140', material='Metal and Plastic', price_silver=45.00, price_gold=42.00, description_short='Unisex optical frame, Metal and Plastic', categories={RayBan, 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal and Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Ray Ban', model='RB8750', color='1195', color_description='Matte Silver/ Mauve plastic temples| Size: 54-17-140', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Ladies optical frame, Metal', categories={RayBan, 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2148', color='451', color_description='Teal and Shiny Gold', size='52-17-140', material='Metal', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Metal', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2674A', color='214', color_description='Demi Amber', size='54-15-135', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2676', color='315', color_description='Crystalline Olive Green', size='55-17-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Mens optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2677A', color='001', color_description='Black ', size='55-17-145', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Mens optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2749', color='741', color_description='Caramel and Bone', size='53-16-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2750', color='649', color_description='Burgundy and Demi', size='54-17-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2765', color='214', color_description='Tortoise Shell and Gold details', size='53-16-135', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2778', color='210', color_description='Caramel and Animal-Floral print', size='53-17-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2780', color='214', color_description='Tortoise Shell and Gold details', size='54-18-145', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Unisex optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2781', color='052', color_description='Olive Marble and Silver details', size='55-17-145', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Unisex optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2789', color='001', color_description='Black', size='52-15-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2789', color='996', color_description='Multicolor Crystal', size='52-15-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Lady optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Salvatore Ferragamo', model='SF2790', color='214', color_description='Tortoise Shell and Gold details', size='54-16-140', material='Acetate', price_silver=55.00, price_gold=50.00, description_short='Unisex optical frame, Acetate', categories={'Salvatore Ferragamo', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Timberland', model='TB513', color='002', color_description='Matte Gunmetal', size='52-16-140', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1276-1', color='002', color_description='Matte Black', size='55-18-140', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Timberland', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1308', color='090', color_description='Matte Navy', size='54-17-145', material='Plastic', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Plastic', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1347', color='049', color_description='Matte Brown/Orange ', size='55-17-140', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Timberland', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1350', color='009', color_description='Matte Gun/Olive ', size='54-17-145', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1350', color='037', color_description='Matte Brown', size='54-17-145', material='Metal', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Metal', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teens', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1351', color='091', color_description='Matte Navy/Matte Silver ', size='56-17-145', material='TR90', price_gold=20.00, price_gold=18.00, description_short='Mens optical frame, TR90', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'TR90'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1353', color='005', color_description='Matte Black', size='51-20-140', material='TR90', price_gold=20.00, price_gold=18.00, description_short='Mens optical frame, TR90', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'TR90'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1580', color='092', color_description='Matte Blue/Tortoise ', size='54-17-145', material='Plastic', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Plastic', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1619', color='090', color_description='Navy Blue/Matte Silver ', size='54-17-145', material='Plastic', price_silver=20.00, price_gold=18.00, description_short='Mens optical frame, Plastic', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Tom Ford', model='TF5392', color='050', color_description='Taupe and Matte Gold ', size='54-18-135', material='Metal and plastic', price_silver=80.00, price_gold=75.00, description_short='Lady optical frame, Metal and Plastic', categories={'Tom Ford', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal and Plastic'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Tom Ford', model='TF5392', color='020', color_description='Grey and Matte Gold ', size='54-18-135', material='Metal and plastic', price_silver=80.00, price_gold=75.00, description_short='Lady optical frame, Metal and Plastic', categories={'Tom Ford', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Metal and Plastic'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Tom Ford', model='TF5142', color='059', color_description='Grey and Gold detail ', size='54-15-135', material='Acetate', price_silver=80.00, price_gold=75.00, description_short='Lady optical frame, Acetate', categories={'Tom Ford', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Tom Ford', model='TF5431', color='001', color_description='Black and Gold detail ', size='53-16-145', material='Acetate', price_silver=80.00, price_gold=75.00, description_short='Lady optical frame, Acetate', categories={'Tom Ford', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1026', color='UNV', color_description='Dark Chocolate', size='50-18-135', material='Metal (Stainless Steel)', price_silver=40.00, price_gold=38.00, description_short='Unisex Optical frames, Metal', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1163', color='V60', color_description='Dark Chocolate/Burgundy', size='56-14-140', material='Metal (Stainless Steel)', price_silver=40.00, price_gold=38.00, description_short='Mens Optical frames, Metal (Stainless Steel)', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1195', color='MPZ', color_description='Black', size='54-17-145', material='Metal (Stainless Steel)', price_silver=40.00, price_gold=38.00, description_short='Mens Optical frames, Metal (Stainless Steel)', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1284', color='FO5', color_description='Matte Gunmetal', size='53-17-140', material='Metal (Stainless Steel)', price_silver=40.00, price_gold=38.00, description_short='Mens Optical frames, Metal (Stainless Steel)', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1326', color='03V', color_description='Chocolate/Orange', size='52-17-140', material='Metal (Stainless Steel)', price_silver=40.00, price_gold=38.00, description_short='Mens Optical frames, Metal (Stainless Steel)', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1353', color='K0C', color_description='Matte Black/Frosted Granite', size='51-17-145', material='Acetate', price_silver=40.00, price_gold=38.00, description_short='Mens optical frame, Acetate', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1353', color='K03', color_description='Matte Demi Brown', size='51-17-145', material='Acetate', price_silver=40.00, price_gold=38.00, description_short='Mens optical frame, Acetate', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1357', color='K2F', color_description='Black', size='53-17-145', material='Metal ', price_silver=40.00, price_gold=38.00, description_short='Mens Optical frames, Metal', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1406', color='T99', color_description='Matte Demi Brown-Blue', size='54-17-145', material='Acetate', price_silver=40.00, price_gold=38.00, description_short='Mens optical frame, Acetate', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1436', color='U7M', color_description='Black/Matte Silver', size='53-17-145', material='Acetate', price_silver=40.00, price_gold=38.00, description_short='Mens optical frame, Acetate', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1477', color='N9P', color_description='Matte Demi Brown', size='50-21-145', material='Acetate', price_silver=40.00, price_gold=38.00, description_short='Mens optical frame, Acetate', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tommy Hilfiger', model='TH1489', color='KJ1', color_description='Light Shiny Gunmetal', size='55-19-143', material='Metal (Stainless Steel)', price_silver=40.00, price_gold=38.00, description_short='Mens Optical frames, Metal (Stainless Steel)', categories={'Tommy Hilfiger', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal (Stainless Steel)'}, tags={'Adult', 'Teens', 'Mens frames'}})
item.new({subtype='frame', brand='Tory Burch', model='TY2055', color='1475', color_description='Grey Marble ', size='53-16-135', material='Acetate', price_silver=60.00, price_gold=55.00, description_short='Lady optical frame, Acetate', categories={'Tory Burch', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTK006', color='0F98', color_description='Lavender/Silver ', size='49-16-125', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Teen optical frame, Metal', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Teens', 'Optical Frames', 'Metal'}, tags={'Teen frames'}})
item.new({subtype='frame', brand='Tous', model='VTO318S', color='08R9', color_description='Copper/Demi Temples w/pearl detail ', size='54-17-135', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Metal', categories={'Tous', 'Collections Catalog', 'Designer Brands' , 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO347', color='08M6', color_description='Violet-Gold/Taupe Temples', size='53-15-135', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Metal', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO348', color='01HD', color_description='Violet-Silver/Lavender w/Tous logo print Temples', size='54-17-135', material='Metal', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Metal (Stainless Steel)', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Metal'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO821', color='0B87', color_description='Lavender/Gradient Temples', size='53-15-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO878', color='0D27', color_description='Powder Blue/Rubber Temples', size='53-15-135', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO878', color='0M79', color_description='Beige/Rubber Temples', size='53-15-135', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO881', color='0XAB', color_description='Mauve/Silver', size='51-18-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO930', color='0700', color_description='Black/Grey Tous logo print Temples', size='52-16-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO930', color='06PB', color_description='Caramel/Brown & Beige Tous logo print Temples', size='52-16-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Tous', model='VTO933', color='07TB', color_description='Marble Brown/Coral and Brown Temples-Gold', size='53-16-140', material='Acetate', price_silver=45.00, price_gold=42.00, description_short='Lady optical frame, Acetate', categories={'Tous', 'Collections Catalog', 'Designer Brands', 'Adult', 'Teen', 'Optical Frames', 'Acetate'}, tags={'Adult', 'Teens', 'Lady frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0058Q', color='0741', size='53- - ', material='plastic', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0059Q', color='0703', size='53- - ', material='plastic', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0059Q', color='09GU', size='53- - ', material='plastic', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0063Q', color='06RV', size='51- - ', material='plastic', price_silver=50, price_gold=48, categories={'Unisex frame', 'Plastic Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0069Q', color='0978', size='51- - ', material='metal', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0075Q', color='0703', size='54- - ', material='plastic', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0124Q', color='0627H', size='50- - ', material='metal', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0131Q', color='0722Y', size='54- - ', material='plastic', price_silver=50, price_gold=48, categories={'Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames'}})
item.new({subtype='frame', brand='Converse', model='VCO0133Q', color='0627', size='55- - ', material='metal', price_silver=50, price_gold=48, categories={'Mens frame', 'Metal Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames', 'Metal'}})
item.new({subtype='frame', brand='Converse', model='VCO0174Q', color='0W47Y', size='54- - ', material='plastic', price_silver=50, price_gold=48, categories={'Mens frame', 'Plastic Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0176Q', color='0700', size='54- - ', material='plastic', price_silver=50, price_gold=48, categories={'Mens frame', 'Plastic Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Converse', model='VCO0184Q', color='7NSM', size='53- - ', material='plastic', price_silver=50, price_gold=48, categories={'Mens frame', 'Plastic Converse', 'Collections Catalog', 'Designer Brands'}, tags={'Adult', 'Optical Frames', 'Plastic'}})
item.new({subtype='frame', brand='Kapricci', model='K9991', color='C27', size='52-16-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9991', color='C96', size='52-16-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9991', color='C99', size='52-16-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9992', color='C27', size='55-17-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9992', color='C98', size='55-17-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9992', color='C99', size='55-17-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9993', color='C27', size='51-18-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9993', color='C96', size='51-18-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9993', color='C99', size='51-18-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9994', color='C26', size='52-17-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9994', color='C76', size='52-17-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9994', color='C95', size='52-17-135', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9995', color='C26', size='54-16-142', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9995', color='C30', size='54-16-142', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Kapricci', model='K9995', color='C66', size='54-16-142', material='metal', price_silver=10, price_gold=8, description_short='Metal Unisex frame', categories={'Kapricci', 'Exclusive Labels', 'Adult', 'Optical Frames', 'Metal'}, tags={'Adult', 'Unisex frames'}})
item.new({subtype='frame', brand='Timberland', model='TB1540', color='048', price_silver=20, price_gold=18, description_short='Mens optical frame, Plastic', categories={'Timberland', 'Collections Catalog', 'Designer Brands', 'Adult', 'Optical Frames', 'Plastic'}, tags={'Adult', 'Mens frames'}})
item.new({subtype='frame', brand='Guess', model='GU2467', color='BRN', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU2506', color='066', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU2515', color='049', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU2378', color='BLK', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU2378', color='BRN', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU1940', color='005', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU1948', color='020', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU1857', color='009', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU1677', color='GUN', price_silver=17, price_gold=15})
item.new({subtype='frame', brand='Guess', model='GU1799', color='GUN', price_silver=20, price_gold=18})
item.new({subtype='frame', brand='Guess', model='GU1617', color='GUN', price_silver=17, price_gold=15})
-- Set names for all the items thus far:
local item_records = db:findByStructure({subtype='frame'})
for _,item_record in ipairs(item_records) do
item_record.name = item_record.brand..' '..item_record.model..' ('..item_record.color..')'
item_record:save()
end
-- Lenses
--[=[
local single_vision_options, multifocal_options, base_options = {}, {}, {}
single_vision_options.sph = { '0.00',
'+0.25',
'+0.50',
'+0.75',
'+1.00',
'+1.25',
'+1.50',
'+1.75',
'+2.00',
'+2.25',
'+2.50',
'+2.75',
'+3.00',
'+3.25',
'+3.50',
'+3.75',
'+4.00',
'+4.25',
'+4.50',
'+4.75',
'+5.00',
'+5.25',
'+5.50',
'+5.75',
'+6.00',
'+6.25',
'+6.50',
'+6.75',
'+7.00',
'-0.25',
'-0.50',
'-0.75',
'-1.00',
'-1.25',
'-1.50',
'-1.75',
'-2.00',
'-2.25',
'-2.50',
'-2.75',
'-3.00',
'-3.25',
'-3.50',
'-3.75',
'-4.00',
'-4.25',
'-4.50',
'-4.75',
'-5.00',
'-5.25',
'-5.50',
'-5.75',
'-6.00',
'-6.25',
'-6.50',
'-6.75',
'-7.00'}
single_vision_options.cyl = { '0.00',
'0.25',
'0.50',
'0.75',
'1.00',
'1.25',
'1.50',
'1.75',
'2.00',
'2.25',
'2.50',
'2.75',
'3.00'}
single_vision_options.material = {'cr39', 'polycarbonate', 'blue-bocker', 'glass'}
single_vision_options.ar = {true, false}
single_vision_options.photochromatic = {'none', 'photogray', 'photobrown'}
for _,sph in ipairs(single_vision_options.sph) do
for _,cyl in ipairs(single_vision_options.cyl) do
for _,material in ipairs(single_vision_options.material) do
for _,ar in ipairs(single_vision_options.ar) do
for _,photochromatic in ipairs(single_vision_options.photochromatic) do
--[[ cr39 0.90
photochromatic $6
high-sph(4.25) +$1, high-cyl +$1
blue-bocker +$1.50
]]
item.new({subtype='single-vision-lens', sph=sph, cyl=cyl, material=material, ar=ar, photochromatic=photochromatic, price_silver=0, price_gold=0})
end
end
end
end
end
multifocal_options.strength1 = {'0.00',
'0.25',
'0.50',
'0.75',
'1.00',
'1.25',
'1.50',
'1.75',
'2.00',
'2.25',
'2.50',
'2.75',
'3.00'}
multifocal_options.strength2 = {'1.00',
'1.25',
'1.50',
'1.75',
'2.00',
'2.25',
'2.50',
'2.75',
'3.00'}
multifocal_options.material = {'cr39', 'polycarbonate', 'blue-bocker', 'glass'}
multifocal_options['type'] = {'progressive', 'ft28', 'blended'}
multifocal_options.ar = {true, false}
multifocal_options.photochromatic = {'none', 'photogray', 'photobrown'}
for _,strength1 in ipairs(multifocal_options.strength1) do
for _,strength2 in ipairs(multifocal_options.strength2) do
for _,material in ipairs(multifocal_options.material) do
for _,ar in ipairs(multifocal_options.ar) do
for _,photochromatic in ipairs(multifocal_options.photochromatic) do
for _,_type in ipairs(multifocal_options['type']) do
--[[ Bifocal
AR +$1
Flat-top $2.40
Photogray $9
Invisible $1.90
Photogray ?
]]
--[[ Progressive
]]
item.new({subtype='multifocal-lens', strength1=strength1, strength2=strength2, material=material, ar=ar, photochromatic=photochromatic, ['type']=_type, price_silver=0, price_gold=0})
end
end
end
end
end
end
base_options.base = {'2', '4', '6', '8'}
base_options.add = {'1.00',
'1.25',
'1.50',
'1.75',
'2.00',
'2.25',
'2.50',
'2.75',
'3.00'}
base_options.material = {'cr39', 'ft', 'kriptok', 'progressive'}
base_options.ar = {true, false}
base_options.photochromatic = {'none', 'photogray', 'photobrown'}
for _,base in ipairs(base_options.base) do
for _,add in ipairs(base_options.add) do
for _,material in ipairs(base_options.material) do
for _,ar in ipairs(base_options.ar) do
for _,photochromatic in ipairs(base_options.photochromatic) do
item.new({subtype='base-lens', base=base, add=add, material=material, ar=ar, photochromatic=photochromatic, price_silver=0, price_gold=0})
end
end
end
end
end
]=]
-- Equipment
item.new({subtype='equipment', name='Ophthalmic Unit', brand='Dongwoo', model='TW-1521TW', price_silver=0, price_gold=0, description_short='Ophthalmic Unit'})
item.new({subtype='equipment', name='Autorefractometer', brand='Dongwoo', model='TW-9200K', price_silver=0, price_gold=0, description_short='Autorefractometer with Keratometer'})
item.new({subtype='equipment', name='Color Lensometer', brand='Dongwoo', model='TW-8090', price_silver=0, price_gold=0, description_short='Color Lensometer'})
item.new({subtype='equipment', name='Phoropter', brand='Dongwoo', model='TW-1450A', price_silver=0, price_gold=0, description_short='Phoropter'})
item.new({subtype='equipment', name='PD Meter', brand='Dongwoo', model='TW-2210', price_silver=0, price_gold=0, description_short='PD Meter'})
item.new({subtype='equipment', name='PD Meter', brand='Dongwoo', model='TW-2213', price_silver=0, price_gold=0, description_short='PD Meter'})
item.new({subtype='equipment', name='Slit Lamp', brand='Dongwoo', model='YZ5F1', price_silver=0, price_gold=0, description_short='Slit Lamp'})
item.new({subtype='equipment', name='Trial Lens Set (104 pcs.)', brand='', model='', price_silver=0, price_gold=0, description_short='Trial Lens Set (104 pcs.)'})
item.new({subtype='equipment', name='Trial Lens Set (158 pcs.)', brand='', model='', price_silver=0, price_gold=0, description_short='Trial Lens Set (158 pcs.)'})
item.new({subtype='equipment', name='Trial Lens Set (232 pcs.)', brand='', model='', price_silver=0, price_gold=0, description_short='Trial Lens Set (232 pcs.)'})
item.new({subtype='equipment', name='Trial Lens Set (266 pcs.)', brand='', model='', price_silver=0, price_gold=0, description_short='Trial Lens Set (266 pcs.)'})
-- still need info for:
--item.new({subtype='equipment', name='Chart Projector', brand='Dongwoo', model='', price_silver=0, price_gold=0, description_short='Chart Projector'})
--item.new({subtype='equipment', name='Ophthalmoscope', brand='Dongwoo', model='', price_silver=0, price_gold=0, description_short='Ophthalmoscope'})
--item.new({subtype='equipment', name='Pachymeter', brand='Dongwoo', model='', price_silver=0, price_gold=0, description_short='Pachimeter'})
--item.new({subtype='equipment', name='Prism Bar', brand='Dongwoo', model='', price_silver=0, price_gold=0, description_short='Prism Bar'})
--item.new({subtype='equipment', name='Retinoscope', brand='Dongwoo', model='', price_silver=0, price_gold=0, description_short='Retinoscope'})
-- Accessories
-- still need info for:
--item.new({subtype='accessory', name='Case', brand='', model='', price_silver=0, price_gold=0, description_short=''})
--item.new({subtype='accessory', name='Cord', brand='', model='', price_silver=0, price_gold=0, description_short=''})
--item.new({subtype='accessory', name='Lens Cleaner Cloth', brand='', model='', price_silver=0, price_gold=0, description_short='Microfiber Cloth Lens Cleaner'})
--item.new({subtype='accessory', name='Lens Cleaner Bottle', brand='', model='', price_silver=0, price_gold=0, description_short=''})
--item.new({subtype='accessory', name='Nosepads', brand='', model='', price_silver=0, price_gold=0, description_short=''})
--item.new({subtype='accessory', name='Screws', brand='', model='', price_silver=0, price_gold=0, description_short=''})