0% found this document useful (0 votes)
4 views71 pages

SQL Cursor and Database Setup Guide

The document outlines a SQL script authored by Sameer Sunil Kadi for IFT 530, which includes the creation of a database named 'MyGuitarShop' and various tables such as Addresses, Administrators, Categories, Customers, OrderItems, Orders, and Products. It also includes instructions for declaring and using a cursor to fetch data from a SELECT statement and modifying it to print results in a specific format. The script is intended for use with Microsoft SQL Server 2012.

Uploaded by

lxsaiyanxl24
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views71 pages

SQL Cursor and Database Setup Guide

The document outlines a SQL script authored by Sameer Sunil Kadi for IFT 530, which includes the creation of a database named 'MyGuitarShop' and various tables such as Addresses, Administrators, Categories, Customers, OrderItems, Orders, and Products. It also includes instructions for declaring and using a cursor to fetch data from a SELECT statement and modifying it to print results in a specific format. The script is intended for use with Microsoft SQL Server 2012.

Uploaded by

lxsaiyanxl24
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Cursor

Sameer Sunil Kadi

IFT 530

Questions:
1)Write a script to declare and use a cursor for the following SELECT statement. Use a WHILE loop to

fetch each row in the result set. Omit the INTO clause to fetch directly to the Results tab. (8 points)

SELECT LastName, AVG(ShipAmount) AS ShipAmountAvg

FROM Customers JOIN Orders

ON [Link] = [Link]

GROUP BY LastName;

2)Modify the solution of the previous problem #1 to fetch each row into a set of local variables. Use
the

PRINT statement to return each row in the format “Name, $0.00” to the Messages tab.

Code:
/*
**Author: Sameer Sunil Kadi
**Course: IFT 530
**Microsoft SQL Server 2012 (SP1) - 11.0.3000.0
** History
**Date Created Comments
** 10/23/24 Cursor
*/
SELECT GETDATE();
SELECT @@VERSION;
USE master;
GO

IF DB_ID('MyGuitarShop') IS NOT NULL


BEGIN
DROP DATABASE MyGuitarShop;
END
GO

CREATE DATABASE MyGuitarShop;


GO

USE [MyGuitarShop]
GO
/****** Object: Table [dbo].[Addresses] Script Date: 3/5/2020 4:09:43 PM
******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Addresses](
[AddressID] [int] IDENTITY(1,1) NOT NULL,
[CustomerID] [int] NULL,
[Line1] [varchar](60) NOT NULL,
[Line2] [varchar](60) NULL,
[City] [varchar](40) NOT NULL,
[State] [varchar](2) NOT NULL,
[ZipCode] [varchar](10) NOT NULL,
[Phone] [varchar](12) NOT NULL,
[Disabled] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[AddressID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Administrators] Script Date: 3/5/2020 4:09:44
PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Administrators](
[AdminID] [int] IDENTITY(1,1) NOT NULL,
[EmailAddress] [varchar](255) NOT NULL,
[Password] [varchar](255) NOT NULL,
[FirstName] [varchar](255) NOT NULL,
[LastName] [varchar](255) NOT NULL,
PRIMARY KEY CLUSTERED
(
[AdminID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Categories] Script Date: 3/5/2020 4:09:44 PM
******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Categories](
[CategoryID] [int] IDENTITY(1,1) NOT NULL,
[CategoryName] [varchar](255) NOT NULL,
PRIMARY KEY CLUSTERED
(
[CategoryID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Customers] Script Date: 3/5/2020 4:09:44 PM
******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Customers](
[CustomerID] [int] IDENTITY(1,1) NOT NULL,
[EmailAddress] [varchar](255) NOT NULL,
[Password] [varchar](60) NOT NULL,
[FirstName] [varchar](60) NOT NULL,
[LastName] [varchar](60) NOT NULL,
[ShippingAddressID] [int] NULL,
[BillingAddressID] [int] NULL,
PRIMARY KEY CLUSTERED
(
[CustomerID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[OrderItems] Script Date: 3/5/2020 4:09:44 PM
******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[OrderItems](
[ItemID] [int] IDENTITY(1,1) NOT NULL,
[OrderID] [int] NULL,
[ProductID] [int] NULL,
[ItemPrice] [money] NOT NULL,
[DiscountAmount] [money] NOT NULL,
[Quantity] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[ItemID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Orders] Script Date: 3/5/2020 4:09:44 PM
******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Orders](
[OrderID] [int] IDENTITY(1,1) NOT NULL,
[CustomerID] [int] NULL,
[OrderDate] [datetime] NOT NULL,
[ShipAmount] [money] NOT NULL,
[TaxAmount] [money] NOT NULL,
[ShipDate] [datetime] NULL,
[ShipAddressID] [int] NOT NULL,
[CardType] [varchar](50) NOT NULL,
[CardNumber] [char](16) NOT NULL,
[CardExpires] [char](7) NOT NULL,
[BillingAddressID] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[OrderID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Products] Script Date: 3/5/2020 4:09:44 PM
******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Products](
[ProductID] [int] IDENTITY(1,1) NOT NULL,
[CategoryID] [int] NULL,
[ProductCode] [varchar](10) NOT NULL,
[ProductName] [varchar](255) NOT NULL,
[Description] [text] NOT NULL,
[ListPrice] [money] NOT NULL,
[DiscountPercent] [money] NOT NULL,
[DateAdded] [datetime] NULL,
PRIMARY KEY CLUSTERED
(
[ProductID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[Addresses] ON

INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],


[State], [ZipCode], [Phone], [Disabled]) VALUES (1, 1, N'100 East Ridgewood
Ave.', N'', N'Paramus', N'NJ', N'07652', N'201-653-4472', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (2, 1, N'21 Rosewood Rd.', N'',
N'Woodcliff Lake', N'NJ', N'07677', N'201-653-4472', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (3, 2, N'16285 Wendell St.',
N'', N'Omaha', N'NE', N'68135', N'402-896-2576', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (4, 3, N'19270 NW Cornell
Rd.', N'', N'Beaverton', N'OR', N'97006', N'503-654-1291', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (5, 4, N'186 Vermont St.',
N'Apt. 2', N'San Francisco', N'CA', N'94110', N'415-292-6651', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (6, 4, N'1374 46th Ave.', N'',
N'San Francisco', N'CA', N'94129', N'415-292-6651', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (7, 5, N'6982 Palm Ave.', N'',
N'Fresno', N'CA', N'93711', N'559-431-2398', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (8, 6, N'23 Mountain View
St.', N'', N'Denver', N'CO', N'80208', N'303-912-3852', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (9, 7, N'7361 N. 41st St.',
N'Apt. B', N'New York', N'NY', N'10012', N'212-335-2093', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (10, 7, N'3829 Broadway Ave.',
N'Suite 2', N'New York', N'NY', N'10012', N'212-239-1208', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (11, 8, N'2381 Buena Vista
St.', N'', N'Los Angeles', N'CA', N'90023', N'213-772-5033', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (12, 8, N'291 W. Hollywood
Blvd.', N'', N'Los Angeles', N'CA', N'90024', N'213-391-2938', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (13, 9, N'96950 Hidden Ln',
N'', N'Aberdeen', N'MD', N'21001', N'410-259-2118', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (14, 10, N'6980 Dorsett Rd',
N'', N'Abilene', N'KS', N'67410', N'785-219-7724', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (15, 11, N'33 State St', N'',
N'Abilene', N'TX', N'79601', N'325-667-7868', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (16, 11, N'5 E Truman Rd', N'',
N'Abilene', N'TX', N'79602', N'325-740-3778', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (17, 12, N'8284 Hart St', N'',
N'Abilene', N'KS', N'67410', N'785-253-7049', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (18, 13, N'9387 Charcot Ave',
N'', N'Absecon', N'NJ', N'8201', N'609-234-8376', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (19, 14, N'3777 E Richmond St
#900', N'', N'Akron', N'OH', N'44302', N'330-700-2312', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (20, 15, N'74 S Westgate St',
N'', N'Albany', N'NY', N'12204', N'518-448-8982', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (21, 15, N'9390 S Howell Ave',
N'', N'Albany', N'GA', N'31701', N'229-365-9658', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (22, 16, N'89992 E 15th St',
N'', N'Alliance', N'NE', N'69301', N'308-250-6987', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (23, 17, N'812 S Haven St',
N'', N'Amarillo', N'TX', N'79109', N'806-558-5848', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (24, 18, N'72119 S Walker Ave
#63', N'', N'Anaheim', N'CA', N'92801', N'714-663-9740', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (25, 19, N'639 Main St', N'',
N'Anchorage', N'AK', N'99501', N'907-921-2010', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (26, 19, N'18 Fountain St',
N'', N'Anchorage', N'AK', N'99515', N'907-873-2882', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (27, 20, N'1747 Calle Amanecer
#2', N'', N'Anchorage', N'AK', N'99501', N'907-914-9482', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (28, 21, N'735 Crawford Dr',
N'', N'Anchorage', N'AK', N'99501', N'907-770-3542', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (29, 22, N'560 Civic Center
Dr', N'', N'Ann Arbor', N'MI', N'48103', N'734-408-8174', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (30, 23, N'747 Leonis Blvd',
N'', N'Annandale', N'VA', N'22003', N'703-874-4248', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (31, 24, N'70099 E North Ave',
N'', N'Arlington', N'TX', N'76013', N'817-947-9480', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (32, 25, N'73 W Barstow Ave',
N'', N'Arlington Heights', N'IL', N'60004', N'847-613-5866', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (33, 26, N'3 Mcauley Dr', N'',
N'Ashland', N'OH', N'44805', N'419-800-6759', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (34, 27, N'6 S 33rd St', N'',
N'Aston', N'PA', N'19014', N'610-492-4643', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (35, 28, N'92 Broadway', N'',
N'Astoria', N'NY', N'11103', N'718-728-5051', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (36, 29, N'45 2nd Ave #9759',
N'', N'Atlanta', N'GA', N'30328', N'770-531-2842', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (37, 29, N'26 Montgomery St',
N'', N'Atlanta', N'GA', N'30328', N'770-930-9967', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (38, 30, N'187 Market St', N'',
N'Atlanta', N'GA', N'30342', N'404-607-8435', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (39, 31, N'82 Winsor St #54',
N'', N'Atlanta', N'GA', N'30340', N'770-584-4119', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (40, 32, N'92 Main St', N'',
N'Atlantic City', N'NJ', N'8401', N'609-263-9243', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (41, 32, N'506 S Hacienda Dr',
N'', N'Atlantic City', N'NJ', N'8401', N'609-854-7156', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (42, 33, N'59 N Groesbeck
Hwy', N'', N'Austin', N'TX', N'78731', N'512-861-3814', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (43, 33, N'2026 N Plankinton
Ave #3', N'', N'Austin', N'TX', N'78754', N'512-693-8345', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (44, 34, N'3125 Packer Ave
#9851', N'', N'Austin', N'TX', N'78753', N'512-742-1149', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (45, 35, N'228 Runamuck Pl
#2808', N'', N'Baltimore', N'MD', N'21224', N'410-804-4694', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (46, 36, N'6 Kains Ave', N'',
N'Baltimore', N'MD', N'21215', N'410-957-6903', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (47, 37, N'2 S Biscayne Blvd',
N'', N'Baltimore', N'MD', N'21230', N'410-773-3862', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (48, 38, N'4 Iwaena St', N'',
N'Baltimore', N'MD', N'21202', N'410-429-4888', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (49, 39, N'2 W Scyene Rd #3',
N'', N'Baltimore', N'MD', N'21217', N'410-522-7621', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (50, 40, N'37855 Nolan Rd',
N'', N'Bangor', N'ME', N'4401', N'207-233-6185', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (51, 40, N'34 Saint George Ave
#2', N'', N'Bangor', N'ME', N'4401', N'207-748-3722', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (52, 41, N'95 Main Ave #2',
N'', N'Barberton', N'OH', N'44203', N'330-566-8898', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (53, 42, N'70 W Main St', N'',
N'Beachwood', N'OH', N'44122', N'216-733-8494', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (54, 43, N'3 Elmwood Dr', N'',
N'Beaverton', N'OR', N'97005', N'503-707-5812', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (55, 44, N'34 Raritan Center
Pky', N'', N'Bellflower', N'CA', N'90706', N'562-719-7922', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (56, 45, N'64 Lakeview Ave',
N'', N'Beloit', N'WI', N'53511', N'608-942-8836', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (57, 46, N'2887 Knowlton St
#5435', N'', N'Berkeley', N'CA', N'94710', N'510-942-5916', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (58, 47, N'429 Tiger Ln', N'',
N'Beverly Hills', N'CA', N'90212', N'310-969-7230', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (59, 47, N'598 43rd St', N'',
N'Beverly Hills', N'CA', N'90210', N'310-652-2379', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (60, 48, N'5 Elmwood Park
Blvd', N'', N'Biloxi', N'MS', N'39530', N'228-432-4635', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (61, 49, N'9506 Edgemore Ave',
N'', N'Bladensburg', N'MD', N'20710', N'301-591-3034', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (62, 50, N'539 Coldwater
Canyon Ave', N'', N'Bloomfield', N'NJ', N'7003', N'973-473-5108', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (63, 51, N'772 W River Dr',
N'', N'Bloomington', N'IN', N'47404', N'812-442-8544', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (64, 52, N'70 Euclid Ave
#722', N'', N'Bohemia', N'NY', N'11716', N'631-291-4976', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (65, 53, N'74 W College St',
N'', N'Boise', N'ID', N'83707', N'208-737-8439', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (66, 53, N'9635 S Main St',
N'', N'Boise', N'ID', N'83704', N'208-690-3315', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (67, 54, N'67 Rv Cent', N'',
N'Boise', N'ID', N'83709', N'208-206-9848', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (68, 55, N'38938 Park Blvd',
N'', N'Boston', N'MA', N'2128', N'617-997-5771', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (69, 55, N'8 County Center Dr
#647', N'', N'Boston', N'MA', N'2210', N'617-697-6024', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (70, 56, N'5 S Colorado Blvd
#449', N'', N'Bothell', N'WA', N'98021', N'425-700-3751', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (71, 57, N'4 Webbs Chapel Rd',
N'', N'Boulder', N'CO', N'80303', N'303-521-9860', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (72, 58, N'8590 Lake Lizzie
Dr', N'', N'Bowling Green', N'OH', N'43402', N'419-417-4674', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (73, 59, N'70295 Pioneer Ct',
N'', N'Brandon', N'FL', N'33511', N'813-744-7100', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (74, 60, N'8 W Cerritos Ave
#54', N'', N'Bridgeport', N'NJ', N'8014', N'856-264-4130', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (75, 61, N'46314 Route 130',
N'', N'Bridgeport', N'CT', N'6610', N'203-918-3939', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (76, 62, N'50 E Wacker Dr',
N'', N'Bridgewater', N'NJ', N'8807', N'908-602-5258', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (77, 63, N'3732 Sherman Ave',
N'', N'Bridgewater', N'NJ', N'8807', N'908-670-4712', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (78, 64, N'4 B Blue Ridge
Blvd', N'', N'Brighton', N'MI', N'48116', N'810-374-9840', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (79, 65, N'6 Gilson St', N'',
N'Bronx', N'NY', N'10468', N'718-478-8568', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (80, 66, N'617 Nw 36th Ave',
N'', N'Brook Park', N'OH', N'44142', N'216-871-6876', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (81, 67, N'25657 Live Oak St',
N'', N'Brooklyn', N'NY', N'11226', N'718-280-4183', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (82, 68, N'4 Kohler Memorial
Dr', N'', N'Brooklyn', N'NY', N'11230', N'718-732-9475', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (83, 68, N'64 Newman Springs
Rd E', N'', N'Brooklyn', N'NY', N'11219', N'718-853-3740', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (84, 69, N'61047 Mayfield
Ave', N'', N'Brooklyn', N'NY', N'11223', N'718-394-4974', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (85, 70, N'49 N Mays St', N'',
N'Broussard', N'LA', N'70518', N'337-991-8070', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (86, 71, N'8116 Mount Vernon
Ave', N'', N'Bucyrus', N'OH', N'44820', N'419-488-6648', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (87, 72, N'42754 S Ash Ave',
N'', N'Buffalo', N'NY', N'14228', N'716-854-9845', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (88, 73, N'4800 Black Horse
Pike', N'', N'Burlingame', N'CA', N'94010', N'650-216-5075', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (89, 74, N'33 Lewis Rd #46',
N'', N'Burlington', N'NC', N'27215', N'336-467-3095', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (90, 75, N'9 Tower Ave', N'',
N'Burlington', N'KY', N'41005', N'859-308-4286', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (91, 76, N'170 Wyoming Ave',
N'', N'Burnsville', N'MN', N'55337', N'952-938-9457', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (92, 77, N'7061 N 2nd St', N'',
N'Burnsville', N'MN', N'55337', N'952-314-5871', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (93, 78, N'3829 Ventura Blvd',
N'', N'Butte', N'MT', N'59701', N'406-374-7752', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (94, 79, N'17 Morena Blvd',
N'', N'Camarillo', N'CA', N'93012', N'805-609-1531', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (95, 80, N'25 Se 176th Pl',
N'', N'Cambridge', N'MA', N'2138', N'617-544-2541', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (96, 81, N'1 Garfield Ave #7',
N'', N'Canton', N'OH', N'44707', N'330-618-2579', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (97, 82, N'94 W Dodge Rd', N'',
N'Carson City', N'NV', N'89701', N'775-578-1214', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (98, 83, N'13252 Lighthouse
Ave', N'', N'Cathedral City', N'CA', N'92234', N'760-745-2649', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (99, 84, N'6 S Broadway St',
N'', N'Cedar Grove', N'NJ', N'7009', N'973-582-5469', 0)
GO
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (100, 85, N'98 Connecticut Ave
Nw', N'', N'Chagrin Falls', N'OH', N'44023', N'440-579-7763', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (101, 86, N'1088 Pinehurst
St', N'', N'Chapel Hill', N'NC', N'27514', N'919-715-3791', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (102, 87, N'501 N 19th Ave',
N'', N'Cherry Hill', N'NJ', N'8002', N'856-702-3676', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (103, 87, N'43496 Commercial
Dr #29', N'', N'Cherry Hill', N'NJ', N'8003', N'856-513-7024', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (104, 88, N'38773 Gravois
Ave', N'', N'Cheyenne', N'WY', N'82001', N'307-816-7115', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (105, 89, N'7 Eads St', N'',
N'Chicago', N'IL', N'60632', N'773-924-8565', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (106, 90, N'4284 Dorigo Ln',
N'', N'Chicago', N'IL', N'60647', N'773-352-3437', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (107, 91, N'4 Warehouse Point
Rd #7', N'', N'Chicago', N'IL', N'60638', N'773-539-1058', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (108, 92, N'137 Pioneer Way',
N'', N'Chicago', N'IL', N'60604', N'312-512-2338', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (109, 93, N'9 Murfreesboro
Rd', N'', N'Chicago', N'IL', N'60623', N'773-297-9391', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (110, 94, N'45 E Acacia Ct',
N'', N'Chicago', N'IL', N'60624', N'773-359-6109', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (111, 95, N'72 Beechwood Ter',
N'', N'Chicago', N'IL', N'60657', N'773-857-2231', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (112, 96, N'72 Mannix Dr', N'',
N'Cincinnati', N'OH', N'45203', N'513-418-1566', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (113, 97, N'868 State St #38',
N'', N'Cincinnati', N'OH', N'45251', N'513-747-9603', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (114, 98, N'7 Tarrytown Rd',
N'', N'Cincinnati', N'OH', N'45217', N'513-863-9471', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (115, 99, N'83 County Road 437
#8581', N'', N'Clarks Summit', N'PA', N'18411', N'570-469-8401', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (116, 100, N'2845 Boulder
Crescent St', N'', N'Cleveland', N'OH', N'44103', N'216-270-9653', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (117, 101, N'80 Pittsford
Victor Rd #9', N'', N'Cleveland', N'OH', N'44103', N'216-937-5320', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (118, 102, N'82 Us Highway 46',
N'', N'Clifton', N'NJ', N'7011', N'973-644-2974', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (119, 103, N'47857 Coney
Island Ave', N'', N'Clinton', N'MD', N'20735', N'301-392-6698', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (120, 104, N'31 Douglas Blvd
#950', N'', N'Clovis', N'NM', N'88101', N'505-950-1763', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (121, 105, N'383 Gunderman Rd
#197', N'', N'Coatesville', N'PA', N'19320', N'610-752-2683', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (122, 106, N'8597 W National
Ave', N'', N'Cocoa', N'FL', N'32922', N'321-632-4668', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (123, 107, N'9 Vanowen St',
N'', N'College Station', N'TX', N'77840', N'979-809-5770', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (124, 108, N'8 Us Highway 22',
N'', N'Colorado Springs', N'CO', N'80937', N'719-547-9543', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (125, 109, N'721 Interstate 45
S', N'', N'Colorado Springs', N'CO', N'80919', N'719-223-2074', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (126, 110, N'98839 Hawthorne
Blvd #6101', N'', N'Columbia', N'SC', N'29201', N'803-681-3678', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (127, 111, N'6882 Torresdale
Ave', N'', N'Columbia', N'SC', N'29201', N'803-975-3405', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (128, 112, N'74874 Atlantic
Ave', N'', N'Columbus', N'OH', N'43215', N'614-648-3265', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (129, 113, N'20932 Hedley St',
N'', N'Concord', N'CA', N'94520', N'925-522-7798', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (130, 114, N'523 Marquette
Ave', N'', N'Concord', N'MA', N'1742', N'978-289-7717', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (131, 115, N'386 9th Ave N',
N'', N'Conroe', N'TX', N'77301', N'936-597-3614', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (132, 116, N'77132 Coon Rapids
Blvd Nw', N'', N'Conroe', N'TX', N'77301', N'936-988-8171', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (133, 117, N'80312 W 32nd St',
N'', N'Conroe', N'TX', N'77301', N'936-937-2334', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (134, 118, N'8728 S Broad St',
N'', N'Coram', N'NY', N'11727', N'631-288-2866', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (135, 119, N'26659 N 13th St',
N'', N'Costa Mesa', N'CA', N'92626', N'949-903-3898', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (136, 120, N'189 Village Park
Rd', N'', N'Crestview', N'FL', N'32536', N'850-330-8079', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (137, 121, N'177 S Rider Trl
#52', N'', N'Crystal River', N'FL', N'34429', N'352-947-6152', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (138, 122, N'627 Walford Ave',
N'', N'Dallas', N'TX', N'75227', N'214-225-5850', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (139, 123, N'99586 Main St',
N'', N'Dallas', N'TX', N'75207', N'214-529-1949', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (140, 124, N'75684 S
Withlapopka Dr #32', N'', N'Dallas', N'TX', N'75227', N'214-785-6750', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (141, 125, N'8 S Haven St',
N'', N'Daytona Beach', N'FL', N'32114', N'386-208-6976', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (142, 126, N'7116 Western Ave',
N'', N'Dearborn', N'MI', N'48126', N'313-390-7855', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (143, 127, N'3270 Dequindre
Rd', N'', N'Deer Park', N'NY', N'11729', N'631-295-9879', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (144, 128, N'866 34th Ave',
N'', N'Denver', N'CO', N'80231', N'303-692-3118', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (145, 129, N'669 Packerland Dr
#1438', N'', N'Denver', N'CO', N'80212', N'303-794-1341', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (146, 130, N'7563 Cornwall Rd
#4462', N'', N'Denver', N'PA', N'17517', N'717-583-1497', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (147, 131, N'76598 Rd I 95
#1', N'', N'Denver', N'CO', N'80216', N'303-845-5408', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (148, 132, N'78 Maryland Dr
#146', N'', N'Denville', N'NJ', N'7834', N'973-491-8723', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (149, 133, N'29 Cherry St
#7073', N'', N'Des Moines', N'IA', N'50315', N'515-372-1738', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (150, 134, N'5384 Southwyck
Blvd', N'', N'Douglasville', N'GA', N'30135', N'770-802-4003', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (151, 135, N'4 Ralph Ct', N'',
N'Dunellen', N'NJ', N'8812', N'732-782-6701', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (152, 136, N'2167 Sierra Rd',
N'', N'East Lansing', N'MI', N'48823', N'517-867-8077', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (153, 137, N'2 Cedar Ave #84',
N'', N'Easton', N'MD', N'21601', N'410-235-8738', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (154, 138, N'9 N 14th St', N'',
N'El Cajon', N'CA', N'92020', N'619-695-8086', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (155, 139, N'395 S 6th St #2',
N'', N'El Cajon', N'CA', N'92020', N'619-935-6661', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (156, 140, N'87 Sierra Rd',
N'', N'El Monte', N'CA', N'91731', N'626-638-4241', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (157, 141, N'92899 Kalakaua
Ave', N'', N'El Paso', N'TX', N'79925', N'915-300-6100', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (158, 142, N'35 E Main St #43',
N'', N'Elk Grove Village', N'IL', N'60007', N'847-740-5304', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (159, 143, N'2 Sw Nyberg Rd',
N'', N'Elkhart', N'IN', N'46514', N'574-330-1884', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (160, 144, N'28 S 7th St
#2824', N'', N'Englewood', N'NJ', N'7631', N'201-772-4377', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (161, 145, N'17 Jersey Ave',
N'', N'Englewood', N'CO', N'80110', N'303-997-7760', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (162, 146, N'7 W 32nd St', N'',
N'Erie', N'PA', N'16502', N'814-420-3553', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (163, 147, N'555 Main St', N'',
N'Erie', N'PA', N'16502', N'814-299-2877', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (164, 148, N'1 N San Saba',
N'', N'Erie', N'PA', N'16501', N'814-481-1700', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (165, 149, N'3989 Portage Tr',
N'', N'Escondido', N'CA', N'92025', N'760-465-4762', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (166, 150, N'105 Richmond
Valley Rd', N'', N'Escondido', N'CA', N'92025', N'760-261-4786', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (167, 151, N'12270 Caton
Center Dr', N'', N'Eugene', N'OR', N'97401', N'541-801-5717', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (168, 152, N'461 Prospect Pl
#316', N'', N'Euless', N'TX', N'76040', N'817-451-3518', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (169, 153, N'37 Alabama Ave',
N'', N'Evanston', N'IL', N'60201', N'847-957-4614', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (170, 154, N'1048 Main St',
N'', N'Fairbanks', N'AK', N'99708', N'907-335-6568', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (171, 155, N'20 S Babcock St',
N'', N'Fairbanks', N'AK', N'99712', N'907-227-6777', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (172, 156, N'48 Lenox St', N'',
N'Fairfax', N'VA', N'22030', N'703-938-7939', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (173, 157, N'9 Waydell St',
N'', N'Fairfield', N'NJ', N'7004', N'973-976-8627', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (174, 158, N'87 Imperial Ct
#79', N'', N'Fargo', N'ND', N'58102', N'701-421-7080', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (175, 159, N'1482 College Ave',
N'', N'Fayetteville', N'NC', N'28301', N'910-200-7912', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (176, 160, N'61 13 Stoneridge
#835', N'', N'Findlay', N'OH', N'45840', N'419-254-4591', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (177, 161, N'76 Brooks St #9',
N'', N'Flemington', N'NJ', N'8822', N'908-470-4661', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (178, 162, N'7 S Beverly Dr',
N'', N'Fort Wayne', N'IN', N'46802', N'260-382-4869', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (179, 163, N'2 S 15th St', N'',
N'Fort Worth', N'TX', N'76107', N'817-819-7799', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (180, 164, N'2 W Mount Royal
Ave', N'', N'Fortville', N'IN', N'46040', N'317-887-8486', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (181, 165, N'7163 W Clark Rd',
N'', N'Freehold', N'NJ', N'7728', N'732-724-7251', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (182, 166, N'455 N Main Ave',
N'', N'Garden City', N'NY', N'11530', N'516-376-4230', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (183, 167, N'16452 Greenwich
St', N'', N'Garden City', N'NY', N'11530', N'516-407-9573', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (184, 168, N'47154 Whipple Ave
Nw', N'', N'Gardena', N'CA', N'90247', N'310-968-1219', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (185, 169, N'47939 Porter Ave',
N'', N'Gardena', N'CA', N'90248', N'310-694-8466', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (186, 170, N'2972 Lafayette
Ave', N'', N'Gardena', N'CA', N'90248', N'310-499-4200', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (187, 171, N'35433 Blake St
#588', N'', N'Gardena', N'CA', N'90248', N'310-955-5788', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (188, 172, N'22 Spruce St
#595', N'', N'Gardena', N'CA', N'90248', N'310-936-2258', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (189, 173, N'2853 S Central
Expy', N'', N'Glen Burnie', N'MD', N'21061', N'410-937-4543', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (190, 174, N'79 S Howell Ave',
N'', N'Grand Rapids', N'MI', N'49546', N'616-568-4113', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (191, 175, N'33 N Michigan
Ave', N'', N'Green Bay', N'WI', N'54301', N'920-355-1610', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (192, 176, N'9 Plainsboro Rd
#598', N'', N'Greensboro', N'NC', N'27409', N'336-364-6037', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (193, 177, N'88827 Frankford
Ave', N'', N'Greensboro', N'NC', N'27401', N'336-564-1492', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (194, 178, N'4646 Kaahumanu
St', N'', N'Hackensack', N'NJ', N'7601', N'201-995-3149', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (195, 179, N'34 Center St',
N'', N'Hamilton', N'OH', N'45011', N'513-549-4561', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (196, 180, N'287 Youngstown
Warren Rd', N'', N'Hampstead', N'MD', N'21074', N'410-863-8263', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (197, 181, N'3387 Ryan Dr',
N'', N'Hanover', N'MD', N'21076', N'410-912-6032', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (198, 182, N'2 W Beverly Blvd',
N'', N'Harrisburg', N'PA', N'17110', N'717-632-5831', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (199, 183, N'88 Sw 28th Ter',
N'', N'Harrison', N'NJ', N'7029', N'973-903-4175', 0)
GO
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (200, 184, N'2500 Pringle Rd
Se #508', N'', N'Hatfield', N'PA', N'19440', N'215-351-8523', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (201, 185, N'8100 Jacksonville
Rd #7', N'', N'Hays', N'KS', N'67601', N'785-616-1685', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (202, 186, N'69 Marquette Ave',
N'', N'Hayward', N'CA', N'94545', N'510-901-7640', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (203, 186, N'38 Pleasant Hill
Rd', N'', N'Hayward', N'CA', N'94545', N'510-441-4055', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (204, 187, N'2184 Worth St',
N'', N'Hayward', N'CA', N'94545', N'510-509-3496', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (205, 188, N'99 Tank Farm Rd',
N'', N'Hazleton', N'PA', N'18201', N'570-355-1665', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (206, 189, N'60 Old Dover Rd',
N'', N'Hialeah', N'FL', N'33014', N'305-302-1135', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (207, 190, N'2 Flynn Rd', N'',
N'Hicksville', N'NY', N'11801', N'516-732-6649', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (208, 191, N'4 10th St W', N'',
N'High Point', N'NC', N'27263', N'336-497-4407', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (209, 192, N'18 Waterloo
Geneva Rd', N'', N'Highland Park', N'IL', N'60035', N'847-265-6609', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (210, 193, N'303 N Radcliffe
St', N'', N'Hilo', N'HI', N'96720', N'808-746-1865', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (211, 194, N'5161 Dorsett Rd',
N'', N'Homestead', N'FL', N'33030', N'305-575-8481', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (212, 195, N'9 Wales Rd Ne
#914', N'', N'Homosassa', N'FL', N'34448', N'352-990-5946', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (213, 196, N'185 Blackstone
Bldge', N'', N'Honolulu', N'HI', N'96817', N'808-475-2310', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (214, 196, N'7 Benton Dr', N'',
N'Honolulu', N'HI', N'96819', N'808-240-5168', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (215, 197, N'2 Lighthouse Ave',
N'', N'Hopkins', N'MN', N'55343', N'952-479-2375', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (216, 198, N'6651 Municipal
Rd', N'', N'Houma', N'LA', N'70360', N'985-261-5783', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (217, 199, N'14302
Pennsylvania Ave', N'', N'Huntingdon Valley', N'PA', N'19006', N'215-417-
9563', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (218, 200, N'60 Fillmore Ave',
N'', N'Huntington Beach', N'CA', N'92647', N'714-698-2170', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (219, 201, N'94 Chase Rd', N'',
N'Hyattsville', N'MD', N'20785', N'301-257-4883', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (220, 202, N'55 Riverside Ave',
N'', N'Indianapolis', N'IN', N'46202', N'317-472-2412', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (221, 203, N'55262 N French
Rd', N'', N'Indianapolis', N'IN', N'46240', N'317-787-5514', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (222, 204, N'87393 E Highland
Rd', N'', N'Indianapolis', N'IN', N'46220', N'317-441-5848', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (223, 205, N'6538 E Pomona St
#60', N'', N'Indianapolis', N'IN', N'46222', N'317-342-1532', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (224, 206, N'618 W Yakima Ave',
N'', N'Irving', N'TX', N'75062', N'972-896-4882', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (225, 207, N'4 Bloomfield Ave',
N'', N'Irving', N'TX', N'75061', N'972-821-7118', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (226, 208, N'63517 Dupont St',
N'', N'Jackson', N'MS', N'39211', N'601-973-5754', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (227, 209, N'11279 Loytan St',
N'', N'Jacksonville', N'FL', N'32254', N'904-514-9918', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (228, 210, N'97 Airport Loop
Dr', N'', N'Jacksonville', N'FL', N'32216', N'904-627-4341', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (229, 211, N'14288 Foster Ave
#4121', N'', N'Jenkintown', N'PA', N'19046', N'215-329-6386', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (230, 212, N'4671 Alemany
Blvd', N'', N'Jersey City', N'NJ', N'7304', N'201-858-9960', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (231, 213, N'8 Sheridan Rd',
N'', N'Jersey City', N'NJ', N'7304', N'201-412-3040', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (232, 213, N'9 State Highway
57 #22', N'', N'Jersey City', N'NJ', N'7306', N'201-772-7699', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (233, 214, N'5 Williams St',
N'', N'Johnston', N'RI', N'2919', N'401-552-9059', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (234, 215, N'2 A Kelley Dr',
N'', N'Katonah', N'NY', N'10536', N'914-396-2615', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (235, 216, N'4 Cowesett Ave',
N'', N'Kearny', N'NJ', N'7032', N'201-969-7063', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (236, 217, N'20113 4th Ave E',
N'', N'Kearny', N'NJ', N'7032', N'201-478-8540', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (237, 218, N'4252 N Washington
Ave #9', N'', N'Kennedale', N'TX', N'76060', N'817-577-6151', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (238, 219, N'8772 Old County
Rd #5410', N'', N'Kent', N'WA', N'98032', N'206-923-6042', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (239, 220, N'3424 29th St Se',
N'', N'Kerrville', N'TX', N'78028', N'830-919-5991', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (240, 221, N'810 N La Brea
Ave', N'', N'King of Prussia', N'PA', N'19406', N'610-378-7332', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (241, 222, N'2371 Jerrold Ave',
N'', N'Kulpsville', N'PA', N'19443', N'215-422-8694', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (242, 223, N'4 E Colonial Dr',
N'', N'La Mesa', N'CA', N'91942', N'619-666-4765', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (243, 224, N'87895 Concord Rd',
N'', N'La Mesa', N'CA', N'91942', N'619-727-3892', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (244, 225, N'55 Hawthorne
Blvd', N'', N'Lafayette', N'LA', N'70506', N'337-774-7564', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (245, 226, N'43 Huey P Long
Ave', N'', N'Lafayette', N'LA', N'70508', N'337-751-2326', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (246, 226, N'393 Hammond Dr',
N'', N'Lafayette', N'LA', N'70506', N'337-255-3427', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (247, 227, N'1 Washington St',
N'', N'Lake Worth', N'FL', N'33461', N'561-951-9734', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (248, 228, N'3943 N Highland
Ave', N'', N'Lancaster', N'PA', N'17601', N'717-686-7564', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (249, 229, N'206 Main St
#2804', N'', N'Lansing', N'MI', N'48933', N'517-747-7664', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (250, 230, N'56 E Morehead St',
N'', N'Laredo', N'TX', N'78045', N'956-841-7216', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (251, 231, N'366 South Dr',
N'', N'Las Cruces', N'NM', N'88011', N'505-335-5293', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (252, 232, N'3 Railway Ave
#75', N'', N'Little Falls', N'NJ', N'7424', N'973-822-8827', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (253, 233, N'1844 Southern
Blvd', N'', N'Little Rock', N'AR', N'72202', N'501-409-6072', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (254, 234, N'2664 Lewis Rd',
N'', N'Littleton', N'CO', N'80126', N'303-874-5160', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (255, 235, N'13 S Hacienda Dr',
N'', N'Livingston', N'NJ', N'7039', N'973-563-9502', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (256, 236, N'2737 Pistorio Rd
#9230', N'', N'London', N'OH', N'43140', N'740-526-5410', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (257, 237, N'97 E 3rd St #9',
N'', N'Long Island City', N'NY', N'11101', N'718-613-9994', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (258, 238, N'50126 N
Plankinton Ave', N'', N'Longwood', N'FL', N'32750', N'407-564-8113', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (259, 239, N'25 E 75th St #69',
N'', N'Los Angeles', N'CA', N'90034', N'310-254-3084', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (260, 240, N'5 Tomahawk Dr',
N'', N'Los Angeles', N'CA', N'90006', N'323-315-7314', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (261, 240, N'3882 W Congress
St #799', N'', N'Los Angeles', N'CA', N'90016', N'323-842-8226', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (262, 241, N'4119 Metropolitan
Dr', N'', N'Los Angeles', N'CA', N'90021', N'213-696-8004', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (263, 242, N'7 W Pinhook Rd',
N'', N'Lynbrook', N'NY', N'11563', N'516-365-7266', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (264, 243, N'2215 Prosperity
Dr', N'', N'Lyndhurst', N'NJ', N'7071', N'201-749-8866', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (265, 244, N'762 S Main St',
N'', N'Madison', N'WI', N'53711', N'608-658-7940', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (266, 245, N'4 Nw 12th St
#3849', N'', N'Madison', N'WI', N'53717', N'608-302-3387', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (267, 246, N'40 Cambridge Ave',
N'', N'Madison', N'WI', N'53715', N'608-586-6912', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (268, 247, N'3338 A Lockport
Pl #6', N'', N'Margate City', N'NJ', N'8402', N'609-826-4990', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (269, 248, N'54169 N Main St',
N'', N'Massapequa', N'NY', N'11758', N'516-357-3362', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (270, 249, N'64 5th Ave #1153',
N'', N'Mc Lean', N'VA', N'22102', N'703-475-7568', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (271, 249, N'5 Cabot Rd', N'',
N'Mc Lean', N'VA', N'22102', N'703-892-2914', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (272, 250, N'69734 E Carrillo
St', N'', N'Mc Minnville', N'TN', N'37110', N'931-235-7959', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (273, 251, N'1 S Pine St', N'',
N'Memphis', N'TN', N'38112', N'901-573-9024', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (274, 252, N'2759 Livingston
Ave', N'', N'Memphis', N'TN', N'38118', N'901-869-4314', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (275, 253, N'2 W Grand Ave',
N'', N'Memphis', N'TN', N'38112', N'901-739-5892', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (276, 254, N'919 Wall Blvd',
N'', N'Meridian', N'MS', N'39307', N'601-249-4511', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (277, 255, N'72 Southern Blvd',
N'', N'Mesa', N'AZ', N'85204', N'480-866-6544', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (278, 256, N'2 Se 3rd Ave',
N'', N'Mesquite', N'TX', N'75149', N'972-742-4000', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (279, 257, N'596 Santa Maria
Ave #7913', N'', N'Mesquite', N'TX', N'75150', N'972-898-1033', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (280, 258, N'426 Wolf St', N'',
N'Metairie', N'LA', N'70002', N'504-265-8174', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (281, 259, N'678 3rd Ave', N'',
N'Miami', N'FL', N'33196', N'305-995-2078', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (282, 260, N'32860 Sierra Rd',
N'', N'Miami', N'FL', N'33133', N'305-304-6573', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (283, 261, N'23 Palo Alto Sq',
N'', N'Miami', N'FL', N'33134', N'305-287-4743', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (284, 262, N'42744 Hamann
Industrial Pky #82', N'', N'Miami', N'FL', N'33136', N'305-573-1085', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (285, 263, N'1644 Clove Rd',
N'', N'Miami', N'FL', N'33155', N'305-978-2069', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (286, 264, N'19 Amboy Ave',
N'', N'Miami', N'FL', N'33142', N'305-306-7834', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (287, 265, N'37275 St Rt 17m
M', N'', N'Middle Island', N'NY', N'11953', N'631-677-3675', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (288, 266, N'481 W Lemon St',
N'', N'Middleboro', N'MA', N'2346', N'508-315-3867', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (289, 267, N'3273 State St',
N'', N'Middlesex', N'NJ', N'8846', N'732-635-3453', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (290, 268, N'278 Bayview Ave',
N'', N'Milan', N'MI', N'48160', N'734-851-8571', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (291, 269, N'322 New Horizon
Blvd', N'', N'Milwaukee', N'WI', N'53207', N'414-377-2880', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (292, 269, N'59 Shady Ln #53',
N'', N'Milwaukee', N'WI', N'53214', N'414-573-7719', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (293, 270, N'9 N College Ave
#3', N'', N'Milwaukee', N'WI', N'53216', N'414-838-3151', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (294, 271, N'755 Harbor Way',
N'', N'Milwaukee', N'WI', N'53226', N'414-411-5744', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (295, 272, N'1950 5th Ave',
N'', N'Milwaukee', N'WI', N'53209', N'414-660-9766', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (296, 273, N'25 Minters Chapel
Rd #9', N'', N'Minneapolis', N'MN', N'55401', N'612-664-6304', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (297, 274, N'53075 Sw 152nd
Ter #615', N'', N'Monroe Township', N'NJ', N'8831', N'732-904-2931', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (298, 275, N'62260 Park Stre',
N'', N'Monroe Township', N'NJ', N'8831', N'732-705-6719', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (299, 276, N'201 Ridgewood Rd',
N'', N'Moscow', N'ID', N'83843', N'208-793-4108', 0)
GO
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (300, 277, N'63 Smith Ln
#8343', N'', N'Moss', N'TN', N'38575', N'931-486-6946', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (301, 278, N'6 Van Buren St',
N'', N'Mount Vernon', N'NY', N'10553', N'914-796-3775', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (302, 279, N'2094 Montour
Blvd', N'', N'Muskegon', N'MI', N'49442', N'231-265-6940', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (303, 280, N'134 Lewis Rd',
N'', N'Nashville', N'TN', N'37211', N'615-448-9249', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (304, 280, N'5221 Bear Valley
Rd', N'', N'Nashville', N'TN', N'37211', N'615-825-4297', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (305, 281, N'90177 N 55th Ave',
N'', N'Nashville', N'TN', N'37211', N'615-726-4537', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (306, 282, N'8139 I Hwy 10
#92', N'', N'New Bedford', N'MA', N'2745', N'508-897-7916', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (307, 283, N'9122 Carpenter
Ave', N'', N'New Haven', N'CT', N'6511', N'203-840-8634', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (308, 284, N'759 Eldora St',
N'', N'New Haven', N'CT', N'6515', N'203-801-8497', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (309, 285, N'6649 N Blue Gum
St', N'', N'New Orleans', N'LA', N'70116', N'504-845-1427', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (310, 286, N'3 Secor Rd', N'',
N'New Orleans', N'LA', N'70112', N'504-946-1807', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (311, 287, N'3718 S Main St',
N'', N'New Orleans', N'LA', N'70130', N'504-635-8518', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (312, 288, N'90991 Thorburn
Ave', N'', N'New York', N'NY', N'10011', N'212-934-5167', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (313, 289, N'2742 Distribution
Way', N'', N'New York', N'NY', N'10025', N'212-753-2740', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (314, 290, N'128 Bransten Rd',
N'', N'New York', N'NY', N'10011', N'212-569-4233', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (315, 291, N'4486 W O St #1',
N'', N'New York', N'NY', N'10003', N'212-617-5063', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (316, 292, N'3305 Nabell Ave
#679', N'', N'New York', N'NY', N'10009', N'212-462-9157', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (317, 293, N'8 Industry Ln',
N'', N'New York', N'NY', N'10002', N'212-880-8865', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (318, 294, N'229 N Forty Driv',
N'', N'New York', N'NY', N'10011', N'212-253-7448', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (319, 295, N'5 Harrison Rd',
N'', N'New York', N'NY', N'10038', N'212-778-3063', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (320, 296, N'38062 E Main St',
N'', N'New York', N'NY', N'10048', N'212-311-6377', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (321, 297, N'25346 New Rd',
N'', N'New York', N'NY', N'10016', N'212-782-3493', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (322, 298, N'7 S San Marcos
Rd', N'', N'New York', N'NY', N'10004', N'212-745-6948', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (323, 299, N'87163 N Main Ave',
N'', N'New York', N'NY', N'10013', N'212-225-9676', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (324, 300, N'3 Lawton St', N'',
N'New York', N'NY', N'10013', N'212-422-5427', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (325, 301, N'18 3rd Ave', N'',
N'New York', N'NY', N'10016', N'212-428-9538', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (326, 302, N'47565 W Grand
Ave', N'', N'Newark', N'NJ', N'7105', N'973-847-9611', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (327, 303, N'6794 Lake Dr E',
N'', N'Newark', N'NJ', N'7104', N'973-796-3667', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (328, 304, N'32820 Corkwood
Rd', N'', N'Newark', N'NJ', N'7104', N'973-605-6492', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (329, 305, N'1610 14th St Nw',
N'', N'Newport News', N'VA', N'23608', N'757-940-1741', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (330, 306, N'8977 Connecticut
Ave Nw #3', N'', N'Niles', N'MI', N'49120', N'269-431-9464', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (331, 307, N'4 Carroll St',
N'', N'North Attleboro', N'MA', N'2760', N'508-618-7826', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (332, 308, N'78112 Morris Ave',
N'', N'North Haven', N'CT', N'6473', N'203-564-1543', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (333, 309, N'41 Steel Ct', N'',
N'Northfield', N'MN', N'55057', N'507-590-5237', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (334, 310, N'70 Mechanic St',
N'', N'Northridge', N'CA', N'91325', N'818-481-5787', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (335, 311, N'49440 Dearborn
St', N'', N'Norwalk', N'CT', N'6854', N'203-938-2557', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (336, 312, N'1933 Packer Ave
#2', N'', N'Novato', N'CA', N'94945', N'415-926-6089', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (337, 313, N'993 Washington
Ave', N'', N'Nutley', N'NJ', N'7110', N'973-986-4456', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (338, 314, N'27846 Lafayette
Ave', N'', N'Oak Hill', N'FL', N'32759', N'386-599-7296', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (339, 315, N'72868 Blackington
Ave', N'', N'Oakland', N'CA', N'94606', N'510-755-9274', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (340, 316, N'82 N Highway 67',
N'', N'Oakley', N'CA', N'94561', N'925-541-8521', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (341, 317, N'6 Ridgewood
Center Dr', N'', N'Old Forge', N'PA', N'18518', N'570-569-2356', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (342, 318, N'21575 S Apple
Creek Rd', N'', N'Omaha', N'NE', N'68124', N'402-707-1602', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (343, 319, N'52777 Leaders
Heights Rd', N'', N'Ontario', N'CA', N'91761', N'909-589-1693', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (344, 320, N'703 Beville Rd',
N'', N'Opa Locka', N'FL', N'33054', N'305-857-5489', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (345, 321, N'1 N Harlem Ave
#9', N'', N'Orange', N'NJ', N'7050', N'973-818-9788', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (346, 322, N'93 Redmond Rd
#492', N'', N'Orlando', N'FL', N'32803', N'407-945-8566', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (347, 323, N'7 W Wabansia Ave
#227', N'', N'Orlando', N'FL', N'32822', N'407-429-2145', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (348, 324, N'2139 Santa Rosa
Ave', N'', N'Orlando', N'FL', N'32801', N'407-808-3254', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (349, 324, N'75698 N Fiesta
Blvd', N'', N'Orlando', N'FL', N'32806', N'407-472-1332', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (350, 326, N'63 E Aurora Dr',
N'', N'Orlando', N'FL', N'32804', N'407-557-8857', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (351, 327, N'77 222 Dr', N'',
N'Oroville', N'CA', N'95965', N'530-399-3254', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (352, 328, N'7219 Woodfield
Rd', N'', N'Overland Park', N'KS', N'66204', N'913-645-8918', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (353, 329, N'55892
Jacksonville Rd', N'', N'Owings Mills', N'MD', N'21117', N'410-916-8015', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (354, 330, N'94290 S Buchanan
St', N'', N'Pacifica', N'CA', N'94044', N'650-749-9879', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (355, 331, N'7 West Ave #1',
N'', N'Palatine', N'IL', N'60067', N'847-556-2909', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (356, 332, N'3 State Route 35
S', N'', N'Paramus', N'NJ', N'7652', N'201-247-8925', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (357, 333, N'5 W 7th St', N'',
N'Parkville', N'MD', N'21234', N'410-234-2267', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (358, 334, N'18 Coronado Ave
#563', N'', N'Pasadena', N'CA', N'91106', N'626-293-7678', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (359, 335, N'3381 E 40th Ave',
N'', N'Passaic', N'NJ', N'7055', N'973-355-2120', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (360, 336, N'2726 Charcot Ave',
N'', N'Paterson', N'NJ', N'7501', N'973-284-4048', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (361, 337, N'36 Lancaster Dr
Se', N'', N'Pearl', N'MS', N'39208', N'601-637-5479', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (362, 338, N'65 W Maple Ave',
N'', N'Pearl City', N'HI', N'96782', N'808-526-5863', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (363, 339, N'8429 Miller Rd',
N'', N'Pelham', N'NY', N'10803', N'914-883-3061', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (364, 340, N'347 Chestnut St',
N'', N'Peoria', N'AZ', N'85381', N'623-426-4907', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (365, 341, N'6 Harry L Dr
#6327', N'', N'Perrysburg', N'OH', N'43551', N'419-573-2033', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (366, 342, N'209 Decker Dr',
N'', N'Philadelphia', N'PA', N'19132', N'215-794-4519', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (367, 343, N'3 Fort Worth Ave',
N'', N'Philadelphia', N'PA', N'19106', N'215-228-8264', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (368, 344, N'63381 Jenks Ave',
N'', N'Philadelphia', N'PA', N'19134', N'215-346-4666', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (369, 345, N'992 Civic Center
Dr', N'', N'Philadelphia', N'PA', N'19123', N'215-417-5612', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (370, 346, N'73 Southern Blvd',
N'', N'Philadelphia', N'PA', N'19103', N'215-511-3531', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (371, 347, N'4379 Highway 116',
N'', N'Philadelphia', N'PA', N'19103', N'215-483-3003', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (372, 348, N'4441 Point Term
Mkt', N'', N'Philadelphia', N'PA', N'19143', N'215-829-4221', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (373, 349, N'910 Rahway Ave',
N'', N'Philadelphia', N'PA', N'19102', N'215-380-8820', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (374, 350, N'73 State Road 434
E', N'', N'Phoenix', N'AZ', N'85013', N'602-953-6360', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (375, 351, N'1 Huntwood Ave',
N'', N'Phoenix', N'AZ', N'85017', N'602-277-3025', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (376, 352, N'96541 W Central
Blvd', N'', N'Phoenix', N'AZ', N'85034', N'602-330-6894', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (377, 353, N'86350 Roszel Rd',
N'', N'Phoenix', N'AZ', N'85012', N'602-442-3092', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (378, 354, N'9 W Central Ave',
N'', N'Phoenix', N'AZ', N'85013', N'602-575-3457', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (379, 355, N'90131 J St', N'',
N'Pittstown', N'NJ', N'8867', N'908-448-1209', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (380, 356, N'30553 Washington
Rd', N'', N'Plainfield', N'NJ', N'7062', N'908-426-8272', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (381, 357, N'66552 Malone Rd',
N'', N'Plaistow', N'NH', N'3865', N'603-745-7497', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (382, 358, N'13 Gunnison St',
N'', N'Plano', N'TX', N'75075', N'972-961-4968', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (383, 359, N'48 Stratford Ave',
N'', N'Pomona', N'CA', N'91768', N'909-631-5703', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (384, 360, N'53 W Carey St',
N'', N'Port Jervis', N'NY', N'12771', N'845-694-7919', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (385, 361, N'1 Commerce Way',
N'', N'Portland', N'OR', N'97224', N'503-909-7167', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (386, 362, N'4940 Pulaski Park
Dr', N'', N'Portland', N'OR', N'97202', N'503-455-3094', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (387, 363, N'60480 Old Us
Highway 51', N'', N'Preston', N'MD', N'21655', N'410-724-6472', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (388, 364, N'2881 Lewis Rd',
N'', N'Prineville', N'OR', N'97754', N'541-993-2611', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (389, 365, N'65895 S 16th St',
N'', N'Providence', N'RI', N'2909', N'401-559-8961', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (390, 366, N'201 Hawk Ct', N'',
N'Providence', N'RI', N'2904', N'401-300-8122', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (391, 367, N'1 Rancho Del Mar
Shopping C', N'', N'Providence', N'RI', N'2903', N'401-885-7681', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (392, 368, N'9 Hwy', N'',
N'Providence', N'RI', N'2906', N'401-893-1820', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (393, 369, N'987 Main St', N'',
N'Raleigh', N'NC', N'27601', N'919-254-5987', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (394, 370, N'3958 S Dupont Hwy
#7', N'', N'Ramsey', N'NJ', N'7446', N'201-365-8698', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (395, 371, N'9745 W Main St',
N'', N'Randolph', N'NJ', N'7869', N'973-868-8660', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (396, 372, N'73 Saint Ann St
#86', N'', N'Reno', N'NV', N'89502', N'775-848-9135', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (397, 373, N'8 Mcarthur Ln',
N'', N'Richboro', N'PA', N'18954', N'215-647-2158', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (398, 374, N'36 Enterprise St
Se', N'', N'Richland', N'WA', N'99352', N'509-595-6485', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (399, 375, N'39 Franklin Ave',
N'', N'Richland', N'WA', N'99352', N'509-847-3352', 0)
GO
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (400, 376, N'9677 Commerce Dr',
N'', N'Richmond', N'VA', N'23219', N'804-858-1011', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (401, 377, N'393 Lafayette
Ave', N'', N'Richmond', N'VA', N'23219', N'804-808-9574', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (402, 378, N'45 E Liberty St',
N'', N'Ridgefield Park', N'NJ', N'7660', N'201-387-9093', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (403, 379, N'2409 Alabama Rd',
N'', N'Riverside', N'CA', N'92501', N'951-248-6822', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (404, 380, N'9939 N 14th St',
N'', N'Riverton', N'NJ', N'8077', N'856-828-6021', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (405, 381, N'66697 Park Pl
#3224', N'', N'Riverton', N'WY', N'82501', N'307-453-7589', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (406, 382, N'9581 E Arapahoe
Rd', N'', N'Rochester', N'MI', N'48307', N'248-811-5696', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (407, 383, N'7140 University
Ave', N'', N'Rock Springs', N'WY', N'82901', N'307-279-3793', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (408, 384, N'798 Lund Farm
Way', N'', N'Rockaway', N'NJ', N'7866', N'973-225-6259', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (409, 385, N'394 Manchester
Blvd', N'', N'Rockford', N'IL', N'61109', N'815-426-5657', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (410, 386, N'2140 Diamond
Blvd', N'', N'Rohnert Park', N'CA', N'94928', N'707-881-3154', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (411, 387, N'26849 Jefferson
Hwy', N'', N'Rolling Meadows', N'IL', N'60008', N'847-755-9041', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (412, 388, N'81 Norris Ave
#525', N'', N'Ronkonkoma', N'NY', N'11779', N'631-998-2102', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (413, 389, N'433 Westminster
Blvd #590', N'', N'Roseville', N'CA', N'95661', N'916-289-4526', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (414, 390, N'5 Washington St
#1', N'', N'Roseville', N'CA', N'95678', N'916-459-2433', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (415, 391, N'17 Us Highway
111', N'', N'Round Rock', N'TX', N'78664', N'512-528-9933', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (416, 392, N'3158 Runamuck Pl',
N'', N'Round Rock', N'TX', N'78664', N'512-942-3411', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (417, 393, N'6916 W Main St',
N'', N'Sacramento', N'CA', N'95827', N'916-770-7448', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (418, 394, N'1953 Telegraph
Rd', N'', N'Saint Joseph', N'MO', N'64504', N'816-329-5565', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (419, 395, N'4923 Carey Ave',
N'', N'Saint Louis', N'MO', N'63104', N'314-858-4832', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (420, 396, N'369 Latham St
#500', N'', N'Saint Louis', N'MO', N'63102', N'314-697-3652', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (421, 397, N'2023 Greg St',
N'', N'Saint Paul', N'MN', N'55101', N'651-776-9688', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (422, 398, N'9 Church St', N'',
N'Salem', N'OR', N'97302', N'503-950-3068', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (423, 399, N'9648 S Main', N'',
N'Salisbury', N'MD', N'21801', N'410-951-2667', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (424, 400, N'51120 State Route
18', N'', N'Salt Lake City', N'UT', N'84115', N'801-892-8781', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (425, 401, N'775 W 17th St',
N'', N'San Antonio', N'TX', N'78204', N'210-300-6244', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (426, 402, N'85092 Southern
Blvd', N'', N'San Antonio', N'TX', N'78204', N'210-634-2447', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (427, 403, N'4 S Washington
Ave', N'', N'San Bernardino', N'CA', N'92410', N'909-665-3223', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (428, 404, N'30 W 80th St
#1995', N'', N'San Carlos', N'CA', N'94070', N'650-811-9032', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (429, 405, N'1 Century Park E',
N'', N'San Diego', N'CA', N'92110', N'858-228-5683', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (430, 406, N'469 Outwater Ln',
N'', N'San Diego', N'CA', N'92126', N'858-732-1884', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (431, 407, N'701 S Harrison
Rd', N'', N'San Francisco', N'CA', N'94104', N'415-604-7609', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (432, 408, N'3717 Hamann
Industrial Pky', N'', N'San Francisco', N'CA', N'94104', N'415-712-9530', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (433, 409, N'6 Middlegate Rd
#106', N'', N'San Francisco', N'CA', N'94107', N'415-874-2984', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (434, 410, N'39 Moccasin Dr',
N'', N'San Francisco', N'CA', N'94104', N'415-284-2730', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (435, 411, N'10276 Brooks St',
N'', N'San Francisco', N'CA', N'94105', N'415-419-1597', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (436, 412, N'83649 W Belmont
Ave', N'', N'San Gabriel', N'CA', N'91776', N'626-696-2777', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (437, 413, N'7 W Jackson Blvd',
N'', N'San Jose', N'CA', N'95111', N'408-813-1105', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (438, 414, N'6 Greenleaf Ave',
N'', N'San Jose', N'CA', N'95111', N'408-813-4592', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (439, 415, N'99385 Charity St
#840', N'', N'San Jose', N'CA', N'95110', N'408-440-8447', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (440, 416, N'1128 Delaware St',
N'', N'San Jose', N'CA', N'95132', N'408-425-1994', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (441, 417, N'68556 Central
Hwy', N'', N'San Leandro', N'CA', N'94577', N'510-452-4835', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (442, 417, N'524 Louisiana Ave
Nw', N'', N'San Leandro', N'CA', N'94577', N'510-472-7758', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (443, 418, N'2 Monroe St', N'',
N'San Mateo', N'CA', N'94403', N'650-247-2625', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (444, 419, N'98 University Dr',
N'', N'San Ramon', N'CA', N'94583', N'925-943-3449', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (445, 420, N'11360 S Halsted
St', N'', N'Santa Ana', N'CA', N'92705', N'714-531-1391', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (446, 421, N'195 13n N', N'',
N'Santa Clara', N'CA', N'95054', N'408-346-2180', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (447, 422, N'985 E 6th Ave',
N'', N'Santa Rosa', N'CA', N'95407', N'707-821-8037', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (448, 423, N'251 Park Ave
#979', N'', N'Saratoga', N'CA', N'95070', N'408-997-7490', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (449, 424, N'77 Massillon Rd
#822', N'', N'Satellite Beach', N'FL', N'32937', N'321-597-2159', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (450, 425, N'4 58th St #3519',
N'', N'Scottsdale', N'AZ', N'85254', N'602-304-6433', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (451, 426, N'10759 Main St',
N'', N'Scottsdale', N'AZ', N'85260', N'480-205-5121', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (452, 427, N'63728 Poway Rd
#1', N'', N'Scranton', N'PA', N'18509', N'570-868-8688', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (453, 428, N'67 E Chestnut
Hill Rd', N'', N'Seattle', N'WA', N'98133', N'206-295-5631', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (454, 429, N'61556 W 20th Ave',
N'', N'Seattle', N'WA', N'98104', N'206-395-6284', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (455, 430, N'636 Commerce Dr
#42', N'', N'Shakopee', N'MN', N'55379', N'952-906-4597', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (456, 431, N'86 Nw 66th St
#8673', N'', N'Shawnee', N'KS', N'66218', N'913-899-1103', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (457, 432, N'5 Boston Ave #88',
N'', N'Sioux Falls', N'SD', N'57105', N'605-794-4895', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (458, 433, N'749 W 18th St
#45', N'', N'Smithfield', N'NC', N'27577', N'919-885-2453', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (459, 434, N'61304 N French
Rd', N'', N'Somerset', N'NJ', N'8873', N'732-445-6940', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (460, 435, N'406 Main St', N'',
N'Somerville', N'NJ', N'8876', N'908-943-6103', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (461, 436, N'55713 Lake City
Hwy', N'', N'South Bend', N'IN', N'46601', N'574-405-1983', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (462, 437, N'577 Parade St',
N'', N'South San Francisco', N'CA', N'94080', N'650-960-1069', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (463, 438, N'5 Green Pond Rd
#4', N'', N'Southampton', N'PA', N'18966', N'215-846-9046', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (464, 439, N'57 Haven Ave #90',
N'', N'Southfield', N'MI', N'48075', N'248-793-4966', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (465, 440, N'84 Bloomfield
Ave', N'', N'Spartanburg', N'SC', N'29301', N'864-594-4578', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (466, 441, N'44 W 4th St', N'',
N'Staten Island', N'NY', N'10309', N'718-654-7063', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (467, 442, N'89 20th St E
#779', N'', N'Sterling Heights', N'MI', N'48310', N'586-247-1614', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (468, 443, N'1 Central Ave',
N'', N'Stevens Point', N'WI', N'54481', N'715-530-9863', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (469, 444, N'3196 S Rider Trl',
N'', N'Stockton', N'CA', N'95207', N'209-242-7022', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (470, 445, N'944 Gaither Dr',
N'', N'Strongsville', N'OH', N'44136', N'440-327-2093', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (471, 446, N'62 W Austin St',
N'', N'Syosset', N'NY', N'11791', N'516-749-3188', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (472, 447, N'422 E 21st St',
N'', N'Syracuse', N'NY', N'13214', N'315-640-6357', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (473, 448, N'37 N Elm St #916',
N'', N'Tacoma', N'WA', N'98409', N'253-875-9222', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (474, 449, N'8 Fair Lawn Ave',
N'', N'Tampa', N'FL', N'33614', N'813-863-6467', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (475, 450, N'3211 E Northeast
Loop', N'', N'Tampa', N'FL', N'33619', N'813-357-7296', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (476, 451, N'1 State Route 27',
N'', N'Taylor', N'MI', N'48180', N'313-341-4470', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (477, 452, N'5 N Cleveland
Massillon Rd', N'', N'Thousand Oaks', N'CA', N'91362', N'805-638-6617', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (478, 452, N'326 E Main St
#6496', N'', N'Thousand Oaks', N'CA', N'91362', N'805-810-8964', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (479, 453, N'62 Monroe St',
N'', N'Thousand Palms', N'CA', N'92276', N'760-493-9208', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (480, 454, N'3 N Groesbeck
Hwy', N'', N'Toledo', N'OH', N'43613', N'419-313-5571', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (481, 455, N'7422 Martin Ave
#8', N'', N'Toledo', N'OH', N'43607', N'419-399-1744', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (482, 456, N'6201 S Nevada
Ave', N'', N'Toms River', N'NJ', N'8755', N'732-617-5310', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (483, 457, N'7 Flowers Rd
#403', N'', N'Trenton', N'NJ', N'8611', N'609-398-2805', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (484, 458, N'99 5th Ave #33',
N'', N'Trion', N'GA', N'30753', N'706-616-5131', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (485, 459, N'9 Norristown Rd',
N'', N'Troy', N'NY', N'12180', N'518-931-7852', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (486, 460, N'39 S 7th St', N'',
N'Tullahoma', N'TN', N'37388', N'931-303-6041', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (487, 461, N'2239 Shawnee
Mission Pky', N'', N'Tullahoma', N'TN', N'37388', N'931-739-1551', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (488, 462, N'649 Tulane Ave',
N'', N'Tulsa', N'OK', N'74105', N'918-565-1706', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (489, 463, N'4 Stovall St #72',
N'', N'Union City', N'NJ', N'7087', N'201-856-2720', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (490, 464, N'6 Sunrise Ave',
N'', N'Utica', N'NY', N'13501', N'315-474-5570', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (491, 465, N'22 Bridle Ln',
N'', N'Valley Park', N'MO', N'63088', N'314-231-3514', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (492, 466, N'4 Otis St', N'',
N'Van Nuys', N'CA', N'91405', N'818-749-8650', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (493, 467, N'8739 Hudson St',
N'', N'Vashon', N'WA', N'98070', N'206-389-1482', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (494, 468, N'88 15th Ave Ne',
N'', N'Vestal', N'NY', N'13850', N'607-350-7690', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (495, 469, N'840 15th Ave',
N'', N'Waco', N'TX', N'76708', N'254-205-1422', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (496, 470, N'8927 Vandever
Ave', N'', N'Waco', N'TX', N'76707', N'254-816-8417', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (497, 471, N'96263 Greenwood
Pl', N'', N'Warren', N'ME', N'4864', N'207-297-5029', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (498, 472, N'9 Front St', N'',
N'Washington', N'DC', N'20001', N'202-276-6826', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (499, 473, N'40 9th Ave Sw
#91', N'', N'Waterford', N'MI', N'48329', N'248-697-7722', 0)
GO
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (500, 474, N'71 San Mateo Ave',
N'', N'Wayne', N'PA', N'19087', N'610-379-7125', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (501, 475, N'74989 Brandon St',
N'', N'Wellsville', N'NY', N'14895', N'585-498-4278', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (502, 476, N'1 Midway Rd', N'',
N'Westborough', N'MA', N'1581', N'508-504-6388', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (503, 477, N'4545 Courthouse
Rd', N'', N'Westbury', N'NY', N'11590', N'516-333-4861', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (504, 478, N'44 58th St', N'',
N'Wheeling', N'IL', N'60090', N'847-800-3054', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (505, 479, N'65 Mountain View
Dr', N'', N'Whippany', N'NJ', N'7981', N'973-662-8988', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (506, 480, N'6535 Joyce St',
N'', N'Wichita Falls', N'TX', N'76301', N'940-302-3036', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (507, 481, N'5 Little River
Tpke', N'', N'Wilmington', N'MA', N'1887', N'978-679-7429', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (508, 482, N'3 Aspen St', N'',
N'Worcester', N'MA', N'1602', N'508-843-1426', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (509, 482, N'57254 Brickell
Ave #372', N'', N'Worcester', N'MA', N'1602', N'508-502-5634', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (510, 483, N'2094 Ne 36th Ave',
N'', N'Worcester', N'MA', N'1603', N'508-658-7802', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (511, 484, N'7667 S Hulen St
#42', N'', N'Yonkers', N'NY', N'10701', N'914-654-1426', 0)
INSERT [dbo].[Addresses] ([AddressID], [CustomerID], [Line1], [Line2], [City],
[State], [ZipCode], [Phone], [Disabled]) VALUES (512, 485, N'8573 Lincoln
Blvd', N'', N'York', N'PA', N'17404', N'717-344-2804', 0)
SET IDENTITY_INSERT [dbo].[Addresses] OFF
SET IDENTITY_INSERT [dbo].[Administrators] ON

INSERT [dbo].[Administrators] ([AdminID], [EmailAddress], [Password],


[FirstName], [LastName]) VALUES (1, N'admin@[Link]',
N'6a718fbd768c2378b511f8249b54897f940e9022', N'Admin', N'User')
INSERT [dbo].[Administrators] ([AdminID], [EmailAddress], [Password],
[FirstName], [LastName]) VALUES (2, N'joel@[Link]',
N'971e95957d3b74d70d79c20c94e9cd91b85f7aae', N'Joel', N'Murach')
INSERT [dbo].[Administrators] ([AdminID], [EmailAddress], [Password],
[FirstName], [LastName]) VALUES (3, N'mike@[Link]',
N'3f2975c819cefc686282456aeae3a137bf896ee8', N'Mike', N'Murach')
SET IDENTITY_INSERT [dbo].[Administrators] OFF
SET IDENTITY_INSERT [dbo].[Categories] ON

INSERT [dbo].[Categories] ([CategoryID], [CategoryName]) VALUES (2, N'Basses')


INSERT [dbo].[Categories] ([CategoryID], [CategoryName]) VALUES (3, N'Drums')
INSERT [dbo].[Categories] ([CategoryID], [CategoryName]) VALUES (1,
N'Guitars')
INSERT [dbo].[Categories] ([CategoryID], [CategoryName]) VALUES (4,
N'Keyboards')
SET IDENTITY_INSERT [dbo].[Categories] OFF
SET IDENTITY_INSERT [dbo].[Customers] ON

INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],


[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (1,
N'[Link]@[Link]', N'c44321e51ec184a2f739318639cec426de774451',
N'Allan', N'Sherwood', 1, 2)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (2,
N'barryz@[Link]', N'd9e03c0b34c57d034edda004ec8bae5d53667e36', N'Barry',
N'Zimmer', 3, 3)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (3,
N'christineb@[Link]', N'13ef4f968693bda97a898ece497da087b182808e',
N'Christine', N'Brown', 4, 4)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (4,
N'[Link]@[Link]', N'2a367cbb171d78d293f40fd7d1defb31e3fb1728',
N'David', N'Goldstein', 5, 6)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (5,
N'erinv@[Link]', N'2e203dd22e39e3a8930e7641fe074fec2b18b102', N'Erin',
N'Valentino', 7, 7)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (6,
N'frankwilson@[Link]', N'b13773cfee62f832cacb618b257feec972f30b13',
N'Frank Lee', N'Wilson', 8, 8)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (7,
N'gary_hernandez@[Link]', N'e931eea39d638c0324c0065c40e2c0acc91ceca9',
N'Gary', N'Hernandez', 9, 10)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (8,
N'heatheresway@[Link]', N'1867b31afdfbb6814133aa545f67305bc2f211b6',
N'Heather', N'Esway', 11, 12)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (9,
N'jbutt@[Link]', N'28592e5b54a8babc3cb6ad0a1c9094a2621c8ac3', N'James',
N'Butt', 13, 13)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (10,
N'josephine_darakjy@[Link]', N'815d965d07c98821d8ca725243bd09def4e33f24',
N'Josephine', N'Darakjy', 14, 14)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (11,
N'art@[Link]', N'39f7cfd0b51970b6bcd55a00da8e672b7153a183', N'Art',
N'Venere', 15, 16)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (12,
N'lpaprocki@[Link]', N'af27e4c5b48549d6dee6199e56834af1404f6169',
N'Lenna', N'Paprocki', 17, 17)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (13,
N'[Link]@[Link]', N'356584acaa7164280c97b147f317ce0d76d5993c',
N'Donette', N'Foller', 18, 18)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (14,
N'simona@[Link]', N'81133e972ea9b42831ef1fe7a846493526bfd3c3', N'Simona',
N'Morasca', 19, 19)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (15,
N'mitsue_tollner@[Link]', N'460420ee0d4f211f6be0bf7e7f352cf135cac579',
N'Mitsue', N'Tollner', 20, 21)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (16,
N'leota@[Link]', N'ceb92dd2b07d22fa39b9188306b9b04a78d80fe8', N'Leota',
N'Dilliard', 22, 22)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (17,
N'sage_wieser@[Link]', N'0c317d5469cda724d8b81ccd989179c99c3f2563', N'Sage',
N'Wieser', 23, 23)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (18,
N'kris@[Link]', N'd79af41c43ea2a02afbbd66af85a70bed5b5757f', N'Kris',
N'Marrier', 24, 24)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (19,
N'minna_amigon@[Link]', N'c73630df7813e0cc99e02c639bdce1a954257230',
N'Minna', N'Amigon', 25, 26)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (20,
N'amaclead@[Link]', N'295474f02de5da5862b837ca53de5e850f37f4c5', N'Abel',
N'Maclead', 27, 27)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (21,
N'[Link]@[Link]', N'eb3cc1df12acbdd0f6f39c56891b12f588cfb18a',
N'Kiley', N'Caldarera', 28, 28)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (22,
N'gruta@[Link]', N'e26bf3250ec4d8c764a06235f9a8aaac0354050c', N'Graciela',
N'Ruta', 29, 29)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (23,
N'calbares@[Link]', N'effd5ca2705a8a11fe6b79eff386b45dd2ad8d5c', N'Cammy',
N'Albares', 30, 30)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (24,
N'mattie@[Link]', N'674de46b21da5e95aad11c3e24e7ddae7dd063f7', N'Mattie',
N'Poquette', 31, 31)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (25,
N'meaghan@[Link]', N'de6aac016c911c349eeda6c7ce8827c10cd6003a',
N'Meaghan', N'Garufi', 32, 32)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (26,
N'[Link]@[Link]', N'db4f92cbe6e82c70a754045a98eda9d2906fe960', N'Gladys',
N'Rim', 33, 33)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (27,
N'yuki_whobrey@[Link]', N'df9b0a27fddfb22ebef677ff17bb2630b364b883', N'Yuki',
N'Whobrey', 34, 34)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (28,
N'[Link]@[Link]', N'0a73bcca3abb8abe8c7af206e7a173f80ff37471',
N'Fletcher', N'Flosi', 35, 35)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (29,
N'bette_nicka@[Link]', N'aa18a90d953be48bb88ba61b79bccb694dacac7a', N'Bette',
N'Nicka', 36, 37)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (30,
N'vinouye@[Link]', N'8e2b3b9115757100057cf291b2d31d8fb5a6ff57', N'Veronika',
N'Inouye', 38, 38)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (31,
N'willard@[Link]', N'1b437e1d7a706a108271636d66487b065b359579',
N'Willard', N'Kolmetz', 39, 39)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (32,
N'mroyster@[Link]', N'f7046c37b0ad80622b956464ee41e590e4b833dd',
N'Maryann', N'Royster', 40, 41)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (33,
N'alisha@[Link]', N'ca4db1a43bcab5dc00c6d2afddc5f85f14a27a1b',
N'Alisha', N'Slusarski', 42, 43)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (34,
N'allene_iturbide@[Link]', N'e7c8ddb5894ecbf48b9285d3d480fa153377d106',
N'Allene', N'Iturbide', 44, 44)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (35,
N'[Link]@[Link]', N'c4940cd601f8ec0bb2dd4e40dcaead38496fbf56',
N'Chanel', N'Caudy', 45, 45)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (36,
N'ezekiel@[Link]', N'28bb43c8489d35ae5e0410a3e7f2920184f86d79', N'Ezekiel',
N'Chui', 46, 46)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (37,
N'wkusko@[Link]', N'3769a748f05734c0692cd7dcb1718b39dc0fdc52', N'Willow',
N'Kusko', 47, 47)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (38,
N'bfigeroa@[Link]', N'b016c40c80f68317b242d07469d65c6ba07310dd', N'Bernardo',
N'Figeroa', 48, 48)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (39,
N'ammie@[Link]', N'88f982f0ad4f45293d4adb30294fe7407cf99c01', N'Ammie',
N'Corrio', 49, 49)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (40,
N'francine_vocelka@[Link]', N'94e3fe0c1a2a02d28c64da77b339f14308f2ee29',
N'Francine', N'Vocelka', 50, 51)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (41,
N'ernie_stenseth@[Link]', N'4944f2cfff1dc49827539f415a390c56d6185fbd',
N'Ernie', N'Stenseth', 52, 52)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (42,
N'albina@[Link]', N'afc12cca2e0eb72a0d8ca7849ac2b8687fef3e63', N'Albina',
N'Glick', 53, 53)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (43,
N'asergi@[Link]', N'8b06eecc3b3ac8aef4199354845a340b5776b0fc', N'Alishia',
N'Sergi', 54, 54)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (44,
N'solange@[Link]', N'b067b71aff361ba9b6d1eadd27e52eebdcde26ca',
N'Solange', N'Shinko', 55, 55)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (45,
N'jose@[Link]', N'866b8c2845010932a0e954c8596d52791c9dd83d', N'Jose',
N'Stockham', 56, 56)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (46,
N'[Link]@[Link]', N'0c6e3b007e144cd464786b81a5e3b51d1eb9b1be',
N'Rozella', N'Ostrosky', 57, 57)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (47,
N'valentine_gillian@[Link]', N'906c6f5df090604345b51cfaaa18be4318fd7f58',
N'Valentine', N'Gillian', 58, 59)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (48,
N'[Link]@[Link]', N'82a759a36c991fc2d0161403b79f623c2c4aee73',
N'Kati', N'Rulapaugh', 60, 60)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (49,
N'youlanda@[Link]', N'65240df71caf6471f67eedbbf8137d391af9bde3', N'Youlanda',
N'Schemmer', 61, 61)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (50,
N'doldroyd@[Link]', N'0875cab0a2ff9851313147fce35a52a3ac16b60e', N'Dyan',
N'Oldroyd', 62, 62)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (51,
N'roxane@[Link]', N'ef097d882a433ac306f4d1ef90e9733ec8284863', N'Roxane',
N'Campain', 63, 63)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (52,
N'lperin@[Link]', N'57944d769b84f9f74eda6b8056830cb175860ed6', N'Lavera',
N'Perin', 64, 64)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (53,
N'[Link]@[Link]', N'0d27e2fb7bc3dcfb3b395145a112d95decada35b',
N'Erick', N'Ferencz', 65, 66)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (54,
N'fsaylors@[Link]', N'4d23046b89b9fd957b9e7798709d2f006e758fb0',
N'Fatima', N'Saylors', 67, 67)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (55,
N'jina_briddick@[Link]', N'eaee27e032471a3748c5d3140864a79c37d60ede',
N'Jina', N'Briddick', 68, 69)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (56,
N'kanisha_waycott@[Link]', N'3724279c88980023b3b2a9350eabd86e57bb4054',
N'Kanisha', N'Waycott', 70, 70)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (57,
N'[Link]@[Link]', N'b7063bbdd35fd8ee545b787d1595aad80ce82617',
N'Emerson', N'Bowley', 71, 71)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (58,
N'bmalet@[Link]', N'7a6cc6177bf062818821854db22d146dc90d27b1', N'Blair',
N'Malet', 72, 72)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (59,
N'bbolognia@[Link]', N'0558a2848e0f5b1d9d5cfcfc925a9b550945036b', N'Brock',
N'Bolognia', 73, 73)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (60,
N'lnestle@[Link]', N'b04f6a00ae7dbf47a1aeeda97cd7fe662da04513',
N'Lorrie', N'Nestle', 74, 74)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (61,
N'sabra@[Link]', N'd373887fa37c7d724a92913ffd0e977e98d18acb', N'Sabra',
N'Uyetake', 75, 75)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (62,
N'mmastella@[Link]', N'83df6846b4c6c7a5de0b39cd681fa508236a7979',
N'Marjory', N'Mastella', 76, 76)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (63,
N'karl_klonowski@[Link]', N'dbf43f6ae5a65a113f6dce037075f25dd5c65677',
N'Karl', N'Klonowski', 77, 77)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (64,
N'twenner@[Link]', N'1777eaef9d6ae07040c2f8b8a0435a7b49893e10', N'Tonette',
N'Wenner', 78, 78)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (65,
N'amber_monarrez@[Link]', N'929515a50994010a84a85d4706f7983d522d36be',
N'Amber', N'Monarrez', 79, 79)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (66,
N'shenika@[Link]', N'6cee4ed32505b4cd8a59a1597a7955ae758ecad1', N'Shenika',
N'Seewald', 80, 80)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (67,
N'[Link]@[Link]', N'fe7a7db917715c2aa9db78e73ad065d5c549fb5a',
N'Delmy', N'Ahle', 81, 81)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (68,
N'deeanna_juhas@[Link]', N'd8e0e90f6323226d476ebf70c159212a8f853bd1',
N'Deeanna', N'Juhas', 83, 83)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (69,
N'bpugh@[Link]', N'1b559e15eb0491e8f82b080066b37a8432ea536d', N'Blondell',
N'Pugh', 84, 84)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (70,
N'jamal@[Link]', N'd1ba7f9c96240d2b412af3c5eb30bce51d8c25c7', N'Jamal',
N'Vanausdal', 85, 85)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (71,
N'cecily@[Link]', N'bbf467593b4b9ec1ba99be0cf66bb8c2a9875368', N'Cecily',
N'Hollack', 86, 86)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (72,
N'carmelina_lindall@[Link]', N'66eae350847b024844aaaf4602cb3d4867ba5869',
N'Carmelina', N'Lindall', 87, 87)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (73,
N'maurine_yglesias@[Link]', N'c8710d600efe20c13e88ecb4846d511d09dcc130',
N'Maurine', N'Yglesias', 88, 88)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (74,
N'tawna@[Link]', N'a16b21f79d4beeb0c4759446df871f00209f46b5', N'Tawna',
N'Buvens', 89, 89)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (75,
N'penney_weight@[Link]', N'5209de6f474db9d63ab02bc7e6b27a00ecf58a1d',
N'Penney', N'Weight', 90, 90)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (76,
N'elly_morocco@[Link]', N'a17367f47518109cec215cb78a36bc87eaf11378',
N'Elly', N'Morocco', 91, 91)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (77,
N'[Link]@[Link]', N'680883b16166fe39cb45018ea6900bd658506a36',
N'Ilene', N'Eroman', 92, 92)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (78,
N'vmondella@[Link]', N'b9f3639cbca4e208f6c3ff39b862c78ff04d3792',
N'Vallie', N'Mondella', 93, 93)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (79,
N'[Link]@[Link]', N'1ec8ab81e56ae4e20cbbcf4a0bf08c99237bf3b7',
N'Kallie', N'Blackwood', 94, 94)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (80,
N'johnetta_abdallah@[Link]', N'e9363a1256efa0cff71c7c93509554889d76703c',
N'Johnetta', N'Abdallah', 95, 95)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (81,
N'brhym@[Link]', N'adcf2634f971791bfefad0313edbf5aadd4a80ab', N'Bobbye',
N'Rhym', 96, 96)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (82,
N'micaela_rhymes@[Link]', N'804a143bc9bf2914a9810d7ad92af2086f9360c0',
N'Micaela', N'Rhymes', 97, 97)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (83,
N'tamar@[Link]', N'0bba0bb5ca31694285bc453e5da756c5c30fb986', N'Tamar',
N'Hoogland', 98, 98)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (84,
N'moon@[Link]', N'73f9cf682ffebaefbc86fb33a115e957a57b2958', N'Moon',
N'Parlato', 99, 99)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (85,
N'laurel_reitler@[Link]', N'be869e7a65b2a3def1b1686cbe835f1b3541c563',
N'Laurel', N'Reitler', 100, 100)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (86,
N'[Link]@[Link]', N'5224aa2af62a5ac95bb9e34f757b5f98a0f7b952',
N'Delisa', N'Crupi', 101, 101)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (87,
N'[Link]@[Link]', N'6e0cc94e09c58c2c8c7f9086208963b75964d8d1',
N'Viva', N'Toelkes', 102, 103)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (88,
N'elza@[Link]', N'2a8250f680f88518561301ed525ebd81bfe1f4c0', N'Elza',
N'Lipke', 104, 104)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (89,
N'devorah@[Link]', N'4e2a345c26d88537f631844bce4040a7dbc44e15',
N'Devorah', N'Chickering', 105, 105)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (90,
N'timothy_mulqueen@[Link]', N'5360d2c1f64d6c2f80ce02476d4d9291f86d4014',
N'Timothy', N'Mulqueen', 106, 106)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (91,
N'ahoneywell@[Link]', N'f630a0576f4f8338f96660d23d946a8b66d1ef07',
N'Arlette', N'Honeywell', 107, 107)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (92,
N'[Link]@[Link]',
N'1d07051a0300cf8ed3c78459f2c5d4a4f14ad0de', N'Dominque', N'Dickerson', 108,
108)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (93,
N'lettie_isenhower@[Link]', N'460ebc9153ec6d372e0f82e973aa67b134f69aec',
N'Lettie', N'Isenhower', 109, 109)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (94,
N'mmunns@[Link]', N'ef5ce5aada4e162cd906e692ffd59968f0549128', N'Myra',
N'Munns', 110, 110)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (95,
N'stephaine@[Link]', N'0b94f6df137751befe5f628423c59a67f84b01ec',
N'Stephaine', N'Barfield', 111, 111)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (96,
N'[Link]@[Link]', N'bc37dfda1e0b7a47c3283c18dcd0d405ae137786', N'Lai',
N'Gato', 112, 112)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (97,
N'stephen_emigh@[Link]', N'519c44cd7e73ad8a030455344643bca047f22722',
N'Stephen', N'Emigh', 113, 113)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (98,
N'tshields@[Link]', N'cae21a78e51fbb7413ee9270c34ce362845ea01f', N'Tyra',
N'Shields', 114, 114)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (99,
N'twardrip@[Link]', N'776201c2ff34dbb60122437d1b57e617fd217f4d', N'Tammara',
N'Wardrip', 115, 115)
GO
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (100,
N'[Link]@[Link]', N'6ba0e15dfa40f06c40e99d18dd399bc4bef2552c', N'Cory',
N'Gibes', 116, 116)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (101,
N'danica_bruschke@[Link]', N'461e7a9ea4fce4c8dfb140b2b8c1529fda2577eb',
N'Danica', N'Bruschke', 117, 117)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (102,
N'wilda@[Link]', N'3058461937bd318792fd6d4c3e40535ea45c90fe', N'Wilda',
N'Giguere', 118, 118)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (103,
N'[Link]@[Link]', N'5ef8b6f185a4a30f68e9885bbb6ec7a996cc7d8b',
N'Elvera', N'Benimadho', 119, 119)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (104,
N'carma@[Link]', N'0ce71a16fd1982034568d20d590ad8ae30d4dbea', N'Carma',
N'Vanheusen', 120, 120)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (105,
N'[Link]@[Link]', N'43cfa3e20e3c95d271e69588a812b31ab105f69b',
N'Malinda', N'Hochard', 121, 121)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (106,
N'[Link]@[Link]', N'5e87f2cfbfaf479d0b1a597839e13e603163c891',
N'Natalie', N'Fern', 122, 122)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (107,
N'lisha@[Link]', N'146ced36951edf2d60fd78a3942dce9ea7f26b47', N'Lisha',
N'Centini', 123, 123)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (108,
N'arlene_klusman@[Link]', N'10747a1b9ece0d4e8a0b3b083c08ce5321a7a276',
N'Arlene', N'Klusman', 124, 124)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (109,
N'alease@[Link]', N'8288a5fb9e22a4a024e403a9613e5b6c540eb2c8', N'Alease',
N'Buemi', 125, 125)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (110,
N'louisa@[Link]', N'b14161b080f8c29ba26dc67a0d6848e33596ab23',
N'Louisa', N'Cronauer', 126, 126)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (111,
N'[Link]@[Link]', N'5fd90a1a697ec29bff5ab89042d0de576cfe8be2',
N'Angella', N'Cetta', 127, 127)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (112,
N'cgoldammer@[Link]', N'4a78e236b205077eb0a383ee2ddcd35b1085cc0f', N'Cyndy',
N'Goldammer', 128, 128)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (113,
N'[Link]@[Link]', N'7599ab8e77ad593c4b4ebd2f2e01b6a8ebf4641d',
N'Rosio', N'Cork', 129, 129)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (114,
N'ckorando@[Link]', N'65710d502e61023aa52b9b94a22318ca736eb1d5',
N'Celeste', N'Korando', 130, 130)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (115,
N'[Link]@[Link]', N'799a4cc5fcbf57fae824223e5f95a6b3c8fe610d',
N'Twana', N'Felger', 131, 131)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (116,
N'estrella@[Link]', N'6b30e7b26cd5e54929038407f368627ad23cb981', N'Estrella',
N'Samu', 132, 132)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (117,
N'dkines@[Link]', N'971af2729f46f4e6f1626c75afe7424f0ec71e87', N'Donte',
N'Kines', 133, 133)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (118,
N'tiffiny_steffensmeier@[Link]', N'fe1dae5e89fa20e5d5b0b280f6067f5dabf97bd6',
N'Tiffiny', N'Steffensmeier', 134, 134)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (119,
N'emiceli@[Link]', N'928ac872411f4b5679d07dd5e0c2a6a45aa742ef', N'Edna',
N'Miceli', 135, 135)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (120,
N'sue@[Link]', N'a69e64b0cf15def6248257a3f4ad5337f858c23e', N'Sue',
N'Kownacki', 136, 136)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (121,
N'jshin@[Link]', N'7fcce3005b354f8a3e93f6c5ddd3f45ac8b0d193', N'Jesusa',
N'Shin', 137, 137)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (122,
N'rolland@[Link]', N'2efe2ffe9ddd0037d4fb75b1698af21b7a901447', N'Rolland',
N'Francescon', 138, 138)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (123,
N'[Link]@[Link]',
N'3dcd188af7de6d59b42cd644343b995abbfdd51f', N'Pamella', N'Schmierer', 139,
139)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (124,
N'gkulzer@[Link]', N'685ff2029222c9cc339e7ee95c76f4ee6c9bbed6', N'Glory',
N'Kulzer', 140, 140)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (125,
N'shawna_palaspas@[Link]', N'c0662952a1da40509530dcece47e7beec12a247f',
N'Shawna', N'Palaspas', 141, 141)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (126,
N'brandon_callaro@[Link]', N'96e5002ffe8a012ed893c08e0983dcdc0975d178',
N'Brandon', N'Callaro', 142, 142)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (127,
N'[Link]@[Link]', N'bb244a0c0792e73b8f52aa0edff525c3e3516073',
N'Scarlet', N'Cartan', 143, 143)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (128,
N'oretha_menter@[Link]', N'6b936e5d32e0e11518076d5ca2a46b11c0fa0910',
N'Oretha', N'Menter', 144, 144)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (129,
N'tsmith@[Link]', N'21bae09f8478cc35a4ace278f921bdced3f599a6', N'Ty',
N'Smith', 145, 145)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (130,
N'xuan@[Link]', N'14c7b2c5bad3b392613cd282403ea61b69d066a0', N'Xuan',
N'Rochin', 146, 146)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (131,
N'[Link]@[Link]', N'056c351d826d9933cbd89f6694a292f5f7c392a4',
N'Lindsey', N'Dilello', 147, 147)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (132,
N'devora_perez@[Link]', N'1e6cc2b8f73a6274422f32a1b21c84567bda2059',
N'Devora', N'Perez', 148, 148)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (133,
N'hdemesa@[Link]', N'dcb330264ad061d69cfdecab5444466350395189', N'Herman',
N'Demesa', 149, 149)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (134,
N'rpapasergi@[Link]', N'5b31add23b3fd93614bd5d37f10c1952f3f355e9', N'Rory',
N'Papasergi', 150, 150)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (135,
N'talia_riopelle@[Link]', N'15424bcf999b184076d0b140c7dde35f0e190cec',
N'Talia', N'Riopelle', 151, 151)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (136,
N'[Link]@[Link]', N'07afe87ecb356ad028a7241dc0e572fed2aa8c29', N'Van',
N'Shire', 152, 152)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (137,
N'lucina_lary@[Link]', N'54413fa8ab06015b2094133a81f5f83686add5ac',
N'Lucina', N'Lary', 153, 153)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (138,
N'[Link]@[Link]', N'7105b747704e7fbf78e06af4124d673dec8e0ed3', N'Bok',
N'Isaacs', 154, 154)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (139,
N'[Link]@[Link]',
N'125ce05b1642d891a5b588200d1d22a52a828856', N'Rolande', N'Spickerman', 155,
155)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (140,
N'hpaulas@[Link]', N'be73e5964d8399bca6b6dc788ae6fa594f977e8e', N'Howard',
N'Paulas', 156, 156)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (141,
N'kimbery_madarang@[Link]', N'cae74cac900af140693b57e36e6de13638d86d2b',
N'Kimbery', N'Madarang', 157, 157)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (142,
N'[Link]@[Link]', N'3e9f0f08887080b627d7476480fb40d0fa24d0de',
N'Thurman', N'Manno', 158, 158)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (143,
N'[Link]@[Link]',
N'bde3d34d41cb56fc655f3906e6e90c8a3fad3f84', N'Becky', N'Mirafuentes', 159,
159)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (144,
N'beatriz@[Link]', N'c358bea55925e1b7bab845ee13c2f9e3cd099f17', N'Beatriz',
N'Corrington', 160, 160)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (145,
N'[Link]@[Link]', N'f3184a89c0b4b2a0b7cd694d155fd36a1a44c3dd',
N'Marti', N'Maybury', 161, 161)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (146,
N'nieves_gotter@[Link]', N'07c780f86b4b325eb27e54963d366d9c267ff787',
N'Nieves', N'Gotter', 162, 162)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (147,
N'lhagele@[Link]', N'6383924b1e40198b053798aac71ecf09b8b4b62d', N'Leatha',
N'Hagele', 163, 163)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (148,
N'vklimek@[Link]', N'ae6ddd84893adce81541bd5b2f5ed91ceafacb18',
N'Valentin', N'Klimek', 164, 164)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (149,
N'melissa@[Link]', N'2ddaa841e288f6fa03167509ebe1b3d1c7b980ec', N'Melissa',
N'Wiklund', 165, 165)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (150,
N'[Link]@[Link]', N'5c15f643b99c2493cb3b0740d0709bf6c95cfcc0',
N'Sheridan', N'Zane', 166, 166)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (151,
N'bulah_padilla@[Link]', N'c8fafe4835ba045376aeb04d03ab4a29cdd223ec',
N'Bulah', N'Padilla', 167, 167)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (152,
N'audra@[Link]', N'd493ff768f6ee642015027699f79d9684c8a7a09', N'Audra',
N'Kohnert', 168, 168)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (153,
N'dweirather@[Link]', N'd9372a7f6e90048ecd8fd4090599c495b0356df6', N'Daren',
N'Weirather', 169, 169)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (154,
N'fjillson@[Link]', N'12385878058f478e4e74e3e81202dea49f7fcb76', N'Fernanda',
N'Jillson', 170, 170)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (155,
N'gearldine_gellinger@[Link]',
N'c3178af3a3084d6aa98648651eb247e2d03628ad', N'Gearldine', N'Gellinger', 171,
171)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (156,
N'chau@[Link]', N'eaf9455e55b47ac10bbea09d52d238a936a4eef5', N'Chau',
N'Kitzman', 172, 172)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (157,
N'theola_frey@[Link]', N'6047ec0f9c9e7b16037e7a5d3e874ed104ac0b5c',
N'Theola', N'Frey', 173, 173)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (158,
N'cheryl@[Link]', N'5f560fae6d6222f9807ddbb24239b2962589f0dc',
N'Cheryl', N'Haroldson', 174, 174)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (159,
N'lmerced@[Link]', N'0bbfef81bed246cd7e20dee84e6836609183ebd9', N'Laticia',
N'Merced', 175, 175)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (160,
N'[Link]@[Link]', N'a019b19df8d9698ebddb35c552773aecf87f4e73',
N'Carissa', N'Batman', 176, 176)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (161,
N'[Link]@[Link]', N'734ca32f5c35f37c7c84e28195ce5d4c40838cd1',
N'Lezlie', N'Craghead', 177, 177)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (162,
N'oshealy@[Link]', N'62c5de9a98f9e5ea75dcac6ef0364e1a1272863d', N'Ozell',
N'Shealy', 178, 178)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (163,
N'arminda@[Link]', N'21f23c690d30ef5783b3b386f6af927de0e2fe92',
N'Arminda', N'Parvis', 179, 179)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (164,
N'[Link]@[Link]', N'1e882cef6aec4793e81d6d2b0a8c247a41e83da8',
N'Reita', N'Leto', 180, 180)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (165,
N'yolando@[Link]', N'e7f6d11c8c35200dd40ff08003ced4ffe11f9af5', N'Yolando',
N'Luczki', 181, 181)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (166,
N'[Link]@[Link]', N'2f9f595de9c9bcd9e3f6694095c88bd2f3381dd6',
N'Lizette', N'Stem', 182, 182)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (167,
N'gpawlowicz@[Link]', N'6070e6f79a6f567bd26c36ffd8a2f1f6b08e0cd5',
N'Gregoria', N'Pawlowicz', 183, 183)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (168,
N'cdeleo@[Link]', N'b6a0d2e958bfe8f131c47864730d36ade5b49003', N'Carin',
N'Deleo', 184, 184)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (169,
N'chantell@[Link]', N'ab0e3f57ee28d7fe1c73420a612d4e4d5771f37f',
N'Chantell', N'Maynerich', 185, 185)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (170,
N'dyum@[Link]', N'eb6fa5c4955456a70010b66adcaba38d32da9ef9', N'Dierdre',
N'Yum', 186, 186)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (171,
N'larae_gudroe@[Link]', N'fd5648e3ecda6e06ec94032ba9e84c74829293ae',
N'Larae', N'Gudroe', 187, 187)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (172,
N'[Link]@[Link]', N'0388fdbba9a78ef029d934c9e1ee9f13fbb8c959',
N'Latrice', N'Tolfree', 188, 188)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (173,
N'[Link]@[Link]', N'458d411fde1122510c774b17ceb2b74db153af6c',
N'Kerry', N'Theodorov', 189, 189)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (174,
N'dhidvegi@[Link]', N'81a5726e797e0f8462266711c6cbaafdfec3af0a', N'Dorthy',
N'Hidvegi', 190, 190)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (175,
N'[Link]@[Link]', N'34193fc65818ddff83750052f55039e0a29d9b20',
N'Fannie', N'Lungren', 191, 191)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (176,
N'evangelina@[Link]', N'479b536baed7f05b9c8c927acadbdd2d8d245a0c',
N'Evangelina', N'Radde', 192, 192)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (177,
N'novella_degroot@[Link]', N'6d4508606c9442d467b6872615991b3a084e54c6',
N'Novella', N'Degroot', 193, 193)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (178,
N'choa@[Link]', N'4b3203c86db8eb621920a2a68000794f8890cb48', N'Clay', N'Hoa',
194, 194)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (179,
N'jfallick@[Link]', N'92c7029120d191f873c32c0650e2d3d899f4d9a6',
N'Jennifer', N'Fallick', 195, 195)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (180,
N'[Link]@[Link]', N'07812e9727f1d12d9c8526fed7ac004e6c2952b3',
N'Irma', N'Wolfgramm', 196, 196)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (181,
N'eun@[Link]', N'a48a8de36732d5e11ec91e619dd44dd285dbe33b', N'Eun',
N'Coody', 197, 197)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (182,
N'sylvia_cousey@[Link]', N'517a8f40bfd63b7232bf8b3979b8cabfb173f936',
N'Sylvia', N'Cousey', 198, 198)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (183,
N'nana@[Link]', N'cd21976915db7cef4d8a3bb19343eed72b934afc', N'Nana',
N'Wrinkles', 199, 199)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (184,
N'[Link]@[Link]', N'ecc017de40675157f644950d37f85ccc3029c52a',
N'Layla', N'Springe', 200, 200)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (185,
N'joesph_degonia@[Link]', N'4addbe735c47fe6105a46596ca3aa02516ecd6dc',
N'Joesph', N'Degonia', 201, 201)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (186,
N'[Link]@[Link]', N'c94aa4b92e8278c589fbd10edfe29dce0f1cfc88',
N'Annabelle', N'Boord', 202, 203)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (187,
N'stephaine@[Link]', N'7f71f8c424e55f143631e1d71961b6c315467160',
N'Stephaine', N'Vinning', 204, 204)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (188,
N'nelida@[Link]', N'f62429a28bd0887c75cb996e1c670e51491d20f8', N'Nelida',
N'Sawchuk', 205, 205)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (189,
N'[Link]@[Link]', N'ba382ab2769bb9eff857704a1137217585e75f39',
N'Marguerita', N'Hiatt', 206, 206)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (190,
N'ccookey@[Link]', N'f304be2a63bbc6380d9718e9b0078ff0d9876c25',
N'Carmela', N'Cookey', 207, 207)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (191,
N'jbrideau@[Link]', N'477e2f4b0b3b04db6529b6e0a8f686c00d54049b', N'Junita',
N'Brideau', 208, 208)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (192,
N'claribel_varriano@[Link]', N'6b45654d4b758b1f03d8f59e9b5dae24b37900e6',
N'Claribel', N'Varriano', 209, 209)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (193,
N'[Link]@[Link]', N'f178e0c72d864d27eb55722018b6274dd99f8630',
N'Benton', N'Skursky', 210, 210)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (194,
N'[Link]@[Link]', N'ac6186e87efc51429cf28a94fdce463d3eb03d73',
N'Hillary', N'Skulski', 211, 211)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (195,
N'merilyn_bayless@[Link]', N'b9aa03197fe740a9eca62a17e67ce242c84a473d',
N'Merilyn', N'Bayless', 212, 212)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (196,
N'tennaco@[Link]', N'3e55b265c5cb087be5ac5600a528a4fbc0087704', N'Teri',
N'Ennaco', 213, 214)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (197,
N'merlyn_lawler@[Link]', N'9ef712f1de8b6b48800bfae4c8829de28ee9f630',
N'Merlyn', N'Lawler', 215, 215)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (198,
N'gmontezuma@[Link]', N'59dae0e0a30dbc508637cce48da93c1d43a1b162',
N'Georgene', N'Montezuma', 216, 216)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (199,
N'jmconnell@[Link]', N'0d1606800dae1164999ec340547e76b42935341c',
N'Jettie', N'Mconnell', 217, 217)
GO
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (200,
N'[Link]@[Link]', N'115b6f168ced7df0dc1f99c6119329031b1545e2',
N'Lemuel', N'Latzke', 218, 218)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (201,
N'mknipp@[Link]', N'59b8433c45d44995fb3e75c7d807d7204d1e1cd9', N'Melodie',
N'Knipp', 219, 219)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (202,
N'candida_corbley@[Link]', N'd5b48963e6a6c600361db380fe49dc8071234711',
N'Candida', N'Corbley', 220, 220)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (203,
N'karan_karpin@[Link]', N'd6a883716a5e3f6c2cb4e097e64fc50a2bc6da6e',
N'Karan', N'Karpin', 221, 221)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (204,
N'andra@[Link]', N'5c114dcbcc91ceacf10f500bf9051f57bd873d8b', N'Andra',
N'Scheyer', 222, 222)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (205,
N'fpoullion@[Link]', N'9a9d87568de4976ff9819c5df22a96e0b402eebc',
N'Felicidad', N'Poullion', 223, 223)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (206,
N'belen_strassner@[Link]', N'bf0aa4b6c57bcab099bcd01ee7bde9613e7619ba',
N'Belen', N'Strassner', 224, 224)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (207,
N'gracia@[Link]', N'be29e81244dff940369edbff9ea9e0356d032898', N'Gracia',
N'Melnyk', 225, 225)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (208,
N'jhanafan@[Link]', N'4a4031e74fdea84ca5001704bf3676f40a13a4ec',
N'Jolanda', N'Hanafan', 226, 226)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (209,
N'[Link]@[Link]', N'f809e1a997815062bd0dd0604fc44439e39189bb',
N'Barrett', N'Toyama', 227, 227)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (210,
N'helga_fredicks@[Link]', N'0e70a7ffcfc6c9cc00b88226daf12a54cd60f8f0',
N'Helga', N'Fredicks', 228, 228)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (211,
N'apinilla@[Link]', N'3245f776a569ec6d91e0df7b82e3ba146801cf43', N'Ashlyn',
N'Pinilla', 229, 229)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (212,
N'fausto_agramonte@[Link]', N'b4ab51716609af9fa2129015a702c31d32417946',
N'Fausto', N'Agramonte', 230, 230)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (213,
N'[Link]@[Link]', N'35986abc0802dc5687e883750feacecbac645e58',
N'Ronny', N'Caiafa', 231, 232)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (214,
N'marge@[Link]', N'48cf9e2092bb7cbb34f0f2403fe91ee9b8e14175', N'Marge',
N'Limmel', 233, 233)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (215,
N'[Link]@[Link]', N'78138a8f52f53c118c9d1187d1fca48a66c3d5ae',
N'Norah', N'Waymire', 234, 234)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (216,
N'aliza@[Link]', N'4081c991b689605ecbeff06723c5b49ecaf8e48c', N'Aliza',
N'Baltimore', 235, 235)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (217,
N'mpelkowski@[Link]', N'52794ddb363da5c28e6561128e2b3c993fdc9d5d',
N'Mozell', N'Pelkowski', 236, 236)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (218,
N'viola@[Link]', N'ce5632a756f6e61f37f54a4292a592ca75eee8a9', N'Viola',
N'Bitsuie', 237, 237)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (219,
N'femard@[Link]', N'eae04fc7d77223a0072fa7e1eecc6d844fb95399', N'Franklyn',
N'Emard', 238, 238)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (220,
N'willodean_konopacki@[Link]',
N'b84ae4e5d61fe198ac98338913b3087c5555e1d8', N'Willodean', N'Konopacki', 239,
239)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (221,
N'[Link]@[Link]',
N'fe53bda50549952d4451ca242c569abc8ea35134', N'Beckie', N'Silvestrini', 240,
240)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (222,
N'rgesick@[Link]', N'ff5f79a7d1c03b9db0018ec6b253af6c4098654e',
N'Rebecka', N'Gesick', 241, 241)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (223,
N'frederica_blunk@[Link]', N'5a1ff7e868ffb423a276e972c68d156d2b29941a',
N'Frederica', N'Blunk', 242, 242)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (224,
N'glen_bartolet@[Link]', N'a7e3a1409af40ab5b8d360d631bb59ff1bd984f4',
N'Glen', N'Bartolet', 243, 243)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (225,
N'freeman_gochal@[Link]', N'94a183138ab6c7acc1563ded01de82d01723fa4e',
N'Freeman', N'Gochal', 244, 244)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (226,
N'[Link]@[Link]',
N'0660665f16aa7a3cdc4164e25b3cddbdb2ebe849', N'Vincent', N'Meinerding', 245,
246)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (227,
N'rima@[Link]', N'121d5ed161af95789433ced4a57b48947bc79aeb', N'Rima',
N'Bevelacqua', 247, 247)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (228,
N'gsarbacher@[Link]', N'23567f2a576eaf061000b7fec3c8b863af9e29d5',
N'Glendora', N'Sarbacher', 248, 248)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (229,
N'avery@[Link]', N'022b319ea4f0ed4f7ca1edcc819fc4b14071ebe4', N'Avery',
N'Steier', 249, 249)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (230,
N'cristy@[Link]', N'4db83f91135308509e5c598fc056444a847817e1', N'Cristy',
N'Lother', 250, 250)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (231,
N'nicolette_brossart@[Link]',
N'7e5f485766f058eeade0dcb11e3592d483dc2940', N'Nicolette', N'Brossart', 251,
251)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (232,
N'tracey@[Link]', N'8f5cfb99bb8c1c86d274efbb63584548a889e25b', N'Tracey',
N'Modzelewski', 252, 252)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (233,
N'virgina_tegarden@[Link]', N'8b13446b6191e6ec4d1a81644460452c38f63166',
N'Virgina', N'Tegarden', 253, 253)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (234,
N'tfrankel@[Link]', N'3ae2d9074e2e021c757d9ac37baf9c1c90176d8c', N'Tiera',
N'Frankel', 254, 254)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (235,
N'alaine_bergesen@[Link]', N'71f236ae339e470d180290050160ccc5c2cc4315',
N'Alaine', N'Bergesen', 255, 255)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (236,
N'earleen_mai@[Link]', N'e2317c150709792335d3a147c7d319a9634691bc',
N'Earleen', N'Mai', 256, 256)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (237,
N'leonida@[Link]', N'e4ee6be74c3898e6ffa2c9031a7f7b0b9c43cb88',
N'Leonida', N'Gobern', 257, 257)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (238,
N'[Link]@[Link]', N'2e783a76b26632b35b201ad8ca292bbbeb9b0e98',
N'Ressie', N'Auffrey', 258, 258)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (239,
N'jmugnolo@[Link]', N'f015ab20d2cdd2baddb21c9efb6c95c277034502',
N'Justine', N'Mugnolo', 259, 259)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (240,
N'eladia@[Link]', N'd95872b5fcf05728215342d01eec98e258471599', N'Eladia',
N'Saulter', 260, 261)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (241,
N'chaya@[Link]', N'ecbae364c512c99fe49ee43e6d1028992c532e37', N'Chaya',
N'Malvin', 262, 262)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (242,
N'gwenn_suffield@[Link]', N'10aab4784d303af8c8c5130e432030eaef384232',
N'Gwenn', N'Suffield', 263, 263)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (243,
N'skarpel@[Link]', N'9214049177fd20f3ce4b96dbfca2d825f53c0498', N'Salena',
N'Karpel', 264, 264)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (244,
N'yoko@[Link]', N'826fcab5b1092ff6a89b7b8df99ae0028c250938', N'Yoko',
N'Fishburne', 265, 265)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (245,
N'[Link]@[Link]', N'4275ee8d32626daeebe2e20f13abaa629467f940',
N'Taryn', N'Moyd', 266, 266)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (246,
N'katina_polidori@[Link]', N'088ded5d1c7cfc414ab656579e6f26bbee482557',
N'Katina', N'Polidori', 267, 267)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (247,
N'[Link]@[Link]', N'6e74aac86e2e9a3a0cb065531e3456eadcd232cb',
N'Rickie', N'Plumer', 268, 268)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (248,
N'alex@[Link]', N'b4665e3dab4a1363d8628905958fcb1140d69717', N'Alex',
N'Loader', 269, 269)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (249,
N'lashon@[Link]', N'e854733fc3f181a3e949bf400ee1f3038d32e192', N'Lashon',
N'Vizarro', 270, 271)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (250,
N'lburnard@[Link]', N'59bb06316da54728a39c22cc40758a2b46ec4d60',
N'Lauran', N'Burnard', 272, 272)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (251,
N'[Link]@[Link]', N'2cdd17ae9521497d729ce4a8d30caf447594f87b',
N'Ceola', N'Setter', 273, 273)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (252,
N'my@[Link]', N'cec294af8bf4f3b058bb7d5dc892e44e4365b56e', N'My',
N'Rantanen', 274, 274)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (253,
N'[Link]@[Link]', N'9c27af6e693db6b39a33664b303ad105ac5a53ea',
N'Lorrine', N'Worlds', 275, 275)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (254,
N'peggie@[Link]', N'05d9acfafa0c1c221749c9fded808dcf9a30ce9c', N'Peggie',
N'Sturiale', 276, 276)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (255,
N'mraymo@[Link]', N'4ada664de49ae77dc8c2b26d98a38c4847271b8a', N'Marvel',
N'Raymo', 277, 277)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (256,
N'daron_dinos@[Link]', N'f4cc9d7c43bc56f96a976e662d09703b1040001e', N'Daron',
N'Dinos', 278, 278)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (257,
N'an_fritz@[Link]', N'76270ebf5ecc358be908cd0758655f69f485d271', N'An',
N'Fritz', 279, 279)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (258,
N'[Link]@[Link]', N'c0b8754b9626a4d3cd2c1e7512d773a426296575',
N'Portia', N'Stimmel', 280, 280)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (259,
N'rhea_aredondo@[Link]', N'60d78e6435f04ff650c9266fd327194e73da6464',
N'Rhea', N'Aredondo', 281, 281)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (260,
N'bsama@[Link]', N'1d7245bc3a6b226609582d2f42967fe4c8bafc65', N'Benedict',
N'Sama', 282, 282)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (261,
N'alyce@[Link]', N'd67788bc0b2f7224c6472d08b247eef84899e610', N'Alyce',
N'Arias', 283, 283)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (262,
N'heike@[Link]', N'5b1e4053aa936ff55aeb01c3ed43e4840d351cbe', N'Heike',
N'Berganza', 284, 284)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (263,
N'carey_dopico@[Link]', N'67a2c11324bfad278d19f5d297e73c1124263a78',
N'Carey', N'Dopico', 285, 285)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (264,
N'dottie@[Link]', N'7cec7b73ebc7aef84412166239755eaba5a003b8',
N'Dottie', N'Hellickson', 286, 286)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (265,
N'deandrea@[Link]', N'069213dc4f6ebcf8793def401ed372b3ca6c4b20',
N'Deandrea', N'Hughey', 287, 287)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (266,
N'kimberlie_duenas@[Link]', N'fca95d52887ae540541745e95c48344cd184987a',
N'Kimberlie', N'Duenas', 288, 288)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (267,
N'martina_staback@[Link]', N'f9415aa861344a9bfefe0f0dec57d38aeee74f6e',
N'Martina', N'Staback', 289, 289)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (268,
N'skye_fillingim@[Link]', N'ba7404917e71bb7a63e5c285533f6d9eb665ecc0',
N'Skye', N'Fillingim', 290, 290)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (269,
N'[Link]@[Link]', N'025e7408081564e012f5f4364c340265fa76e5d7',
N'Jade', N'Farrar', 291, 292)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (270,
N'[Link]@[Link]', N'4a25c0a7e0b96b3db021c203035956a1966a019e',
N'Charlene', N'Hamilton', 293, 293)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (271,
N'geoffrey@[Link]', N'72f6519d3246d63da1ca2f5b6d5a4aa1744b5f69',
N'Geoffrey', N'Acey', 294, 294)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (272,
N'[Link]@[Link]', N'518f8a2b1eec65d907c7d84e9d908997f7412129',
N'Stevie', N'Westerbeck', 295, 295)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (273,
N'pamella@[Link]', N'80753ea23a534dc721a8ddc4a6ac3105b8458467',
N'Pamella', N'Fortino', 296, 296)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (274,
N'hhaufler@[Link]', N'43ff434c24c581ddec0c21704276a31d899c2e1b',
N'Harrison', N'Haufler', 297, 297)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (275,
N'jengelberg@[Link]', N'c1c96416099fa37308615b17188a36be26832c81',
N'Johnna', N'Engelberg', 298, 298)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (276,
N'[Link]@[Link]', N'00adb1b311b4285885676c23acd0bcafd8cd322f',
N'Buddy', N'Cloney', 299, 299)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (277,
N'[Link]@[Link]', N'450013d4f7a109713458ddcff24ac84808e0ebb9',
N'Dalene', N'Riden', 300, 300)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (278,
N'jzurcher@[Link]', N'191c272139cb681560658916e8cb3e06d678851a',
N'Jerry', N'Zurcher', 301, 301)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (279,
N'hdenooyer@[Link]', N'e36e096649165952b7eac350fd13165fa6bf9786',
N'Haydee', N'Denooyer', 302, 302)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (280,
N'joseph_cryer@[Link]', N'f8f5a60ac1b6cbeef5f45732d3bc8e2d136c0dcb',
N'Joseph', N'Cryer', 303, 304)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (281,
N'deonna_kippley@[Link]', N'550198c97e123faa4cfe4ae7265b9419498d1118',
N'Deonna', N'Kippley', 305, 305)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (282,
N'[Link]@[Link]', N'05d1342b5bf8e694a65fd484e6214435b1078d09',
N'Raymon', N'Calvaresi', 306, 306)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (283,
N'alecia@[Link]', N'6bcce33ec2b4b60dae6d03e4aed911f297342c2a', N'Alecia',
N'Bubash', 307, 307)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (284,
N'mlayous@[Link]', N'6aff541488aca6c3dc7ef2172fe5ec7c684296e9', N'Ma',
N'Layous', 308, 308)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (285,
N'detra@[Link]', N'c2c3701f3c915109dc506ad6c5349f49e92e072b', N'Detra',
N'Coyier', 309, 309)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (286,
N'[Link]@[Link]', N'c655cf5331a064be7db88d0e2812ae05673486f1',
N'Terrilyn', N'Rodeigues', 310, 310)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (287,
N'slacovara@[Link]', N'492447d4de47c0f362e23c34f78ec33f01a317c5',
N'Salome', N'Lacovara', 311, 311)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (288,
N'garry_keetch@[Link]', N'11b7fa97bf383164c8320cb31efb21c7dd0a7468',
N'Garry', N'Keetch', 312, 312)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (289,
N'mneither@[Link]', N'82cd2e65dedb7f1e75a889f2a9e2240053700adc',
N'Matthew', N'Neither', 313, 313)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (290,
N'[Link]@[Link]',
N'97a5d27155e413f1b7dee005982b07ed3557b7b6', N'Theodora', N'Restrepo', 314,
314)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (291,
N'[Link]@[Link]', N'b233688c8e73d3df81d8e311efa8831d0b5cfcc0',
N'Noah', N'Kalafatis', 315, 315)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (292,
N'csweigard@[Link]', N'8760596cef2a8e740927ba2292c766c9a9cd55e2',
N'Carmen', N'Sweigard', 316, 316)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (293,
N'lavonda@[Link]', N'34504088953d2d8e17142df2da8e8144fe22f548', N'Lavonda',
N'Hengel', 317, 317)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (294,
N'junita@[Link]', N'f9e4b22bcb35fcec5a7f16094c281e43cd47790a', N'Junita',
N'Stoltzman', 318, 318)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (295,
N'herminia@[Link]', N'a59628d39eaa6e977ec31749e1e4a4889b39cffc',
N'Herminia', N'Nicolozakes', 319, 319)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (296,
N'[Link]@[Link]', N'4407237f342c423c1a3d394c6adfcedef61b33de', N'Casie',
N'Good', 320, 320)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (297,
N'reena@[Link]', N'cd2337034e859c1504954303033425126c57e1e9', N'Reena',
N'Maisto', 321, 321)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (298,
N'mirta_mallett@[Link]', N'3c78dc3d7f16c3a97d4abfc042d64b5d52e9397c',
N'Mirta', N'Mallett', 322, 322)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (299,
N'[Link]@[Link]',
N'096b6b069e8c4eac8730f5205f1021d0de40bfe7', N'Cathrine', N'Pontoriero', 323,
323)
GO
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (300,
N'ftawil@[Link]', N'336baa80d44f0aba4a02d2d36d64405d65e2836a',
N'Filiberto', N'Tawil', 324, 324)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (301,
N'rupthegrove@[Link]', N'497f2fda349368f9f4def7b69d7efb54499f6c9a',
N'Raul', N'Upthegrove', 325, 325)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (302,
N'[Link]@[Link]', N'a709f1a0a34e46d1726ac1f6b879e19be6066f79',
N'Sarah', N'Candlish', 326, 326)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (303,
N'lucy@[Link]', N'80cff61e9b93312dcbc8263bc1fdd4cba617e21d', N'Lucy',
N'Treston', 327, 327)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (304,
N'jaquas@[Link]', N'd08575bab0d05de37597c882f20e7668244cb68f', N'Judy',
N'Aquas', 328, 328)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (305,
N'[Link]@[Link]', N'b478a30e775e05731839f4d994f455c53ef97ab7',
N'Yvonne', N'Tjepkema', 329, 329)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (306,
N'[Link]@[Link]', N'9051ba041f91565edca5a2ca5d1084b0a206ed2a',
N'Kayleigh', N'Lace', 330, 330)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (307,
N'felix_hirpara@[Link]', N'f079c9605f1147286832de2b4063a25fbecb79b0',
N'Felix', N'Hirpara', 331, 331)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (308,
N'tresa_sweely@[Link]', N'69cdbf25654576ddbfc2dd1a61bde58f991000a3',
N'Tresa', N'Sweely', 332, 332)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (309,
N'kristeen@[Link]', N'5aeeda37aca602953ad6754922e0329f079d0c1c',
N'Kristeen', N'Turinetti', 333, 333)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (310,
N'jregusters@[Link]', N'04eda4db294488cfb61cb751f31f4dbb3e0d6c1d',
N'Jenelle', N'Regusters', 334, 334)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (311,
N'renea@[Link]', N'c3fa913f9855ad7923d90f7bcd352906c2482ab3', N'Renea',
N'Monterrubio', 335, 335)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (312,
N'olive@[Link]', N'541d796a6b94342a104aab9a5bf808eed4407d99', N'Olive',
N'Matuszak', 336, 336)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (313,
N'lreiber@[Link]', N'93147febf42269ab6bad5f68a9bbc0c06359b804', N'Ligia',
N'Reiber', 337, 337)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (314,
N'[Link]@[Link]',
N'712d4df63fc63183a9890e9f9ae56bd846f241f9', N'Christiane', N'Eschberger',
338, 338)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (315,
N'[Link]@[Link]', N'b3f3f954a7fe56f4b5aa7c681b6f9aa1649c177e',
N'Goldie', N'Schirpke', 339, 339)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (316,
N'[Link]@[Link]', N'41679afb0f6af427a591268508d8fa84bf5ea848',
N'Loreta', N'Timenez', 340, 340)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (317,
N'[Link]@[Link]',
N'38400aa666a0b4960d27eee3551a9cd8b79a2857', N'Fabiola', N'Hauenstein', 341,
341)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (318,
N'[Link]@[Link]', N'cc3dfe5ed7aa3eb354c7b7afd68134477e50df4d',
N'Amie', N'Perigo', 342, 342)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (319,
N'[Link]@[Link]', N'a570ad4775ea56d3e337b2dfad28b08f1ce2f2e5',
N'Raina', N'Brachle', 343, 343)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (320,
N'[Link]@[Link]', N'f9765928e7c4c7b7a437dfd31ef867143d5ba4ca',
N'Erinn', N'Canlas', 344, 344)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (321,
N'cherry@[Link]', N'2cbb7b70f0f9580e066c991dc49c679f8c49e866', N'Cherry',
N'Lietz', 345, 345)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (322,
N'kattie@[Link]', N'bd25bfc1697a37d1a564a5ae6759e2b20834da10', N'Kattie',
N'Vonasek', 346, 346)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (323,
N'lilli@[Link]', N'3d975fa79f23b082c2f52933e4909ebf3f44cb06', N'Lilli',
N'Scriven', 347, 347)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (324,
N'[Link]@[Link]', N'53a12bd01ef6b1bea6468dad05a7cf93c68e713c',
N'Whitley', N'Tomasulo', 348, 348)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (325,
N'badkin@[Link]', N'6b1b092e1a4f9b67b13b92ffde100ba21bc5f88e', N'Barbra',
N'Adkin', 349, 349)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (326,
N'hermila_thyberg@[Link]', N'83073b481b946e7b77176de34c10529b18c23e28',
N'Hermila', N'Thyberg', 350, 350)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (327,
N'[Link]@[Link]', N'c32d9074008eb778fb6f06bf21a3ad7ca4df4c29',
N'Jesusita', N'Flister', 351, 351)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (328,
N'[Link]@[Link]', N'623348e318e4cd601ed7a0d5ce99a278abe2b7a6',
N'Caitlin', N'Julia', 352, 352)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (329,
N'[Link]@[Link]', N'67ac6f66f56fa5cefc089421f74595cbcc062d34',
N'Roosevelt', N'Hoffis', 353, 353)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (330,
N'hhalter@[Link]', N'c1342e0e95b3d3f5bc36ff8a28e9bdf78dc4cdb1', N'Helaine',
N'Halter', 354, 354)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (331,
N'[Link]@[Link]', N'9b6b4d2b42bfc8a7ab2a8322f1225f9b83a15e63',
N'Lorean', N'Martabano', 355, 355)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (332,
N'[Link]@[Link]', N'b4f532b7e7704af0e4fb557a1aa84f431f56b2ea',
N'France', N'Buzick', 356, 356)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (333,
N'jferrario@[Link]', N'1468cbea94b34d72852295ff62f434efacf779f0',
N'Justine', N'Ferrario', 357, 357)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (334,
N'adelina_nabours@[Link]', N'fbd2e53e88574dac66b7a4866a474ed38b9a4904',
N'Adelina', N'Nabours', 358, 358)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (335,
N'ddhamer@[Link]', N'eb63d26ba46b7d3fe0d7926361fc84958a107e66', N'Derick',
N'Dhamer', 359, 359)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (336,
N'[Link]@[Link]', N'9843ece0684bea114f13292ce1fab9cc023792f5',
N'Jerry', N'Dallen', 360, 360)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (337,
N'[Link]@[Link]', N'a6309b782bcbb49d4a655ec38bd6048e3eb1c218',
N'Leota', N'Ragel', 361, 361)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (338,
N'jamyot@[Link]', N'1eee99ae3126c50a402fbe3b276d44ef56b0913c', N'Jutta',
N'Amyot', 362, 362)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (339,
N'aja_gehrett@[Link]', N'5c5b8cdcb456c860316bd30961f48d2ef096749a',
N'Aja', N'Gehrett', 363, 363)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (340,
N'[Link]@[Link]', N'8f8006d404de876cad506d5d342fa4f3358cd270', N'Kirk',
N'Herritt', 364, 364)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (341,
N'leonora@[Link]', N'e1b7b6448f964fad63928b212ecd5981d097eb6d', N'Leonora',
N'Mauson', 365, 365)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (342,
N'winfred_brucato@[Link]', N'75d8d709f11df8cc45c61cbc6c8f93c074c6eaad',
N'Winfred', N'Brucato', 366, 366)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (343,
N'[Link]@[Link]', N'de9964234cb275e782e4049a36f8eb38de60fdd7',
N'Tarra', N'Nachor', 367, 367)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (344,
N'corinne@[Link]', N'9a951f917fdead2096c57ee4a36ad58c66cbb7a7', N'Corinne',
N'Loder', 368, 368)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (345,
N'dulce_labreche@[Link]', N'78fce412c9e33b1f20d8ce95289de439fa5b1356',
N'Dulce', N'Labreche', 369, 369)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (346,
N'kate_keneipp@[Link]', N'11bb8b3669fb30040a3b3b58bb1733a979ca6a02',
N'Kate', N'Keneipp', 370, 370)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (347,
N'[Link]@[Link]', N'1634acb1cf1af8871ac4e031d38199eef66ffbe2',
N'Kaitlyn', N'Ogg', 371, 371)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (348,
N'[Link]@[Link]', N'd505feca7387479d1118ab2b052b970356a94a62',
N'Sherita', N'Saras', 372, 372)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (349,
N'lstuer@[Link]', N'3f9c0736a16bd15d06729026d1f9d23d651660f8', N'Lashawnda',
N'Stuer', 373, 373)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (350,
N'ernest@[Link]', N'd6f3f3cecf24ab806855fe21948bd810d66e55a5', N'Ernest',
N'Syrop', 374, 374)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (351,
N'[Link]@[Link]', N'1bda4536c8a57e95c68c140d7bf06ccc48a2bb2e',
N'Nobuko', N'Halsey', 375, 375)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (352,
N'[Link]@[Link]', N'2836120fbafb2e08e23aae46156491de0918e35f',
N'Lavonna', N'Wolny', 376, 376)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (353,
N'llizama@[Link]', N'b5e4aea916e9cc9ef0ded213d8aa6136093fead3', N'Lashaunda',
N'Lizama', 377, 377)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (354,
N'[Link]@[Link]', N'8f25d8d1758beb61407d9e86a60513518ca1fbca',
N'Mariann', N'Bilden', 378, 378)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (355,
N'helene@[Link]', N'833fde4ecb1cccda04fff05c564476c965e25541', N'Helene',
N'Rodenberger', 379, 379)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (356,
N'[Link]@[Link]', N'a9af63dc6d6f92417ffb48bca2533cfa0b945c91',
N'Roselle', N'Estell', 380, 380)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (357,
N'sheintzman@[Link]', N'f871cf4fae8408aeb12ebd14dc927f33a83de1d0',
N'Samira', N'Heintzman', 381, 381)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (358,
N'margart_meisel@[Link]', N'c4151c2d09248c0a6855175da3112945c41272d4',
N'Margart', N'Meisel', 382, 382)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (359,
N'[Link]@[Link]', N'56fc7783b4cbb5b6df26e92c0c1c3181af861f4e',
N'Kristofer', N'Bennick', 383, 383)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (360,
N'wacuff@[Link]', N'481a188cd8166a8d2d3a4ad4f284de4cf7be8f7e', N'Weldon',
N'Acuff', 384, 384)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (361,
N'shalon@[Link]', N'573ebb5a9d48efe5ef17013a5c43d213c8cdc75b', N'Shalon',
N'Shadrick', 385, 385)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (362,
N'denise@[Link]', N'0fa2279ed833e97bf677d9baeb83029158a4792f', N'Denise',
N'Patak', 386, 386)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (363,
N'[Link]@[Link]', N'422a4da85127351893ab382df6d638a9b6beb0e4',
N'Louvenia', N'Beech', 387, 387)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (364,
N'[Link]@[Link]', N'97a09a9fbca4e187da325b892adb4cb381c49deb', N'Audry',
N'Yaw', 388, 388)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (365,
N'[Link]@[Link]', N'923b14cf04372e10a13772310160b78a1268f772',
N'Kristel', N'Ehmann', 389, 389)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (366,
N'vzepp@[Link]', N'2d7080f662d760d9463442218f0cf5007044a88f', N'Vincenza',
N'Zepp', 390, 390)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (367,
N'egwalthney@[Link]', N'e4305d775015259ca023ad6f707d5d3d3bfda34a',
N'Elouise', N'Gwalthney', 391, 391)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (368,
N'venita_maillard@[Link]', N'9c12d40d7dfeb6eada4d58e913e90b659fbce12e',
N'Venita', N'Maillard', 392, 392)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (369,
N'kasandra_semidey@[Link]', N'e08c886fdb5a80d33be351b7e555a575683d50d6',
N'Kasandra', N'Semidey', 393, 393)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (370,
N'xdiscipio@[Link]', N'6f8d173615337e98e4bff37a567e70099d250e34',
N'Xochitl', N'Discipio', 394, 394)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (371,
N'mlinahan@[Link]', N'8e4dd0e71c9174369fdb6dea176271af926bfca8', N'Maile',
N'Linahan', 395, 395)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (372,
N'krauser@[Link]', N'eb43a36be8e1e993fd069282b88762e051646c17', N'Krissy',
N'Rauser', 396, 396)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (373,
N'pdubaldi@[Link]', N'0f38be56508b7290140103b97bdfd92f7ab85614', N'Pete',
N'Dubaldi', 397, 397)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (374,
N'linn_paa@[Link]', N'84fa8dcb2d625ec057e569acf1c88b3894f31b1e', N'Linn',
N'Paa', 398, 398)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (375,
N'paris@[Link]', N'b6f48800f71fecf26a592fbe129128796e694e35', N'Paris',
N'Wide', 399, 399)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (376,
N'wynell_dorshorst@[Link]',
N'02cfbefd6ee29a08321cb91a97287768d07d14b3', N'Wynell', N'Dorshorst', 400,
400)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (377,
N'qbirkner@[Link]', N'11499785033e2e76e74155bc3f4b6b14f68ddc83', N'Quentin',
N'Birkner', 401, 401)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (378,
N'[Link]@[Link]', N'97b06a4c14224c19143745609207dcf2af06b247',
N'Regenia', N'Kannady', 402, 402)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (379,
N'sheron@[Link]', N'0e92579be604146706cb2cafa17266e19061d59d', N'Sheron',
N'Louissant', 403, 403)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (380,
N'[Link]@[Link]', N'c9972e7783076b0f1ce58a0ff4fb2dc1e4d2d5dc',
N'Izetta', N'Funnell', 404, 404)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (381,
N'rodolfo@[Link]', N'1ee0933ef2a0cbf589010fcbd82640d10776854a',
N'Rodolfo', N'Butzen', 405, 405)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (382,
N'zona@[Link]', N'36635c5ba978e476b7b70d66ca84cd2318123ab0', N'Zona',
N'Colla', 406, 406)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (383,
N'szagen@[Link]', N'fb828a86494f47fbbaccdd86894d76b2d4f78ad8', N'Serina',
N'Zagen', 407, 407)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (384,
N'paz_sahagun@[Link]', N'c5966108a88290fd5c48d032c2eaa2b37fe55936', N'Paz',
N'Sahagun', 408, 408)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (385,
N'markus@[Link]', N'0cb9f514191f88b2d9969bb804da2a1f7a327a1e', N'Markus',
N'Lukasik', 409, 409)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (386,
N'jaclyn@[Link]', N'5a259d8df190bf1a7975858d4c51babf8448545b', N'Jaclyn',
N'Bachman', 410, 410)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (387,
N'cyril_daufeldt@[Link]', N'2a6b69e395f54ff691ccc7d843471ef96b9d3a8a',
N'Cyril', N'Daufeldt', 411, 411)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (388,
N'gschnitzler@[Link]', N'4a621a77dce5eedfadaeb5db3c71a0f77af3d113',
N'Gayla', N'Schnitzler', 412, 412)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (389,
N'erick_nievas@[Link]', N'25c872ddac893621b6ec90bf1f190cee20669441',
N'Erick', N'Nievas', 413, 413)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (390,
N'jennie@[Link]', N'41af1a6ac6a8b49961565bf6e4de01b580a88f37', N'Jennie',
N'Drymon', 414, 414)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (391,
N'mscipione@[Link]', N'96cc7268edeb6058c9d982871cc2890569b96ab8',
N'Mitsue', N'Scipione', 415, 415)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (392,
N'cventura@[Link]', N'652912687d6e1de471eadb2bbbca45a2273260ed', N'Ciara',
N'Ventura', 416, 416)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (393,
N'galen@[Link]', N'fd7541a24b2c7ad1e19b1242a2d7a2b1b9261542', N'Galen',
N'Cantres', 417, 417)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (394,
N'tfeichtner@[Link]', N'50f5de2263d3bb1316c8b70ebd360037c386845e',
N'Truman', N'Feichtner', 418, 418)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (395,
N'gail@[Link]', N'2a51a4a7721fe92e235e03ed5d0772c36584a941', N'Gail',
N'Kitty', 419, 419)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (396,
N'dalene@[Link]', N'96fd69f751673d862b72e14556f0ed6efe9d5337',
N'Dalene', N'Schoeneck', 420, 420)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (397,
N'[Link]@[Link]', N'800520ade23242559c3a4660080d7c72fdcafcfe',
N'Gertude', N'Witten', 421, 421)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (398,
N'lizbeth@[Link]', N'f71695fb2e3bb9f7a03b018fa63e8d18dfc71a9e', N'Lizbeth',
N'Kohl', 422, 422)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (399,
N'gberray@[Link]', N'1aff39dcc710778b7225f9e9c236cd5d063236c4', N'Glenn',
N'Berray', 423, 423)
GO
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (400,
N'lashandra@[Link]', N'2820503cf6b6dd02d7851607b25213aa55aea76f',
N'Lashandra', N'Klang', 424, 424)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (401,
N'lnewville@[Link]', N'3d0089745945e1e6e6cd86e7f400e5bc95cf2e3c',
N'Lenna', N'Newville', 425, 425)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (402,
N'laurel@[Link]', N'09528f556c98413aea18f54161e40b6b16836bbb', N'Laurel',
N'Pagliuca', 426, 426)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (403,
N'[Link]@[Link]', N'7c5af0ec23c1150264ce65d2c28fc1a17f65faf1',
N'Mireya', N'Frerking', 427, 427)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (404,
N'annelle@[Link]', N'603a1c6dd46438499d2187adabcceef31834dfd5', N'Annelle',
N'Tagala', 428, 428)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (405,
N'dean_ketelsen@[Link]', N'548825bc3babcf0aa8e3e5f734d2dc79c6f2f6c7',
N'Dean', N'Ketelsen', 429, 429)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (406,
N'[Link]@[Link]', N'b01769aff04bb7dd6bdb0b30d664da3bd13d86e1', N'Levi',
N'Munis', 430, 430)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (407,
N'sylvie@[Link]', N'26274f831622d4812fbb2435938b1e1384d572bc', N'Sylvie',
N'Ryser', 431, 431)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (408,
N'sharee_maile@[Link]', N'0e5be6b9e8eeeb208db71a48da0477228a506238',
N'Sharee', N'Maile', 432, 432)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (409,
N'cordelia_storment@[Link]', N'6058c66bd9059ed9fc6b5d546619b5f7f5c31457',
N'Cordelia', N'Storment', 433, 433)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (410,
N'mollie_mcdoniel@[Link]', N'f1f76cc363af5e65dd330de20a2391179aa1b204',
N'Mollie', N'Mcdoniel', 434, 434)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (411,
N'[Link]@[Link]', N'86c306acc53462653827dcf7042b99fe98a39f2e',
N'Brett', N'Mccullan', 435, 435)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (412,
N'teddy_pedrozo@[Link]', N'a7c797f91fdf6b356eddfd52fb603e86d457a360',
N'Teddy', N'Pedrozo', 436, 436)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (413,
N'tasia_andreason@[Link]', N'25b0b96aac860f165cf5d4fa1cd1497178c3774f',
N'Tasia', N'Andreason', 437, 437)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (414,
N'hubert@[Link]', N'cd3e858d7815a54db8b3adfdc061b1068840d309',
N'Hubert', N'Walthall', 438, 438)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (415,
N'[Link]@[Link]', N'3ff78f5ec19c00ac5906773f5f0d5cd7c98e3283',
N'Arthur', N'Farrow', 439, 439)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (416,
N'vberlanga@[Link]', N'e1df86fea2f1bb855bc1a8baed1cf67df7351d4b',
N'Vilma', N'Berlanga', 440, 440)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (417,
N'billye_miro@[Link]', N'3395c1d78581f173377e3b4cf47dbd8d171994a5',
N'Billye', N'Miro', 441, 442)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (418,
N'glenna_slayton@[Link]', N'f6050bf3a4252903b7acb5f20163cd9dafb7a3ee',
N'Glenna', N'Slayton', 443, 443)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (419,
N'mitzie_hudnall@[Link]', N'571224f4bd4456d7162f15d6cab19511929b063f',
N'Mitzie', N'Hudnall', 444, 444)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (420,
N'bernardine_rodefer@[Link]', N'656fe2599d33f3ec3cff0b34c32037e23ba37c66',
N'Bernardine', N'Rodefer', 445, 445)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (421,
N'staci_schmaltz@[Link]', N'f8e1dcf8b85290d265d37846ed43f3fa6714292f',
N'Staci', N'Schmaltz', 446, 446)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (422,
N'nichelle_meteer@[Link]', N'119228a9ac545e8bbcf4e9b4b45402e024b4409d',
N'Nichelle', N'Meteer', 447, 447)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (423,
N'jrhoden@[Link]', N'b28cb1c637207bee2c99bbde7fb6e3c0429dd2ef', N'Janine',
N'Rhoden', 448, 448)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (424,
N'[Link]@[Link]',
N'd77e565600a3d048eeb3e7dda9688fbfd35e3e73', N'Ettie', N'Hoopengardner', 449,
449)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (425,
N'eden_jayson@[Link]', N'16db4fb34aa199d428a3f6c13f253d074e5bdcae',
N'Eden', N'Jayson', 450, 450)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (426,
N'lynelle_auber@[Link]', N'fe64fc493f7d53e9c620a33b13feba93c4d32b6a',
N'Lynelle', N'Auber', 452, 451)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (427,
N'[Link]@[Link]', N'8b009215da1ccac8e7981eb73460471491fabd75',
N'Merissa', N'Tomblin', 452, 452)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (428,
N'golda_kaniecki@[Link]', N'5d7ea71e9a62f6a0e3202ce9e4a61103cf7a7c01',
N'Golda', N'Kaniecki', 453, 453)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (429,
N'catarina_gleich@[Link]', N'bd621c88d05867af823951e3070af9529267e0d3',
N'Catarina', N'Gleich', 454, 454)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (430,
N'vkiel@[Link]', N'b753ee7fbf1ae73706b7876e8b9bbc834315cb1e', N'Virgie',
N'Kiel', 455, 455)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (431,
N'jolene@[Link]', N'bc91053d7bb2af43bfa91720946bf68c05e2e6d7', N'Jolene',
N'Ostolaza', 456, 456)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (432,
N'keneth@[Link]', N'f8c41490636f9b99bdfd62870b97ab45bb9259f4', N'Keneth',
N'Borgman', 457, 457)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (433,
N'rikki@[Link]', N'22a7538342f607cca4831f0df556a2384c32fb82', N'Rikki',
N'Nayar', 458, 458)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (434,
N'elke_sengbusch@[Link]', N'b0f46039f2cafa9a0fa97f2754e4d33bce8d1ed5',
N'Elke', N'Sengbusch', 459, 459)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (435,
N'hoa@[Link]', N'4fdaaa147d5db3306729276ba6b9c37e1b73dcfa', N'Hoa',
N'Sarao', 460, 460)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (436,
N'trinidad_mcrae@[Link]', N'70924c74ea557c27c0b651f88f64673da0bcda4f',
N'Trinidad', N'Mcrae', 461, 461)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (437,
N'mari_lueckenbach@[Link]', N'43ca6f38ddd7eb4aa7699c58b24059dc0cb8ec80',
N'Mari', N'Lueckenbach', 462, 462)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (438,
N'[Link]@[Link]', N'3a96f292121381d0b8df0df38bb21e3a0b168f51',
N'Selma', N'Husser', 463, 463)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (439,
N'aonofrio@[Link]', N'1c35ab145d18fb82cf029d31384c55035048fb87',
N'Antione', N'Onofrio', 464, 464)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (440,
N'ljurney@[Link]', N'96ff2df010f6e7449f5bd6203d3b4b5d965fab4e', N'Luisa',
N'Jurney', 465, 465)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (441,
N'[Link]@[Link]', N'895968fd8478f7332049237ad3764461de40702f',
N'Clorinda', N'Heimann', 466, 466)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (442,
N'dick@[Link]', N'd5f05f610667e1883b32a1427ae59a2592733cab', N'Dick',
N'Wenzinger', 467, 467)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (443,
N'[Link]@[Link]', N'd0cd657ecdb9710e16cb9739e7c3fd91eca9fa44',
N'Ahmed', N'Angalich', 468, 468)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (444,
N'[Link]@[Link]', N'627cdb29002c8014670f3c064e738de10c204fa5',
N'Iluminada', N'Ohms', 469, 469)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (445,
N'joanna_leinenbach@[Link]', N'33e734bb75a3117b69cc386db17c50cfc968a718',
N'Joanna', N'Leinenbach', 470, 470)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (446,
N'caprice@[Link]', N'5d9c1fe61cee30eb398bc1c3da768d4ea316c104', N'Caprice',
N'Suell', 471, 471)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (447,
N'stephane_myricks@[Link]', N'fc249cc38e855149a9d0b339303a0004ad7d0f35',
N'Stephane', N'Myricks', 472, 472)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (448,
N'quentin_swayze@[Link]', N'94869143e96663bcaaed6da32a245daf5906c487',
N'Quentin', N'Swayze', 473, 473)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (449,
N'annmarie_castros@[Link]', N'fe42d8c690b89240078c315d3fb437dc82c7f4ec',
N'Annmarie', N'Castros', 474, 474)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (450,
N'shonda_greenbush@[Link]', N'59e0473ce3d25523e7fc98e7bd91dcb811593d8f',
N'Shonda', N'Greenbush', 475, 475)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (451,
N'clapage@[Link]', N'bbdf0bb020029525c836bc4e0c37401dd4ea5780', N'Cecil',
N'Lapage', 476, 476)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (452,
N'[Link]@[Link]', N'a06fcf87d2cd121952d7cf247f0b9901bfa6633d',
N'Jeanice', N'Claucherty', 477, 478)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (453,
N'josphine_villanueva@[Link]',
N'b7208e652b26555d99a1b4b1d3fd8dde46239ccf', N'Josphine', N'Villanueva', 479,
479)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (454,
N'dperruzza@[Link]', N'a12ffbdd8d2026e489346a188536eb90b36183ec',
N'Daniel', N'Perruzza', 480, 480)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (455,
N'[Link]@[Link]', N'130720cac224be27ce695347d6d231b90c77e818',
N'Cassi', N'Wildfong', 481, 481)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (456,
N'britt@[Link]', N'd71d2c9f58341516a3955a31831155ccb3847644', N'Britt',
N'Galam', 482, 482)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (457,
N'[Link]@[Link]', N'25c8aedd3c732b98c1dfe10028a6c348953ae27b',
N'Adell', N'Lipkin', 483, 483)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (458,
N'[Link]@[Link]', N'8343c995bdaa50eb83ac21b5d65a946612f737a4',
N'Jacqueline', N'Rowling', 484, 484)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (459,
N'lonny_weglarz@[Link]', N'cae206c427061a5738bcf973572886151ae6810b',
N'Lonny', N'Weglarz', 485, 485)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (460,
N'lonna_diestel@[Link]', N'd5f8de4b692727b43375794ac3a54e27db595a84',
N'Lonna', N'Diestel', 486, 486)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (461,
N'cristal@[Link]', N'ea753e77b8b454685575c84208b5f4f319238901', N'Cristal',
N'Samara', 487, 487)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (462,
N'[Link]@[Link]', N'112d35e5b9f84f3f7e43387691b134c96c839ea6',
N'Kenneth', N'Grenet', 488, 488)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (463,
N'emclaird@[Link]', N'40b90d2751cede17837fba2ddb1584710758ce88', N'Elli',
N'Mclaird', 489, 489)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (464,
N'ajeanty@[Link]', N'fefbc2130cf12741169a62f0b570fae12791bc9a', N'Alline',
N'Jeanty', 490, 490)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (465,
N'[Link]@[Link]', N'92a263bc46e3fe2a00b93935730d8f02220daca2',
N'Sharika', N'Eanes', 491, 491)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (466,
N'nu@[Link]', N'3d3a7f56692e161dadc639d9f9c294bdb12d31d9', N'Nu',
N'Mcnease', 492, 492)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (467,
N'dcomnick@[Link]', N'a120b51cdc9a9314acbcb789280bea3cf6c78762', N'Daniela',
N'Comnick', 493, 493)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (468,
N'cecilia_colaizzo@[Link]', N'3c8de14b6483027a29c98d225adf6263130bf9e3',
N'Cecilia', N'Colaizzo', 494, 494)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (469,
N'leslie@[Link]', N'cb0025db0a3b134a67892175b82c36af5f64f720', N'Leslie',
N'Threets', 495, 495)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (470,
N'nan@[Link]', N'4a430cf63aaf01ae1018128c8d6f09da2035422c', N'Nan',
N'Koppinger', 496, 496)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (471,
N'idewar@[Link]', N'fd1897a9f879531d5154b1c8e1ee0379191465ad', N'Izetta',
N'Dewar', 497, 497)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (472,
N'[Link]@[Link]', N'0771493979785eac2a2ca7584e7b3e3d6b8defc4',
N'Tegan', N'Arceo', 498, 498)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (473,
N'ruthann@[Link]', N'0156f3dfcd2489ad3e1cb4596249e44fa8724a44',
N'Ruthann', N'Keener', 499, 499)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (474,
N'joni_breland@[Link]', N'a786dc303c15b2cc2bf99949d2920b0a8dff9d57', N'Joni',
N'Breland', 500, 500)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (475,
N'vrentfro@[Link]', N'd15f8cc1bc1cb6a40339b52bbaed5922bd41bd0f', N'Vi',
N'Rentfro', 501, 501)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (476,
N'[Link]@[Link]', N'efdf759fde6c8479928774a99aefa69156585b4f',
N'Colette', N'Kardas', 502, 502)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (477,
N'malcolm_tromblay@[Link]', N'fb03a9b33a4e59fa4c2fc4e3b420f788df4caf39',
N'Malcolm', N'Tromblay', 503, 503)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (478,
N'ryan@[Link]', N'67c4bd033af41cd1a24c4df9f25de8b1051ce378', N'Ryan',
N'Harnos', 504, 504)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (479,
N'[Link]@[Link]', N'7c3d3035e1d89f58f494c7e27b4d6afc00a74057',
N'Jess', N'Chaffins', 505, 505)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (480,
N'sbourbon@[Link]', N'e6bf7d0c9dd491dd289b356d3f7f285435a626e4', N'Sharen',
N'Bourbon', 506, 506)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (481,
N'nickolas_juvera@[Link]', N'77f602baf770e3618da53c0883d7c9bc82eca1f6',
N'Nickolas', N'Juvera', 507, 507)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (482,
N'gary_nunlee@[Link]', N'915e9617c8f0fb88e182a870a79129ae61c7efec',
N'Gary', N'Nunlee', 508, 509)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (483,
N'diane@[Link]', N'fba3f2a325a4e4eaf5992cbcc910ef91ecee3191', N'Diane',
N'Devreese', 510, 510)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (484,
N'[Link]@[Link]', N'3bf8ab2bdbc781f2000472c4fd9d86d6433ccd35',
N'Roslyn', N'Chavous', 511, 511)
INSERT [dbo].[Customers] ([CustomerID], [EmailAddress], [Password],
[FirstName], [LastName], [ShippingAddressID], [BillingAddressID]) VALUES (485,
N'glory@[Link]', N'31c689d737359ce214d095f5b0bcf6de82e57f3d', N'Glory',
N'Schieler', 512, 512)
SET IDENTITY_INSERT [dbo].[Customers] OFF
SET IDENTITY_INSERT [dbo].[OrderItems] ON

INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],


[DiscountAmount], [Quantity]) VALUES (1, 1, 2, 1199.0000, 359.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (2, 2, 4, 489.9900, 186.2000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (3, 3, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (4, 3, 6, 415.0000, 161.8500, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (5, 4, 2, 1199.0000, 359.7000, 2)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (6, 5, 5, 299.0000, 0.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (7, 6, 5, 299.0000, 0.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (8, 7, 9, 699.9900, 210.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (9, 7, 7, 799.9900, 240.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (10, 7, 9, 699.9900, 210.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (11, 8, 10, 799.9900, 120.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (12, 9, 1, 699.0000, 209.7000, 3)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (13, 10, 8, 499.9900, 125.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (14, 11, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (15, 12, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (16, 13, 10, 799.9900, 120.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (17, 14, 2, 1199.0000, 359.7000, 2)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (18, 15, 7, 799.9900, 240.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (19, 16, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (20, 16, 6, 415.0000, 161.8500, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (21, 17, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (22, 18, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (23, 19, 2, 1199.0000, 359.7000, 2)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (24, 20, 10, 799.9900, 120.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (25, 21, 7, 799.9900, 240.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (26, 22, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (27, 23, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (28, 24, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (29, 25, 2, 1199.0000, 359.7000, 2)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (30, 26, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (31, 27, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (32, 28, 9, 699.9900, 210.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (33, 29, 7, 799.9900, 240.0000, 5)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (34, 30, 8, 499.9900, 125.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (35, 31, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (36, 31, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (37, 32, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (38, 33, 5, 299.0000, 0.0000, 2)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (39, 34, 2, 1199.0000, 359.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (40, 35, 7, 799.9900, 240.0000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (41, 36, 4, 489.9900, 186.2000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (42, 37, 3, 2517.0000, 1308.8400, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (43, 38, 2, 1199.0000, 359.7000, 2)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (44, 39, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (45, 40, 1, 699.0000, 209.7000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (46, 41, 4, 489.9900, 186.2000, 1)
INSERT [dbo].[OrderItems] ([ItemID], [OrderID], [ProductID], [ItemPrice],
[DiscountAmount], [Quantity]) VALUES (47, 41, 1, 699.0000, 209.7000, 1)
SET IDENTITY_INSERT [dbo].[OrderItems] OFF
SET IDENTITY_INSERT [dbo].[Orders] ON

INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],


[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (1, 1, CAST(N'2020-01-
28T09:40:28.000' AS DateTime), 5.0000, 58.7500, CAST(N'2020-01-
31T09:41:11.000' AS DateTime), 1, N'Visa', N'4111111111111111', N'04/2022', 2)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (2, 2, CAST(N'2020-01-
28T11:23:20.000' AS DateTime), 5.0000, 21.2700, CAST(N'2020-01-
31T11:24:03.000' AS DateTime), 3, N'Visa', N'4012888888881881', N'08/2024', 3)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (3, 1, CAST(N'2020-01-
29T09:44:58.000' AS DateTime), 10.0000, 102.2900, CAST(N'2020-02-
01T09:45:41.000' AS DateTime), 1, N'Visa', N'4111111111111111', N'06/2024', 2)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (4, 3, CAST(N'2020-01-
30T15:22:31.000' AS DateTime), 10.0000, 117.5000, CAST(N'2020-02-
02T15:23:14.000' AS DateTime), 4, N'American Express', N'3782822463100005',
N'02/2021', 4)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (5, 4, CAST(N'2020-01-
31T05:43:11.000' AS DateTime), 5.0000, 20.9300, CAST(N'2020-02-
03T05:43:54.000' AS DateTime), 5, N'Visa', N'4111111111111111', N'09/2023', 6)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (6, 5, CAST(N'2020-01-
31T18:37:22.000' AS DateTime), 5.0000, 20.9300, CAST(N'2020-02-
03T18:38:05.000' AS DateTime), 7, N'Discover', N'6011111111111117',
N'04/2024', 7)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (7, 6, CAST(N'2020-02-
01T23:11:12.000' AS DateTime), 15.0000, 107.8000, CAST(N'2020-02-
04T23:11:55.000' AS DateTime), 8, N'MasterCard', N'5555555555554444',
N'12/2022', 8)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (8, 7, CAST(N'2020-02-
02T11:26:38.000' AS DateTime), 5.0000, 47.6000, CAST(N'2020-02-
05T11:27:21.000' AS DateTime), 9, N'Visa', N'4012888888881881', N'04/2021',
10)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (9, 4, CAST(N'2020-02-
03T12:22:31.000' AS DateTime), 15.0000, 102.7500, CAST(N'2020-02-
06T12:23:14.000' AS DateTime), 5, N'Visa', N'4111111111111111', N'01/2024', 6)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (10, 8, CAST(N'2020-02-
03T14:59:20.000' AS DateTime), 5.0000, 26.2500, CAST(N'2020-02-
06T15:00:03.000' AS DateTime), 11, N'Visa', N'4111111111111111', N'08/2023',
12)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (11, 9, CAST(N'2020-02-
04T06:24:44.000' AS DateTime), 5.0000, 34.2500, CAST(N'2020-02-
07T06:25:27.000' AS DateTime), 13, N'Visa', N'4012888888881881', N'08/2023',
13)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (12, 10, CAST(N'2020-02-
04T08:15:12.000' AS DateTime), 5.0000, 84.5700, CAST(N'2020-02-
07T08:15:55.000' AS DateTime), 14, N'Visa', N'4111111111111111', N'03/2021',
14)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (13, 11, CAST(N'2020-02-
04T11:20:31.000' AS DateTime), 5.0000, 47.6000, CAST(N'2020-02-
07T11:21:14.000' AS DateTime), 15, N'Visa', N'4111111111111111', N'02/2024',
16)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (14, 12, CAST(N'2020-02-
05T09:24:53.000' AS DateTime), 10.0000, 117.5000, CAST(N'2020-02-
08T09:25:36.000' AS DateTime), 17, N'Visa', N'4111111111111111', N'11/2022',
17)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (15, 13, CAST(N'2020-02-
05T14:52:17.000' AS DateTime), 5.0000, 39.2000, CAST(N'2020-02-
08T14:53:00.000' AS DateTime), 18, N'American Express', N'3782822463100005',
N'02/2022', 18)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (16, 14, CAST(N'2020-02-
06T07:53:42.000' AS DateTime), 10.0000, 51.9700, CAST(N'2020-02-
09T07:54:25.000' AS DateTime), 19, N'Visa', N'4111111111111111', N'01/2023',
19)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (17, 15, CAST(N'2020-02-
06T17:24:28.000' AS DateTime), 5.0000, 34.2500, CAST(N'2020-02-
09T17:25:11.000' AS DateTime), 20, N'Visa', N'4111111111111111', N'07/2024',
21)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (18, 16, CAST(N'2020-02-
06T18:41:53.000' AS DateTime), 5.0000, 34.2500, CAST(N'2020-02-
09T18:42:36.000' AS DateTime), 22, N'MasterCard', N'5555555555554444',
N'12/2021', 22)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (19, 17, CAST(N'2020-02-
08T12:21:31.000' AS DateTime), 10.0000, 117.5000, CAST(N'2020-02-
11T12:22:14.000' AS DateTime), 23, N'Visa', N'4012888888881881', N'12/2021',
23)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (20, 18, CAST(N'2020-02-
10T09:33:23.000' AS DateTime), 5.0000, 47.6000, CAST(N'2020-02-
13T09:34:06.000' AS DateTime), 24, N'Visa', N'4111111111111111', N'05/2021',
24)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (21, 19, CAST(N'2020-02-
11T08:21:32.000' AS DateTime), 10.0000, 39.2000, CAST(N'2020-02-
14T08:22:15.000' AS DateTime), 25, N'Discover', N'6011111111111117',
N'02/2023', 26)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (22, 8, CAST(N'2020-02-
12T12:26:52.000' AS DateTime), 5.0000, 84.5700, CAST(N'2020-02-
15T12:27:35.000' AS DateTime), 11, N'Visa', N'4111111111111111', N'03/2024',
12)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (23, 20, CAST(N'2020-02-
14T07:59:31.000' AS DateTime), 5.0000, 34.2500, CAST(N'2020-02-
17T08:00:14.000' AS DateTime), 27, N'Visa', N'4012888888881881', N'03/2023',
27)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (24, 21, CAST(N'2020-02-
17T17:40:22.000' AS DateTime), 5.0000, 34.2500, CAST(N'2020-02-
20T17:41:05.000' AS DateTime), 28, N'Visa', N'4111111111111111', N'04/2022',
28)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (25, 22, CAST(N'2020-02-
20T08:23:32.000' AS DateTime), 10.0000, 117.5000, CAST(N'2020-02-
23T08:24:15.000' AS DateTime), 29, N'Visa', N'4111111111111111', N'09/2022',
29)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (26, 23, CAST(N'2020-02-
20T08:14:45.000' AS DateTime), 5.0000, 0.0000, CAST(N'2020-02-23T08:15:28.000'
AS DateTime), 30, N'American Express', N'3782822463100005', N'08/2021', 30)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (27, 24, CAST(N'2020-02-
20T09:17:52.000' AS DateTime), 5.0000, 84.5700, CAST(N'2020-02-
23T09:18:35.000' AS DateTime), 31, N'Visa', N'4111111111111111', N'02/2022',
31)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (28, 25, CAST(N'2020-02-
21T17:52:24.000' AS DateTime), 5.0000, 34.3000, CAST(N'2020-02-
24T17:53:07.000' AS DateTime), 32, N'Visa', N'4111111111111111', N'08/2023',
32)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (29, 4, CAST(N'2020-02-
25T23:36:41.000' AS DateTime), 25.0000, 196.0000, CAST(N'2020-02-
28T23:37:24.000' AS DateTime), 5, N'Visa', N'4012888888881881', N'03/2021', 6)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (30, 26, CAST(N'2020-02-
27T16:21:31.000' AS DateTime), 5.0000, 26.2500, CAST(N'2020-02-
29T16:22:14.000' AS DateTime), 33, N'Visa', N'4111111111111111', N'02/2022',
33)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (31, 27, CAST(N'2020-02-
29T06:47:14.000' AS DateTime), 10.0000, 118.8200, CAST(N'2020-03-
02T06:47:57.000' AS DateTime), 34, N'Visa', N'4111111111111111', N'01/2022',
34)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (32, 18, CAST(N'2020-03-
01T01:23:23.000' AS DateTime), 5.0000, 84.5700, NULL, 24, N'Discover',
N'6011111111111117', N'02/2022', 24)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (33, 28, CAST(N'2020-03-
01T09:11:51.000' AS DateTime), 10.0000, 41.8600, CAST(N'2020-03-
04T09:12:34.000' AS DateTime), 35, N'American Express', N'3782822463100005',
N'04/2021', 35)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (34, 29, CAST(N'2020-03-
02T11:36:12.000' AS DateTime), 5.0000, 58.7500, CAST(N'2020-03-
05T11:36:55.000' AS DateTime), 36, N'Visa', N'4111111111111111', N'06/2021',
37)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (35, 30, CAST(N'2020-03-
04T03:52:23.000' AS DateTime), 5.0000, 39.2000, CAST(N'2020-03-
07T03:53:06.000' AS DateTime), 38, N'Visa', N'4111111111111111', N'09/2022',
38)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (36, 31, CAST(N'2020-03-
04T12:31:33.000' AS DateTime), 5.0000, 21.2700, CAST(N'2020-03-
07T12:32:16.000' AS DateTime), 39, N'Visa', N'4012888888881881', N'11/2022',
39)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (37, 32, CAST(N'2020-03-
06T14:15:21.000' AS DateTime), 5.0000, 84.5700, CAST(N'2020-03-
09T14:16:04.000' AS DateTime), 40, N'MasterCard', N'5555555555554444',
N'02/2021', 41)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (38, 33, CAST(N'2020-03-
08T11:41:24.000' AS DateTime), 10.0000, 117.5000, NULL, 42, N'Visa',
N'4111111111111111', N'04/2022', 43)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (39, 29, CAST(N'2020-03-
08T22:22:26.000' AS DateTime), 5.0000, 0.0000, NULL, 36, N'Visa',
N'4012888888881881', N'01/2022', 37)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (40, 34, CAST(N'2020-03-
08T21:41:29.000' AS DateTime), 5.0000, 34.2500, NULL, 44, N'American Express',
N'3782822463100005', N'08/2021', 44)
INSERT [dbo].[Orders] ([OrderID], [CustomerID], [OrderDate], [ShipAmount],
[TaxAmount], [ShipDate], [ShipAddressID], [CardType], [CardNumber],
[CardExpires], [BillingAddressID]) VALUES (41, 35, CAST(N'2020-03-
09T07:52:55.000' AS DateTime), 10.0000, 55.5200, NULL, 45, N'Visa',
N'4111111111111111', N'05/2022', 45)
SET IDENTITY_INSERT [dbo].[Orders] OFF
SET IDENTITY_INSERT [dbo].[Products] ON

INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],


[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (1, 1, N'strat', N'Fender Stratocaster', N'The Fender Stratocaster is
the electric guitar design that changed the world. New features include a
tinted neck, parchment pickguard and control knobs, and a ''70s-style logo.
Includes select alder body, 21-fret maple neck with your choice of a rosewood
or maple fretboard, 3 single-coil pickups, vintage-style tremolo, and die-cast
tuning keys. This guitar features a thicker bridge block for increased sustain
and a more stable point of contact with the strings. At this low price, why
play anything but the real thing?\r\n\r\nFeatures:\r\n\r\n* New features:\r\n*
Thicker bridge block\r\n* 3-ply parchment pick guard\r\n* Tinted neck',
699.0000, 30.0000, CAST(N'2019-03-30T09:32:40.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (2, 1, N'les_paul', N'Gibson Les Paul', N'This Les Paul guitar offers a
carved top and humbucking pickups. It has a simple yet elegant design.
Cutting-yet-rich tone?the hallmark of the Les Paul?pours out of the 490R and
498T Alnico II magnet humbucker pickups, which are mounted on a carved maple
top with a mahogany back. The faded finish models are equipped with
BurstBucker Pro pickups and a mahogany top. This guitar includes a Gibson
hardshell case (Faded and satin finish models come with a gig bag) and a
limited lifetime warranty.\r\n\r\nFeatures:\r\n\r\n* Carved maple top and
mahogany back (Mahogany top on faded finish models)\r\n* Mahogany neck, ''59
Rounded Les Paul\r\n* Rosewood fingerboard (Ebony on Alpine white)\r\n* Tune-
O-Matic bridge with stopbar\r\n* Chrome or gold hardware\r\n* 490R and 498T
Alnico 2 magnet humbucker pickups (BurstBucker Pro on faded finish models)\r\
n* 2 volume and 2 tone knobs, 3-way switch', 1199.0000, 30.0000, CAST(N'2019-
05-05T16:33:13.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (3, 1, N'sg', N'Gibson SG', N'This Gibson SG electric guitar takes the
best of the ''62 original and adds the longer and sturdier neck joint of the
late ''60s models. All the classic features you''d expect from a historic
guitar. Hot humbuckers go from rich, sweet lightning to warm, tingling waves
of sustain. A silky-fast rosewood fretboard plays like a dream. The original-
style beveled mahogany body looks like a million bucks. Plus, Tune-O-Matic
bridge and chrome hardware. Limited lifetime warranty. Includes hardshell
case.\r\n\r\nFeatures:\r\n\r\n* Double-cutaway beveled mahogany body\r\n* Set
mahogany neck with rounded ''50s profile\r\n* Bound rosewood fingerboard with
trapezoid inlays\r\n* Tune-O-Matic bridge with stopbar tailpiece\r\n* Chrome
hardware\r\n* 490R humbucker in the neck position\r\n* 498T humbucker in the
bridge position\r\n* 2 volume knobs, 2 tone knobs, 3-way switch\r\n* 24-3/4"
scale', 2517.0000, 52.0000, CAST(N'2019-07-04T11:04:31.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (4, 1, N'fg700s', N'Yamaha FG700S', N'The Yamaha FG700S solid top
acoustic guitar has the ultimate combo for projection and pure tone. The
expertly braced spruce top speaks clearly atop the rosewood body. It has a
rosewood fingerboard, rosewood bridge, die-cast tuners, body and neck binding,
and a tortoise pickguard.\r\n\r\nFeatures:\r\n\r\n* Solid Sitka spruce top\r\
n* Rosewood back and sides\r\n* Rosewood fingerboard\r\n* Rosewood bridge\r\n*
White/black body and neck binding\r\n* Die-cast tuners\r\n* Tortoise
pickguard\r\n* Limited lifetime warranty', 489.9900, 38.0000, CAST(N'2019-11-
01T11:12:59.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (5, 1, N'washburn', N'Washburn D10S', N'The Washburn D10S acoustic
guitar is superbly crafted with a solid spruce top and mahogany back and sides
for exceptional tone. A mahogany neck and rosewood fingerboard make fretwork a
breeze, while chrome Grover-style machines keep you perfectly tuned. The
Washburn D10S comes with a limited lifetime warranty.\r\n\r\nFeatures:\r\n\r\n
* Spruce top\r\n * Mahogany back, sides\r\n * Mahogany neck Rosewood
fingerboard\r\n * Chrome Grover-style machines', 299.0000, 0.0000,
CAST(N'2019-11-01T13:58:35.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (6, 1, N'rodriguez', N'Rodriguez Caballero 11', N'Featuring a carefully
chosen, solid Canadian cedar top and laminated bubinga back and sides, the
Caballero 11 classical guitar is a beauty to behold and play. The headstock
and fretboard are of Indian rosewood. Nickel-plated tuners and Silver-plated
frets are installed to last a lifetime. The body binding and wood rosette are
exquisite.\r\n\r\nThe Rodriguez Guitar is hand crafted and glued to create
precise balances. From the invisible careful sanding, even inside the body,
that ensures the finished instrument''s purity of tone, to the beautifully
unique rosette inlays around the soundhole and on the back of the neck, each
guitar is a credit to its luthier and worthy of being handed down from one
generation to another.\r\n\r\nThe tone, resonance and beauty of fine guitars
are all dependent upon the wood from which they are made. The wood used in the
construction of Rodriguez guitars is carefully chosen and aged to guarantee
the highest quality. No wood is purchased before the tree has been cut down,
and at least 2 years must elapse before the tree is turned into lumber. The
wood has to be well cut from the log. The grain must be close and absolutely
vertical. The shop is totally free from humidity.', 415.0000, 39.0000,
CAST(N'2019-12-30T14:12:41.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (7, 2, N'precision', N'Fender Precision', N'The Fender Precision bass
guitar delivers the sound, look, and feel today''s bass players demand. This
bass features that classic P-Bass old-school design. Each Precision bass
boasts contemporary features and refinements that make it an excellent value.
Featuring an alder body and a split single-coil pickup, this classic electric
bass guitar lives up to its Fender legacy.\r\n\r\nFeatures:\r\n\r\n* Body:
Alder\r\n* Neck: Maple, modern C shape, tinted satin urethane finish\r\n*
Fingerboard: Rosewood or maple (depending on color)\r\n* 9-1/2" Radius (241
mm)\r\n* Frets: 20 Medium-jumbo frets\r\n* Pickups: 1 Standard Precision Bass
split single-coil pickup (Mid)\r\n* Controls: Volume, Tone\r\n* Bridge:
Standard vintage style with single groove saddles\r\n* Machine heads:
Standard\r\n* Hardware: Chrome\r\n* Pickguard: 3-Ply Parchment\r\n* Scale
Length: 34" (864 mm)\r\n* Width at Nut: 1-5/8" (41.3 mm)\r\n* Unique features:
Knurled chrome P Bass knobs, Fender transition logo', 799.9900, 30.0000,
CAST(N'2019-12-30T11:29:35.000' AS DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (8, 2, N'hofner', N'Hofner Icon', N'With authentic details inspired by
the original, the Hofner Icon makes the legendary violin bass available to the
rest of us. Don''t get the idea that this a just a "nowhere man" look-alike.
This quality instrument features a real spruce top and beautiful flamed maple
back and sides. The semi-hollow body and set neck will give you the warm,
round tone you expect from the violin bass.\r\n\r\nFeatures:\r\n\r\n*
Authentic details inspired by the original\r\n* Spruce top\r\n* Flamed maple
back and sides\r\n* Set neck\r\n* Rosewood fretboard\r\n* 30" scale\r\n* 22
frets\r\n* Dot inlay', 499.9900, 25.0000, CAST(N'2019-12-30T14:18:33.000' AS
DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (9, 3, N'ludwig', N'Ludwig 5-piece Drum Set with Cymbals', N'This
product includes a Ludwig 5-piece drum set and a Zildjian starter cymbal
pack.\r\n\r\nWith the Ludwig drum set, you get famous Ludwig quality. This set
features a bass drum, two toms, a floor tom, and a snare?each with a wrapped
finish. Drum hardware includes LA214FP bass pedal, snare stand, cymbal stand,
hi-hat stand, and a throne.\r\n\r\nWith the Zildjian cymbal pack, you get a
14" crash, 18" crash/ride, and a pair of 13" hi-hats. Sound grooves and round
hammer strikes in a simple circular pattern on the top surface of these
cymbals magnify the basic sound of the distinctive alloy.\r\n\r\nFeatures:\r\
n\r\n* Famous Ludwig quality\r\n* Wrapped finishes\r\n* 22" x 16" kick drum\r\
n* 12" x 10" and 13" x 11" toms\r\n* 16" x 16" floor tom\r\n* 14" x 6-1/2"
snare drum kick pedal\r\n* Snare stand\r\n* Straight cymbal stand hi-hat
stand\r\n* FREE throne', 699.9900, 30.0000, CAST(N'2019-12-30T12:46:40.000' AS
DateTime))
INSERT [dbo].[Products] ([ProductID], [CategoryID], [ProductCode],
[ProductName], [Description], [ListPrice], [DiscountPercent], [DateAdded])
VALUES (10, 3, N'tama', N'Tama 5-Piece Drum Set with Cymbals', N'The Tama 5-
piece Drum Set is the most affordable Tama drum kit ever to incorporate so
many high-end features.\r\n\r\nWith over 40 years of experience, Tama knows
what drummers really want. Which is why, no matter how long you''ve been
playing the drums, no matter what budget you have to work with, Tama has the
set you need, want, and can afford. Every aspect of the modern drum kit was
exhaustively examined and reexamined and then improved before it was accepted
as part of the Tama design. Which is why, if you start playing Tama now as a
beginner, you''ll still enjoy playing it when you''ve achieved pro-status.
That''s how good these groundbreaking new drums are.\r\n\r\nOnly Tama comes
with a complete set of genuine Meinl HCS cymbals. These high-quality brass
cymbals are made in Germany and are sonically matched so they sound great
together. They are even lathed for a more refined tonal character. The set
includes 14" hi-hats, 16" crash cymbal, and a 20" ride cymbal.\r\n\r\
nFeatures:\r\n\r\n* 100% poplar 6-ply/7.5mm shells\r\n* Precise bearing edges\
r\n* 100% glued finishes\r\n* Original small lugs\r\n* Drum heads\r\n* Accu-
tune bass drum hoops\r\n* Spur brackets\r\n* Tom holder\r\n* Tom brackets',
799.9900, 15.0000, CAST(N'2019-12-30T13:14:15.000' AS DateTime))
SET IDENTITY_INSERT [dbo].[Products] OFF
SET ANSI_PADDING ON
GO
/****** Object: Index [UQ__Categori__8517B2E077A1C728] Script Date:
3/5/2020 4:09:44 PM ******/
ALTER TABLE [dbo].[Categories] ADD UNIQUE NONCLUSTERED
(
[CategoryName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF,
IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS =
ON) ON [PRIMARY]
GO
SET ANSI_PADDING ON
GO
/****** Object: Index [UQ__Customer__49A14740B045D30B] Script Date:
3/5/2020 4:09:44 PM ******/
ALTER TABLE [dbo].[Customers] ADD UNIQUE NONCLUSTERED
(
[EmailAddress] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF,
IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS =
ON) ON [PRIMARY]
GO
SET ANSI_PADDING ON
GO
/****** Object: Index [UQ__Products__2F4E024F13698D9E] Script Date:
3/5/2020 4:09:44 PM ******/
ALTER TABLE [dbo].[Products] ADD UNIQUE NONCLUSTERED
(
[ProductCode] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF,
IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS =
ON) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Addresses] ADD DEFAULT (NULL) FOR [Line2]
GO
ALTER TABLE [dbo].[Addresses] ADD DEFAULT ((0)) FOR [Disabled]
GO
ALTER TABLE [dbo].[Customers] ADD DEFAULT (NULL) FOR [ShippingAddressID]
GO
ALTER TABLE [dbo].[Customers] ADD DEFAULT (NULL) FOR [BillingAddressID]
GO
ALTER TABLE [dbo].[Orders] ADD DEFAULT (NULL) FOR [ShipDate]
GO
ALTER TABLE [dbo].[Products] ADD DEFAULT ((0.00)) FOR [DiscountPercent]
GO
ALTER TABLE [dbo].[Products] ADD DEFAULT (NULL) FOR [DateAdded]
GO
ALTER TABLE [dbo].[Addresses] WITH CHECK ADD FOREIGN KEY([CustomerID])
REFERENCES [dbo].[Customers] ([CustomerID])
GO
ALTER TABLE [dbo].[OrderItems] WITH CHECK ADD FOREIGN KEY([OrderID])
REFERENCES [dbo].[Orders] ([OrderID])
GO
ALTER TABLE [dbo].[OrderItems] WITH CHECK ADD FOREIGN KEY([ProductID])
REFERENCES [dbo].[Products] ([ProductID])
GO
ALTER TABLE [dbo].[Orders] WITH CHECK ADD FOREIGN KEY([CustomerID])
REFERENCES [dbo].[Customers] ([CustomerID])
GO
ALTER TABLE [dbo].[Products] WITH CHECK ADD FOREIGN KEY([CategoryID])
REFERENCES [dbo].[Categories] ([CategoryID])
GO
-- Code for Question 1 (fetch directly to the Results tab)
DECLARE ShipCursor CURSOR FOR
SELECT LastName, AVG(ShipAmount) AS ShipAmountAvg
FROM Customers
JOIN Orders ON [Link] = [Link]
GROUP BY LastName;

DECLARE @LastName NVARCHAR(50);


DECLARE @ShipAmountAvg DECIMAL(10, 2);

OPEN ShipCursor;

FETCH NEXT FROM ShipCursor INTO @LastName, @ShipAmountAvg;

WHILE @@FETCH_STATUS = 0
BEGIN
-- Output each row directly to the Results tab
SELECT @LastName AS 'Last Name', @ShipAmountAvg AS 'Average Ship Amount';

FETCH NEXT FROM ShipCursor INTO @LastName, @ShipAmountAvg;


END;

CLOSE ShipCursor;
DEALLOCATE ShipCursor;

-- Starting index of Question 2 code: 22


-- Code for Question 2 (fetch into local variables and print to Messages tab)
DECLARE ShipCursor2 CURSOR FOR
SELECT LastName, AVG(ShipAmount) AS ShipAmountAvg
FROM Customers
JOIN Orders ON [Link] = [Link]
GROUP BY LastName;

DECLARE @LastName2 NVARCHAR(50);


DECLARE @ShipAmountAvg2 DECIMAL(10, 2);

OPEN ShipCursor2;
FETCH NEXT FROM ShipCursor2 INTO @LastName2, @ShipAmountAvg2;

WHILE @@FETCH_STATUS = 0
BEGIN
-- Print each row in the format "Name, $0.00"
PRINT @LastName2 + ', $' + FORMAT(@ShipAmountAvg2, '0.00');

FETCH NEXT FROM ShipCursor2 INTO @LastName2, @ShipAmountAvg2;


END;

CLOSE ShipCursor2;
DEALLOCATE ShipCursor2;

3)Explain the following: (6 points)

a) What is the advantage of using cursors?

Cursors grant the developer the capability to process every row in the result set individually. It's
helpful when one needs to process just one row at a time; such processes cannot effectively be done
in set-based operations, like SELECT statements. Cursors provide greater control over the processing
of each individual row.

b) What do we gain by using cursors?

We can loop through each row of a result set one by one.

Perform some kind of manipulation on a row-by-row basis; that is, update, print, or log.

Deal with complex logic that probably needs to be applied at a row level.

c) What is the purpose of using global variables in cursors?

Global variables might hold states or results of the cursor operations and make them available
outside of the local scope of the cursor. These come in handy when one needs either to save data
after a cursor has been closed or to pass the data across different processes. Global variables ensure
the data can be accessed throughout the session, not just within the cursor logic.

Screenshots:

You might also like