You are on page 1of 96

MySQL_Exercise_03_Formatting_Selected_Data

June 16, 2020

Copyright Jana Schaich Borg/Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)

1 MySQL Exercise 3: Formatting Selected Data

In this lesson, we are going to learn about three SQL clauses or functionalities that will help you
format and edit the output of your queries. We will also learn how to export the results of your
formatted queries to a text file so that you can analyze them in other software packages such as
Tableau or Excel.
Begin by loading the SQL library into Jupyter, connecting to the Dognition database,
and setting Dognition as the default database.
%load_ext sql
%sql mysql://studentuser:studentpw@localhost/dognitiondb
%sql USE dognitiondb

[2]: %load_ext sql


%sql mysql://studentuser:studentpw@localhost/dognitiondb
%sql USE dognitiondb

* mysql://studentuser:***@localhost/dognitiondb
0 rows affected.

[2]: []

1.1 1. Use AS to change the titles of the columns in your output

The AS clause allows you to assign an alias (a temporary name) to a table or a column in a table.
Aliases can be useful for increasing the readability of queries, for abbreviating long names, and for
changing column titles in query outputs. To implement the AS clause, include it in your query code
immediately after the column or table you want to rename. For example, if you wanted to change
the name of the time stamp field of the completed_tests table from “created_at” to “time_stamp”
in your output, you could take advantage of the AS clause and execute the following query:
SELECT dog_guid, created_at AS time_stamp
FROM complete_tests
Note that if you use an alias that includes a space, the alias must be surrounded in quotes:

1
SELECT dog_guid, created_at AS "time stamp"
FROM complete_tests
You could also make an alias for a table:
SELECT dog_guid, created_at AS "time stamp"
FROM complete_tests AS tests
Since aliases are strings, again, MySQL accepts both double and single quotation marks, but some
database systems only accept single quotation marks. It is good practice to avoid using SQL
keywords in your aliases, but if you have to use an SQL keyword in your alias for some reason, the
string must be enclosed in backticks instead of quotation marks.
Question 1: How would you change the title of the “start_time” field in the
exam_answers table to “exam start time” in a query output? Try it below:
[5]: %%sql
SELECT start_time AS "exam start time"
FROM exam_answers;

* mysql://studentuser:***@localhost/dognitiondb
2460320 rows affected.

1.2 2. Use DISTINCT to remove duplicate rows

Especially in databases like the Dognition database where no primary keys were declared in each
table, sometimes entire duplicate rows can be entered in error. Even with no duplicate rows present,
sometimes your queries correctly output multiple instances of the same value in a column, but you
are interested in knowing what the different possible values in the column are, not what each value
in each row is. In both of these cases, the best way to arrive at the clean results you want is to
instruct the query to return only values that are distinct, or different from all the rest. The SQL
keyword that allows you to do this is called DISTINCT. To use it in a query, place it directly after
the word SELECT in your query.
For example, if we wanted a list of all the breeds of dogs in the Dognition database, we could try
the following query from a previous exercise:
SELECT breed
FROM dogs;
However, the output of this query would not be very helpful, because it would output the entry for
every single row in the breed column of the dogs table, regardless of whether it duplicated the breed
of a previous entry. Fortunately, we could arrive at the list we want by executing the following
query with the DISTINCT modifier:
SELECT DISTINCT breed
FROM dogs;
Try it yourself (If you do not limit your output, you should get 2006 rows in your
output):

2
[10]: %%sql
SELECT DISTINCT breed, breed_type, birthday
FROM dogs;

* mysql://studentuser:***@localhost/dognitiondb
5928 rows affected.

[10]: [('Labrador Retriever', 'Pure Breed', '2011'),


('Shetland Sheepdog', 'Pure Breed', '2007'),
('Golden Retriever', 'Pure Breed', '2012'),
('Golden Retriever', 'Pure Breed', '2011'),
('Shih Tzu', 'Pure Breed', '2010'),
('Siberian Husky', 'Pure Breed', '2011'),
('Shih Tzu', 'Pure Breed', '1982'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2012'),
('Labrador Retriever', 'Pure Breed', '2008'),
('Shih Tzu-Poodle Mix', 'Cross Breed', '2008'),
('German Shepherd Dog-Pembroke Welsh Corgi Mix', 'Cross Breed', '2011'),
('Vizsla', 'Pure Breed', '2011'),
('Pug', 'Pure Breed', '2007'),
('Boxer', 'Pure Breed', '2010'),
('German Shepherd Dog-Nova Scotia Duck Tolling Retriever Mix', 'Cross Breed',
'2010'),
('Beagle', 'Pure Breed', '2005'),
('Beagle', 'Pure Breed', '2000'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2000'),
('Chesapeake Bay Retriever', 'Pure Breed', '2010'),
('Border Collie', 'Pure Breed', '2006'),
('Belgian Malinois', 'Pure Breed', '2013'),
('Australian Shepherd-German Shepherd Dog Mix', 'Cross Breed', '2009'),
('Poodle', 'Pure Breed', '2004'),
('Poodle', 'Pure Breed', '2005'),
('Golden Doodle', 'Popular Hybrid', '2008'),
('German Shepherd Dog', 'Pure Breed', '2012'),
('Weimaraner', 'Pure Breed', '2011'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2011'),
('Bouvier des Flandres', 'Pure Breed', '2011'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2006'),
('German Shepherd Dog', 'Pure Breed', '2011'),
('Beagle', 'Pure Breed', '2008'),
('Mudi', 'Pure Breed', '2009'),
('Parson Russell Terrier-Beagle Mix', 'Cross Breed', '2008'),
('Dalmatian', 'Pure Breed', '2013'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2004'),
('Border Collie-Labrador Retriever Mix', 'Cross Breed', '2000'),
('Belgian Tervuren', 'Pure Breed', '2008'),
('Labrador Retriever', 'Pure Breed', '2005'),

3
('Shih Tzu', 'Pure Breed', '2012'),
('Australian Terrier', 'Pure Breed', '2011'),
('Golden Retriever', 'Pure Breed', '2009'),
('Bernese Mountain Dog', 'Pure Breed', '2010'),
('Chihuahua- Mix', 'Cross Breed', '2009'),
('Shetland Sheepdog', 'Pure Breed', '2008'),
('Shetland Sheepdog', 'Pure Breed', '2010'),
('Chihuahua-Dachshund Mix', 'Cross Breed', '2011'),
('Finnish Spitz', 'Pure Breed', '2012'),
('Siberian Husky', 'Pure Breed', '2001'),
('Rottweiler', 'Pure Breed', '2011'),
('Pembroke Welsh Corgi', 'Pure Breed', '2013'),
('Brussels Griffon', 'Pure Breed', '2008'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2010'),
('French Bulldog', 'Pure Breed', '2011'),
('French Bulldog', 'Pure Breed', '2008'),
('Shih Tzu', 'Pure Breed', '2008'),
('Doberman Pinscher', 'Pure Breed', '2009'),
('German Shepherd Dog', 'Pure Breed', '2007'),
('Pembroke Welsh Corgi', 'Pure Breed', '2010'),
('English Cocker Spaniel-Cocker Spaniel Mix', 'Cross Breed', '2010'),
('Rottweiler', 'Pure Breed', '2010'),
('Cavalier King Charles Spaniel-Bichon Frise Mix', 'Cross Breed', '2010'),
('Bedlington Terrier', 'Pure Breed', '2006'),
('Labrador Retriever', 'Pure Breed', '2009'),
('Russell Terrier', 'Pure Breed', '2001'),
('Poodle', 'Pure Breed', '2010'),
('Irish Setter', 'Pure Breed', '2004'),
('German Shepherd Dog', 'Pure Breed', '2008'),
('Irish Setter', 'Pure Breed', '2006'),
('Poodle', 'Pure Breed', '2007'),
('Irish Red and White Setter', 'Pure Breed', '2012'),
('Poodle-Cocker Spaniel Mix', 'Cross Breed', '2010'),
('American Pit Bull Terrier', 'Pure Breed', '2011'),
('Golden Retriever', 'Pure Breed', '2010'),
('Beagle-Schipperke Mix', 'Cross Breed', '2011'),
('Greyhound', 'Pure Breed', '2010'),
('Labrador Retriever-Golden Retriever Mix', 'Cross Breed', '2002'),
('Boston Terrier-Chihuahua Mix', 'Cross Breed', '2011'),
('Beagle-Cavalier King Charles Spaniel Mix', 'Cross Breed', '2011'),
('Boxer', 'Pure Breed', '2011'),
('Pug', 'Pure Breed', '2002'),
('Labradoodle', 'Popular Hybrid', '2008'),
('Pembroke Welsh Corgi', 'Pure Breed', '2011'),
('Cocker Spaniel', 'Pure Breed', '2011'),
('Labrador Retriever-Border Collie Mix', 'Cross Breed', '2011'),
('Lhasa Apso-Poodle Mix', 'Cross Breed', '2007'),

4
('English Springer Spaniel', 'Pure Breed', '2008'),
('English Springer Spaniel', 'Pure Breed', '2007'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2008'),
('Shih Tzu', 'Pure Breed', '2009'),
('Neapolitan Mastiff', 'Pure Breed', '2012'),
('Rat Terrier', 'Pure Breed', '2011'),
('Border Terrier', 'Pure Breed', '2005'),
('Collie-Shetland Sheepdog Mix', 'Cross Breed', '2009'),
('Dachshund', 'Pure Breed', '2007'),
('Dachshund', 'Pure Breed', '2009'),
('Golden Retriever-Collie Mix', 'Cross Breed', '2007'),
('Labrador Retriever', 'Pure Breed', '2010'),
('American Eskimo Dog-Papillon Mix', 'Cross Breed', '2012'),
('Papillon', 'Pure Breed', '2005'),
('Pomeranian', 'Pure Breed', '2010'),
('German Shepherd Dog-Belgian Tervuren Mix', 'Cross Breed', '2001'),
('German Shepherd Dog', 'Pure Breed', '2013'),
('Maltese-Yorkshire Terrier Mix', 'Cross Breed', '1997'),
('Australian Shepherd', 'Pure Breed', '2009'),
('Shiba Inu', 'Pure Breed', '2011'),
('Rat Terrier', 'Pure Breed', '2008'),
('Poodle', 'Pure Breed', '2008'),
('Border Collie-Greyhound Mix', 'Cross Breed', '2006'),
('Poodle', 'Pure Breed', '2006'),
('Labradoodle', 'Popular Hybrid', '2007'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2001'),
('Maltese-Poodle Mix', 'Cross Breed', '2009'),
('Siberian Husky-German Shepherd Dog Mix', 'Cross Breed', '2012'),
('Chihuahua', 'Pure Breed', '2012'),
('Golden Retriever-German Shepherd Dog Mix', 'Cross Breed', '2012'),
('Parson Russell Terrier', 'Pure Breed', '2011'),
('Rhodesian Ridgeback', 'Pure Breed', '2009'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2009'),
('Chihuahua', 'Pure Breed', '2009'),
('West Highland White Terrier', 'Pure Breed', '2013'),
('Poodle-Miniature Schnauzer Mix', 'Cross Breed', '2011'),
('Maltese-Poodle Mix', 'Cross Breed', '2011'),
('Yorkshire Terrier-Poodle Mix', 'Cross Breed', '2012'),
('Vizsla', 'Pure Breed', '2005'),
('Golden Retriever', 'Pure Breed', '2006'),
('Labradoodle', 'Popular Hybrid', '2009'),
('Silky Terrier-Poodle Mix', 'Cross Breed', '2010'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2004'),
('Russell Terrier-Miniature Pinscher Mix', 'Cross Breed', '2009'),
('Bernese Mountain Dog', 'Pure Breed', '2004'),
('Bernese Mountain Dog', 'Pure Breed', '2008'),
('Yorkshire Terrier', 'Pure Breed', '2004'),

5
('Australian Cattle Dog- Mix', 'Cross Breed', '2008'),
('Flat-Coated Retriever', 'Pure Breed', '2012'),
('Staffordshire Bull Terrier-Bulldog Mix', 'Cross Breed', '2006'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2007'),
('Kooikerhondje', 'Pure Breed', '2011'),
('Labrador Retriever-Golden Retriever Mix', 'Cross Breed', '2005'),
('German Shepherd Dog-Border Collie Mix', 'Cross Breed', '2009'),
('Shih Tzu', 'Pure Breed', '2011'),
('American Staffordshire Terrier', 'Pure Breed', '2005'),
('Bulldog', 'Pure Breed', '2011'),
('Labrador Retriever', 'Pure Breed', '2003'),
('Cardigan Welsh Corgi-German Shepherd Dog Mix', 'Cross Breed', '2009'),
('Doberman Pinscher-German Shepherd Dog Mix', 'Cross Breed', '2011'),
('Canaan Dog- Mix', 'Cross Breed', '2007'),
('Beagle', 'Pure Breed', '2011'),
('Rhodesian Ridgeback', 'Pure Breed', '2010'),
('Miniature Schnauzer', 'Pure Breed', '2012'),
('Russell Terrier-Pug Mix', 'Cross Breed', '2011'),
('Australian Cattle Dog-Border Collie Mix', 'Cross Breed', '2011'),
('English Cocker Spaniel', 'Pure Breed', '2008'),
('Australian Shepherd', 'Pure Breed', '2011'),
('Parson Russell Terrier', 'Pure Breed', '2009'),
('Boxer', 'Pure Breed', '2012'),
('Chihuahua-Dachshund Mix', 'Cross Breed', '2010'),
('Australian Cattle Dog', 'Pure Breed', '2008'),
('Border Collie-Australian Shepherd Mix', 'Cross Breed', '2004'),
('Miniature Schnauzer', 'Pure Breed', '2011'),
('Australian Shepherd-Border Collie Mix', 'Cross Breed', '2009'),
('Poodle', 'Pure Breed', '2012'),
('French Spaniel', 'Pure Breed', '2003'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2013'),
('Italian Greyhound', 'Pure Breed', '2010'),
('Weimaraner', 'Pure Breed', '2013'),
('Leonberger', 'Pure Breed', '2011'),
('German Shepherd Dog', 'Pure Breed', '2010'),
('Portuguese Water Dog', 'Pure Breed', '2009'),
('Boykin Spaniel', 'Pure Breed', '2005'),
('Labrador Retriever', 'Pure Breed', '2006'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2004'),
('Bulldog', 'Pure Breed', '2006'),
('Boston Terrier', 'Pure Breed', '2004'),
('Shih Tzu', 'Pure Breed', '2013'),
('Brittany', 'Pure Breed', '2011'),
('Bernese Mountain Dog', 'Pure Breed', '2011'),
('Golden Retriever-Labrador Retriever Mix', 'Cross Breed', '2011'),
('Golden Retriever-Labrador Retriever Mix', 'Cross Breed', '2013'),
('Australian Cattle Dog', 'Pure Breed', '2011'),

6
('Labrador Retriever-Chinese Shar-Pei Mix', 'Cross Breed', '2008'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2006'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2004'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2005'),
('Siberian Husky', 'Pure Breed', '2010'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '1999'),
('Lhasa Apso', 'Pure Breed', '2009'),
('Australian Shepherd', 'Pure Breed', '2012'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2003'),
('American Eskimo Dog', 'Pure Breed', '2012'),
('Keeshond', 'Pure Breed', '2012'),
('Bull Terrier', 'Pure Breed', '2011'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2003'),
('Boston Terrier', 'Pure Breed', '2012'),
('Poodle', 'Pure Breed', '2009'),
('German Shepherd Dog', 'Pure Breed', '2009'),
('Shih Tzu-Maltese Mix', 'Cross Breed', '2009'),
('Chesapeake Bay Retriever', 'Pure Breed', '2004'),
('Cocker Spaniel', 'Pure Breed', '2013'),
('Maltese', 'Pure Breed', '2002'),
('Cockapoo', 'Popular Hybrid', '2004'),
('Chihuahua-Miniature Pinscher Mix', 'Cross Breed', '2012'),
('Australian Cattle Dog', 'Pure Breed', '2012'),
('Maltese-Poodle Mix', 'Cross Breed', '2006'),
('Maltese-Shih Tzu Mix', 'Cross Breed', '2007'),
('Boxer', 'Pure Breed', '2009'),
('Dachshund-Miniature Pinscher Mix', 'Cross Breed', '2012'),
('Miniature American Shepherd', 'Pure Breed', '2012'),
('Golden Retriever', 'Pure Breed', '2013'),
('Border Collie', 'Pure Breed', '2011'),
('Labrador Retriever-Australian Cattle Dog Mix', 'Cross Breed', '2008'),
('Shih Tzu', 'Pure Breed', '2003'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2010'),
('Golden Retriever', 'Pure Breed', '2008'),
('Chihuahua', 'Pure Breed', '2008'),
('Affenpinscher', 'Pure Breed', '2012'),
('Keeshond', 'Pure Breed', '2009'),
('English Setter', 'Pure Breed', '2006'),
('Miniature Schnauzer-Poodle Mix', 'Cross Breed', '2011'),
('Havanese', 'Pure Breed', '2009'),
('Border Collie', 'Pure Breed', '2010'),
('Boxer', 'Pure Breed', '2008'),
('Labrador Retriever-Cane Corso Mix', 'Cross Breed', '2011'),
('Miniature Schnauzer', 'Pure Breed', '2009'),
('Bichon Frise-Shih Tzu Mix', 'Cross Breed', '2010'),
('Pug', 'Pure Breed', '2005'),
('Pointer-Labrador Retriever Mix', 'Cross Breed', '2002'),

7
('Labrador Retriever-Basenji Mix', 'Cross Breed', '2008'),
('Poodle', 'Pure Breed', '2013'),
('Golden Retriever', 'Pure Breed', '2004'),
('Australian Cattle Dog', 'Pure Breed', '2006'),
('Golden Doodle', 'Popular Hybrid', '2009'),
('Pembroke Welsh Corgi-Russell Terrier Mix', 'Cross Breed', '2009'),
('Border Collie-Labrador Retriever Mix', 'Cross Breed', '2006'),
('Bulldog-Beagle Mix', 'Cross Breed', '2011'),
('Bulldog', 'Pure Breed', '2008'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2007'),
('English Cocker Spaniel', 'Pure Breed', '2007'),
('Golden Retriever', 'Pure Breed', '2002'),
('Poodle-Maltese Mix', 'Cross Breed', '2008'),
('Great Dane-Labrador Retriever Mix', 'Cross Breed', '2006'),
('Boxer', 'Pure Breed', '2005'),
('Havanese', 'Pure Breed', '2011'),
('Brittany-Poodle Mix', 'Cross Breed', '2010'),
('Scottish Terrier', 'Pure Breed', '2008'),
('Weimaraner', 'Pure Breed', '2001'),
('Weimaraner', 'Pure Breed', '2010'),
('West Highland White Terrier', 'Pure Breed', '2007'),
('Labradoodle', 'Popular Hybrid', '2012'),
('Beagle', 'Pure Breed', '2007'),
('Labrador Retriever-Cardigan Welsh Corgi Mix', 'Cross Breed', '2012'),
('Bearded Collie-Tibetan Terrier Mix', 'Cross Breed', '2005'),
('Australian Shepherd', 'Pure Breed', '2002'),
('Beagle', 'Pure Breed', '2009'),
('German Shepherd Dog', 'Pure Breed', '2006'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2011'),
('Miniature American Shepherd', 'Pure Breed', '2013'),
('Great Dane', 'Pure Breed', '2005'),
('Golden Retriever-Labrador Retriever Mix', 'Cross Breed', '2006'),
('Icelandic Sheepdog', 'Pure Breed', '2012'),
('Golden Retriever', 'Pure Breed', '2007'),
('Dachshund', 'Pure Breed', '2011'),
('German Shorthaired Pointer-Labrador Retriever Mix', 'Cross Breed', '2009'),
('Miniature Schnauzer', 'Pure Breed', '2010'),
('Pug-Chihuahua Mix', 'Cross Breed', '2010'),
('Cockapoo', 'Popular Hybrid', '2006'),
('Weimaraner', 'Pure Breed', '2000'),
('Yorkshire Terrier-Bichon Frise Mix', 'Cross Breed', '2009'),
('Cockapoo', 'Popular Hybrid', '2010'),
('Border Collie', 'Pure Breed', '2009'),
('Golden Retriever', 'Pure Breed', '2003'),
('Cairn Terrier', 'Pure Breed', '2005'),
('Yorkshire Terrier- Mix', 'Cross Breed', '2009'),
('German Shepherd Dog', 'Pure Breed', '2004'),

8
('Belgian Sheepdog- Mix', 'Cross Breed', '2001'),
('Australian Cattle Dog-Border Collie Mix', 'Cross Breed', '2010'),
('Old English Sheepdog', 'Pure Breed', '2009'),
('West Highland White Terrier', 'Pure Breed', '2008'),
('Boston Terrier', 'Pure Breed', '2013'),
('American Pit Bull Terrier-American Staffordshire Terrier Mix', 'Cross Breed',
'2011'),
('American Pit Bull Terrier-American Staffordshire Terrier Mix', 'Cross Breed',
'2013'),
('Danish-Swedish Farmdog', 'Pure Breed', '2008'),
('Cardigan Welsh Corgi', 'Pure Breed', '2002'),
('Labradoodle', 'Popular Hybrid', '2013'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2011'),
('Beagle', 'Pure Breed', '2012'),
('Bichon Frise-Cavalier King Charles Spaniel Mix', 'Cross Breed', '2011'),
('Golden Doodle', 'Popular Hybrid', '2011'),
('Labrador Retriever', 'Pure Breed', '2013'),
('French Bulldog', 'Pure Breed', '2013'),
('Cockapoo', 'Popular Hybrid', '2005'),
('Rhodesian Ridgeback-Boxer Mix', 'Cross Breed', '2008'),
('Poodle-Cavalier King Charles Spaniel Mix', 'Cross Breed', '2011'),
('Beagle-Australian Cattle Dog Mix', 'Cross Breed', '2001'),
('Labrador Retriever-Rottweiler Mix', 'Cross Breed', '2005'),
('Pomeranian', 'Pure Breed', '2000'),
('Yorkshire Terrier', 'Pure Breed', '2009'),
('Shih Tzu', 'Pure Breed', '2006'),
('Dalmatian', 'Pure Breed', '2010'),
('Chow Chow-Golden Retriever Mix', 'Cross Breed', '2002'),
('German Shepherd Dog-Beagle Mix', 'Cross Breed', '2005'),
('Siberian Husky', 'Pure Breed', '2002'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2010'),
('American Staffordshire Terrier-Labrador Retriever Mix', 'Cross Breed',
'2010'),
('Yorkshire Terrier', 'Pure Breed', '2008'),
('Affenpinscher', 'Pure Breed', '2013'),
('Maltese', 'Pure Breed', '2011'),
('Border Terrier- Mix', 'Cross Breed', '2011'),
('Scottish Terrier', 'Pure Breed', '2006'),
('English Setter', 'Pure Breed', '2013'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2011'),
('Havanese', 'Pure Breed', '2006'),
('Havanese', 'Pure Breed', '2007'),
('Havanese', 'Pure Breed', '2012'),
('Border Terrier', 'Pure Breed', '2004'),
('Border Terrier', 'Pure Breed', '2012'),
('Australian Shepherd', 'Pure Breed', '2010'),
('Bulldog', 'Pure Breed', '2010'),

9
('Coton de Tulear', 'Pure Breed', '2009'),
('Cardigan Welsh Corgi', 'Pure Breed', '2004'),
('Russell Terrier', 'Pure Breed', '2007'),
('Greyhound', 'Pure Breed', '2002'),
('American Water Spaniel', 'Pure Breed', '2007'),
('Russell Terrier-Chihuahua Mix', 'Cross Breed', '2010'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2008'),
('Mastiff', 'Pure Breed', '2007'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2007'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2009'),
('Beagle', 'Pure Breed', '2010'),
('Miniature Schnauzer', 'Pure Breed', '2002'),
('Labradoodle', 'Popular Hybrid', '2010'),
('Australian Shepherd-Golden Retriever Mix', 'Cross Breed', '2009'),
('German Shorthaired Pointer', 'Pure Breed', '2009'),
('German Shorthaired Pointer', 'Pure Breed', '2005'),
('German Shorthaired Pointer', 'Pure Breed', '2002'),
('German Shorthaired Pointer', 'Pure Breed', '2006'),
('Border Collie-Belgian Tervuren Mix', 'Cross Breed', '2013'),
('American Staffordshire Terrier-Australian Shepherd Mix', 'Cross Breed',
'2011'),
('Pekingese-Dachshund Mix', 'Cross Breed', '2004'),
('German Shepherd Dog-Siberian Husky Mix', 'Cross Breed', '2012'),
('Golden Doodle', 'Popular Hybrid', '2012'),
('Rat Terrier', 'Pure Breed', '2010'),
('Chihuahua', 'Pure Breed', '2010'),
('Portuguese Water Dog', 'Pure Breed', '2011'),
('Rottweiler- Mix', 'Cross Breed', '2004'),
('Labrador Retriever', 'Pure Breed', '2001'),
('Labrador Retriever', 'Pure Breed', '2012'),
('Pug-Maltese Mix', 'Cross Breed', '2010'),
('Boston Terrier', 'Pure Breed', '2011'),
('Cairn Terrier', 'Pure Breed', '2013'),
('English Springer Spaniel', 'Pure Breed', '2010'),
('Maltese', 'Pure Breed', '2010'),
('Siberian Husky-Australian Shepherd Mix', 'Cross Breed', '2009'),
('Chihuahua', 'Pure Breed', '2007'),
('Whippet', 'Pure Breed', '2012'),
('Boston Terrier-Bulldog Mix', 'Cross Breed', '2009'),
('Portuguese Water Dog', 'Pure Breed', '2005'),
('Border Collie-Dalmatian Mix', 'Cross Breed', '2008'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2012'),
('Cocker Spaniel', 'Pure Breed', '2008'),
('Welsh Springer Spaniel', 'Pure Breed', '2009'),
('Poodle-Old English Sheepdog Mix', 'Cross Breed', '2012'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '2002'),
('Border Terrier', 'Pure Breed', '2013'),

10
('Staffordshire Bull Terrier', 'Pure Breed', '2004'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2012'),
('Border Collie-Staffordshire Bull Terrier Mix', 'Cross Breed', '2007'),
('Siberian Husky', 'Pure Breed', '2012'),
('English Springer Spaniel', 'Pure Breed', '2009'),
('Australian Cattle Dog- Mix', 'Cross Breed', '2007'),
('Boxer', 'Pure Breed', '2007'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2008'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2008'),
('Bichon Frise-Poodle Mix', 'Cross Breed', '2011'),
('Shetland Sheepdog', 'Pure Breed', '2002'),
('Shetland Sheepdog', 'Pure Breed', '2011'),
('German Shorthaired Pointer-Catahoula Leopard Dog Mix', 'Cross Breed',
'2008'),
('Alaskan Malamute-Collie Mix', 'Cross Breed', '2006'),
('Doberman Pinscher', 'Pure Breed', '2007'),
('Collie', 'Pure Breed', '2005'),
('Weimaraner', 'Pure Breed', '2009'),
('Coton de Tulear', 'Pure Breed', '2011'),
('Golden Retriever-Newfoundland Mix', 'Cross Breed', '2008'),
('Border Collie', 'Pure Breed', '2008'),
('American Staffordshire Terrier', 'Pure Breed', '2011'),
('Greyhound', 'Pure Breed', '2009'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2006'),
('Boxer-American Staffordshire Terrier Mix', 'Cross Breed', '2013'),
('Miniature Schnauzer', 'Pure Breed', '2013'),
('Cavalier King Charles Spaniel-Poodle Mix', 'Cross Breed', '2011'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2005'),
('Boston Terrier', 'Pure Breed', '2006'),
('German Shepherd Dog', 'Pure Breed', '2002'),
('Norfolk Terrier', 'Pure Breed', '2002'),
('Norfolk Terrier', 'Pure Breed', '2009'),
('Labrador Retriever-Rottweiler Mix', 'Cross Breed', '2011'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2009'),
('Staffordshire Bull Terrier-Great Dane Mix', 'Cross Breed', '2009'),
('Wire Fox Terrier', 'Pure Breed', '2008'),
('French Spaniel', 'Pure Breed', '2012'),
('Samoyed', 'Pure Breed', '2006'),
('Coton de Tulear', 'Pure Breed', '2010'),
('Poodle-Maltese Mix', 'Cross Breed', '2011'),
('Maltese-Yorkshire Terrier Mix', 'Cross Breed', '2011'),
('Collie', 'Pure Breed', '2010'),
('Labrador Retriever-German Shepherd Dog Mix', 'Cross Breed', '2012'),
('Pekingese-Shih Tzu Mix', 'Cross Breed', '2009'),
('Shih Tzu', 'Pure Breed', '2002'),
('Rhodesian Ridgeback', 'Pure Breed', '2007'),
('Dalmatian', 'Pure Breed', '2011'),

11
('Dalmatian', 'Pure Breed', '2007'),
('Staffordshire Bull Terrier-Miniature Schnauzer Mix', 'Cross Breed', '2010'),
('Greyhound', 'Pure Breed', '2006'),
('Shetland Sheepdog', 'Pure Breed', '2009'),
('Puggle', 'Popular Hybrid', '2013'),
('Cockapoo', 'Popular Hybrid', '2012'),
('Beagle- Mix', 'Cross Breed', '2010'),
('Rhodesian Ridgeback', 'Pure Breed', '2011'),
('Havanese', 'Pure Breed', '2005'),
('Yorkshire Terrier', 'Pure Breed', '2010'),
('Dalmatian', 'Pure Breed', '2004'),
('Belgian Malinois', 'Pure Breed', '2006'),
('Rhodesian Ridgeback', 'Pure Breed', '2008'),
('Labradoodle', 'Popular Hybrid', '2006'),
('Australian Shepherd', 'Pure Breed', '2003'),
('Australian Shepherd-Australian Cattle Dog Mix', 'Cross Breed', '2011'),
('French Bulldog', 'Pure Breed', '2012'),
('Boston Terrier', 'Pure Breed', '2010'),
('Pomeranian', 'Pure Breed', '2011'),
('Whippet', 'Pure Breed', '2010'),
('Border Collie', 'Pure Breed', '2004'),
('Border Collie', 'Pure Breed', '2007'),
('Poodle-Labrador Retriever Mix', 'Cross Breed', '2007'),
('Pug-Wire Fox Terrier Mix', 'Cross Breed', '2008'),
('Greyhound', 'Pure Breed', '2004'),
('Pug-Wire Fox Terrier Mix', 'Cross Breed', '2009'),
('Pug-Smooth Fox Terrier Mix', 'Cross Breed', '2009'),
('Pembroke Welsh Corgi', 'Pure Breed', '2009'),
('Australian Shepherd', 'Pure Breed', '2006'),
('Wire Fox Terrier', 'Pure Breed', '2007'),
('Bearded Collie-Beagle Mix', 'Cross Breed', '2010'),
('Border Collie-Australian Cattle Dog Mix', 'Cross Breed', '2013'),
('Great Dane', 'Pure Breed', '2010'),
('Brussels Griffon', 'Pure Breed', '2003'),
('Poodle', 'Pure Breed', '2011'),
('Irish Setter', 'Pure Breed', '2008'),
('Puggle', 'Popular Hybrid', '2007'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2013'),
('Poodle-Dachshund Mix', 'Cross Breed', '2010'),
('Mixed', "Mixed Breed/ Other/ I Don't Know", '1997'),
('Cocker Spaniel', 'Pure Breed', '2012'),
('Miniature Schnauzer', 'Pure Breed', '2008'),
('Pug-Chihuahua Mix', 'Cross Breed', '2011'),
('Coton de Tulear', 'Pure Breed', '2008'),
('Golden Retriever', 'Pure Breed', '2005'),
('Papillon', 'Pure Breed', '2013'),
('Polish Lowland Sheepdog', 'Pure Breed', '2012'),

12
('Miniature Pinscher', 'Pure Breed', '2007'),
('English Springer Spaniel', 'Pure Breed', '2006'),
('American Eskimo Dog', 'Pure Breed', '1999'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2010'),
('Chinese Crested-Poodle Mix', 'Cross Breed', '2009'),
('American Pit Bull Terrier-Australian Cattle Dog Mix', 'Cross Breed', '2012'),
('Catahoula Leopard Dog-Rottweiler Mix', 'Cross Breed', '2010'),
('Belgian Tervuren', 'Pure Breed', '2012'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2008'),
('Australian Shepherd-Border Collie Mix', 'Cross Breed', '2013'),
('Poodle-Shih Tzu Mix', 'Cross Breed', '2011'),
('Boxer-Border Collie Mix', 'Cross Breed', '2009'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2013'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2009'),
('Great Dane-Irish Wolfhound Mix', 'Cross Breed', '2010'),
('Pyrenean Shepherd', 'Pure Breed', '2009'),
('Pyrenean Shepherd', 'Pure Breed', '2007'),
('Chinese Shar-Pei', 'Pure Breed', '2009'),
('Mastiff', 'Pure Breed', '2005'),
('French Bulldog', 'Pure Breed', '2005'),
('Australian Shepherd', 'Pure Breed', '2008'),
('Dachshund', 'Pure Breed', '2008'),
('Maltese', 'Pure Breed', '2007'),
('Labradoodle', 'Popular Hybrid', '2011'),
('Lhasa Apso', 'Pure Breed', '2004'),
('Greyhound', 'Pure Breed', '2012'),
('Dogue de Bordeaux-Boxer Mix', 'Cross Breed', '2005'),
('Belgian Malinois', 'Pure Breed', '2009'),
('Greyhound', 'Pure Breed', '2011'),
('Akita', 'Pure Breed', '2012'),
('Labrador Retriever', 'Pure Breed', '2007'),
('American Staffordshire Terrier-Catahoula Leopard Dog Mix', 'Cross Breed',
'2000'),
('Scottish Terrier', 'Pure Breed', '2012'),
('Shih Tzu-Pekingese Mix', 'Cross Breed', '2006'),
('Border Terrier', 'Pure Breed', '2006'),
('Beagle-Labrador Retriever Mix', 'Cross Breed', '2012'),
('Dachshund-Beagle Mix', 'Cross Breed', '2007'),
('Silky Terrier', 'Pure Breed', '2006'),
('Shetland Sheepdog', 'Pure Breed', '2013'),
('Scottish Terrier', 'Pure Breed', '2013'),
('-German Shepherd Dog Mix', 'Cross Breed', '2012'),
('Keeshond', 'Pure Breed', '2003'),
('German Shorthaired Pointer', 'Pure Breed', '2010'),
('Chihuahua', 'Pure Breed', '2006'),
('American Pit Bull Terrier', 'Pure Breed', '2006'),
('Bernese Mountain Dog', 'Pure Breed', '2012'),

13
('German Shepherd Dog-Chow Chow Mix', 'Cross Breed', '2007'),
('Labrador Retriever-Golden Retriever Mix', 'Cross Breed', '2012'),
('Border Collie-Australian Shepherd Mix', 'Cross Breed', '2010'),
('Labrador Retriever- Mix', 'Cross Breed', '2011'),
('Border Collie', 'Pure Breed', '2000'),
('Beagle-Australian Cattle Dog Mix', 'Cross Breed', '2004'),
('Pembroke Welsh Corgi-Great Pyrenees Mix', 'Cross Breed', '2007'),
('Australian Shepherd-Pembroke Welsh Corgi Mix', 'Cross Breed', '2010'),
('Chesapeake Bay Retriever', 'Pure Breed', '2011'),
('Golden Doodle', 'Popular Hybrid', '2006'),
('Maltese-Poodle Mix', 'Cross Breed', '2010'),
('Labradoodle', 'Popular Hybrid', '2003'),
('Boxer', 'Pure Breed', '2000'),
('Boxer', 'Pure Breed', '2002'),
('Afghan Hound-Golden Retriever Mix', 'Cross Breed', '2001'),
('Dachshund', 'Pure Breed', '2012'),
('Shorkie', 'Popular Hybrid', '2010'),
('Field Spaniel', 'Pure Breed', '2011'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2010'),
('Chihuahua-American Staffordshire Terrier Mix', 'Cross Breed', '2009'),
('Newfoundland', 'Pure Breed', '2010'),
('Yorkshire Terrier', 'Pure Breed', '1999'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2003'),
('Bluetick Coonhound', 'Pure Breed', '2006'),
('Pug-Miniature Pinscher Mix', 'Cross Breed', '2008'),
('Whippet-Chinese Shar-Pei Mix', 'Cross Breed', '2011'),
('Boxer-Bulldog Mix', 'Cross Breed', '2009'),
('Portuguese Water Dog', 'Pure Breed', '2012'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2009'),
('Portuguese Water Dog', 'Pure Breed', '2004'),
('Portuguese Water Dog', 'Pure Breed', '2008'),
('Labradoodle', 'Popular Hybrid', '2005'),
('Papillon', 'Pure Breed', '2008'),
('Vizsla- Mix', 'Cross Breed', '2008'),
('Chow Chow-Labrador Retriever Mix', 'Cross Breed', '2006'),
('Rat Terrier', 'Pure Breed', '2001'),
('Rhodesian Ridgeback-Boxer Mix', 'Cross Breed', '2011'),
('Border Collie-Whippet Mix', 'Cross Breed', '2012'),
('Other', "Mixed Breed/ Other/ I Don't Know", '2007'),
('Belgian Malinois', 'Pure Breed', '2011'),
('Border Collie-Pembroke Welsh Corgi Mix', 'Cross Breed', '2008'),
('Pug', 'Pure Breed', '2004'),
('Basenji', 'Pure Breed', '2008'),
('English Setter', 'Pure Breed', '2010'),
('Miniature Schnauzer', 'Pure Breed', '2005'),
('Golden Doodle', 'Popular Hybrid', '2013'),
('Miniature Pinscher', 'Pure Breed', '2010'),

14
('Bouvier des Flandres', 'Pure Breed', '2013'),
('Bouvier des Flandres', 'Pure Breed', '2009'),
('Cocker Spaniel-Doberman Pinscher Mix', 'Cross Breed', '2010'),
('Border Collie-Labrador Retriever Mix', 'Cross Breed', '2009'),
('Chihuahua-Rat Terrier Mix', 'Cross Breed', '2008'),
('Giant Schnauzer', 'Pure Breed', '2005'),
('American Eskimo Dog', 'Pure Breed', '2005'),
('Bugg', 'Popular Hybrid', '2012'),
('Flat-Coated Retriever', 'Pure Breed', '2013'),
('Pomeranian', 'Pure Breed', '2005'),
('Pembroke Welsh Corgi', 'Pure Breed', '2007'),
('Poodle-Yorkshire Terrier Mix', 'Cross Breed', '2008'),
('Poodle-Bichon Frise Mix', 'Cross Breed', '2008'),
('Shih Tzu', 'Pure Breed', '2000'),
('BullBoxer', 'Popular Hybrid', '2000'),
('German Shepherd Dog-Labrador Retriever Mix', 'Cross Breed', '1995'),
('Bichon Frise', 'Pure Breed', '2002'),
('Weimaraner', 'Pure Breed', '2012'),
('Poodle- Mix', 'Cross Breed', '2003'),
('Rat Terrier-Cavalier King Charles Spaniel Mix', 'Cross Breed', '2012'),
('Doberman Pinscher', 'Pure Breed', '2008'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2001'),
('American Water Spaniel', 'Pure Breed', '2010'),
('American Staffordshire Terrier', 'Pure Breed', '2010'),
('Puggle', 'Popular Hybrid', '2008'),
('Russell Terrier-Beagle Mix', 'Cross Breed', '2011'),
('Rottweiler-German Shepherd Dog Mix', 'Cross Breed', '2008'),
('Pug', 'Pure Breed', '2013'),
('Lagotto Romagnolo', 'Pure Breed', '2011'),
('Bernese Mountain Dog', 'Pure Breed', '2009'),
('Pembroke Welsh Corgi', 'Pure Breed', '2000'),
('Pembroke Welsh Corgi', 'Pure Breed', '2005'),
('Doberman Pinscher', 'Pure Breed', '2004'),
('Rat Terrier-Miniature Pinscher Mix', 'Cross Breed', '2010'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2010'),
('Cockapoo', 'Popular Hybrid', '2002'),
('Cockapoo', 'Popular Hybrid', '2003'),
('Rat Terrier', 'Pure Breed', '2012'),
('Chinese Crested', 'Pure Breed', '2010'),
('Irish Wolfhound', 'Pure Breed', '2006'),
('Dandie Dinmont Terrier', 'Pure Breed', '2009'),
('Standard Schnauzer', 'Pure Breed', '2011'),
('Maltese-Poodle Mix', 'Cross Breed', '2012'),
('Irish Setter', 'Pure Breed', '2011'),
('Labrador Retriever-Border Collie Mix', 'Cross Breed', '2005'),
('Cockapoo', 'Popular Hybrid', '2011'),
('Cairn Terrier', 'Pure Breed', '2012'),

15
('English Setter', 'Pure Breed', '2005'),
('Siberian Husky-German Shepherd Dog Mix', 'Cross Breed', '2009'),
('Greater Swiss Mountain Dog', 'Pure Breed', '2010'),
('Greater Swiss Mountain Dog', 'Pure Breed', '2011'),
('Cockapoo', 'Popular Hybrid', '2001'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2000'),
('Plott-Border Collie Mix', 'Cross Breed', '2012'),
('Golden Retriever', 'Pure Breed', '2001'),
('Bichon Frise', 'Pure Breed', '2009'),
('Yorkshire Terrier', 'Pure Breed', '2002'),
('Poodle-Labrador Retriever Mix', 'Cross Breed', '2013'),
('West Highland White Terrier', 'Pure Breed', '2009'),
('Labrador Retriever-Weimaraner Mix', 'Cross Breed', '2008'),
('Standard Schnauzer', 'Pure Breed', '2000'),
('French Bulldog-Bulldog Mix', 'Cross Breed', '2011'),
('American Pit Bull Terrier-Plott Mix', 'Cross Breed', '2009'),
('Boston Terrier-French Bulldog Mix', 'Cross Breed', '2010'),
('Weimaraner', 'Pure Breed', '2006'),
('Boxer-Cocker Spaniel Mix', 'Cross Breed', '2005'),
('Labrador Retriever-American Foxhound Mix', 'Cross Breed', '2013'),
('Puggle', 'Popular Hybrid', '2012'),
('English Springer Spaniel', 'Pure Breed', '2013'),
('Mastiff-St. Bernard Mix', 'Cross Breed', '2011'),
('Labrador Retriever', 'Pure Breed', '1999'),
('Chow Chow-Norfolk Terrier Mix', 'Cross Breed', '1997'),
('Flat-Coated Retriever', 'Pure Breed', '2010'),
('Cairn Terrier', 'Pure Breed', '2000'),
('Great Pyrenees', 'Pure Breed', '2012'),
('Poodle-Cocker Spaniel Mix', 'Cross Breed', '2013'),
('Miniature American Shepherd', 'Pure Breed', '2008'),
('Australian Shepherd', 'Pure Breed', '2005'),
('Pembroke Welsh Corgi', 'Pure Breed', '2004'),
('Siberian Husky', 'Pure Breed', '2009'),
('German Shepherd Dog-Belgian Malinois Mix', 'Cross Breed', '2008'),
('Lhasa Apso', 'Pure Breed', '2011'),
('Mastiff', 'Pure Breed', '2008'),
('Icelandic Sheepdog', 'Pure Breed', '2006'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2005'),
('Collie', 'Pure Breed', '2009'),
('Redbone Coonhound-Labrador Retriever Mix', 'Cross Breed', '2010'),
('Russell Terrier', 'Pure Breed', '2006'),
('Rhodesian Ridgeback-Weimaraner Mix', 'Cross Breed', '2006'),
('Chihuahua-Rat Terrier Mix', 'Cross Breed', '2000'),
('Shih Tzu-Yorkshire Terrier Mix', 'Cross Breed', '2010'),
('Australian Shepherd-Poodle Mix', 'Cross Breed', '2013'),
('Poodle', 'Pure Breed', '2000'),
('Yorkshire Terrier', 'Pure Breed', '2006'),

16
('Siberian Husky', 'Pure Breed', '2013'),
('French Bulldog', 'Pure Breed', '2007'),
('Silky Terrier', 'Pure Breed', '2009'),
('Labrador Retriever', 'Pure Breed', '2004'),
('Tibetan Spaniel', 'Pure Breed', '2004'),
('Treeing Walker Coonhound', 'Pure Breed', '2009'),
('English Springer Spaniel- Mix', 'Cross Breed', '2007'),
('Airedale Terrier', 'Pure Breed', '2004'),
('Spinone Italiano', 'Pure Breed', '2013'),
('Australian Shepherd', 'Pure Breed', '2004'),
('German Shepherd Dog', 'Pure Breed', '2005'),
('Bulldog-Pug Mix', 'Cross Breed', '2010'),
('Shetland Sheepdog', 'Pure Breed', '2006'),
('American Eskimo Dog', 'Pure Breed', '2009'),
('Akita', 'Pure Breed', '2011'),
('Labrador Retriever-Basset Hound Mix', 'Cross Breed', '2001'),
('Parson Russell Terrier', 'Pure Breed', '2008'),
('Poodle-Standard Schnauzer Mix', 'Cross Breed', '2013'),
('Cockapoo', 'Popular Hybrid', '2007'),
('Miniature Bull Terrier', 'Pure Breed', '2011'),
('Chinese Shar-Pei-Pug Mix', 'Cross Breed', '2011'),
('Great Dane', 'Pure Breed', '2002'),
('Airedale Terrier', 'Pure Breed', '2008'),
('French Bulldog', 'Pure Breed', '2010'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2013'),
('Parson Russell Terrier', 'Pure Breed', '2006'),
('Whippet', 'Pure Breed', '2009'),
('Great Dane', 'Pure Breed', '2006'),
('Yorkshire Terrier', 'Pure Breed', '2005'),
('Rottweiler', 'Pure Breed', '2013'),
('Appenzeller Sennenhunde', 'Pure Breed', '2006'),
('Parson Russell Terrier', 'Pure Breed', '2005'),
('Poodle', 'Pure Breed', '2003'),
('Golden Doodle', 'Popular Hybrid', '2007'),
('Miniature Schnauzer', 'Pure Breed', '2001'),
('Redbone Coonhound', 'Pure Breed', '2010'),
('Chihuahua', 'Pure Breed', '2011'),
('Border Collie-Australian Cattle Dog Mix', 'Cross Breed', '2004'),
('Vizsla', 'Pure Breed', '2010'),
('Maltese-Japanese Chin Mix', 'Cross Breed', '2006'),
('Basenji-Russell Terrier Mix', 'Cross Breed', '2003'),
('Australian Shepherd', 'Pure Breed', '2001'),
('Belgian Malinois', 'Pure Breed', '2012'),
('Rottweiler', 'Pure Breed', '2003'),
('Border Collie-Greyhound Mix', 'Cross Breed', '2013'),
('Poodle-Miniature Schnauzer Mix', 'Cross Breed', '2007'),
('Wire Fox Terrier', 'Pure Breed', '2002'),

17
('Skye Terrier', 'Pure Breed', '2012'),
('Whippet', 'Pure Breed', '2013'),
('American Pit Bull Terrier', 'Pure Breed', '2008'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2005'),
('German Shepherd Dog-Golden Retriever Mix', 'Cross Breed', '2009'),
('Wirehaired Pointing Griffon', 'Pure Breed', '2013'),
('Chinese Crested-Pug Mix', 'Cross Breed', '2010'),
('Chihuahua- Mix', 'Cross Breed', '2007'),
('Miniature Schnauzer', 'Pure Breed', '2006'),
('Greyhound', 'Pure Breed', '2005'),
('Basenji', 'Pure Breed', '2002'),
('American Eskimo Dog', 'Pure Breed', '2010'),
('Dutch Shepherd', 'Pure Breed', '2013'),
('Norwich Terrier', 'Pure Breed', '2007'),
('Norwich Terrier', 'Pure Breed', '2005'),
('Yorkshire Terrier-Maltese Mix', 'Cross Breed', '2011'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2002'),
('Boxer-Border Collie Mix', 'Cross Breed', '2001'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2012'),
('Bichon Frise', 'Pure Breed', '2010'),
('Golden Retriever-Great Pyrenees Mix', 'Cross Breed', '2009'),
('Golden Retriever-Collie Mix', 'Cross Breed', '2003'),
('German Shepherd Dog-Siberian Husky Mix', 'Cross Breed', '2009'),
('Maltese', 'Pure Breed', '1998'),
('Dachshund', 'Pure Breed', '2005'),
('Parson Russell Terrier', 'Pure Breed', '2007'),
('Bichon Frise', 'Pure Breed', '2011'),
('Bluetick Coonhound', 'Pure Breed', '2008'),
('Golden Retriever-Labrador Retriever Mix', 'Cross Breed', '2007'),
('Kerry Blue Terrier', 'Pure Breed', '2008'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '1982'),
('Shiba Inu', 'Pure Breed', '2010'),
('Chinook', 'Pure Breed', '2010'),
('Cocker Spaniel', 'Pure Breed', '2007'),
('Berger Picard', 'Pure Breed', '2012'),
('Golden Doodle', 'Popular Hybrid', '2005'),
('West Highland White Terrier', 'Pure Breed', '2010'),
('Treeing Walker Coonhound', 'Pure Breed', '2008'),
('American Pit Bull Terrier-Pointer Mix', 'Cross Breed', '2004'),
('Bearded Collie', 'Pure Breed', '2010'),
('Alaskan Malamute', 'Pure Breed', '2012'),
('Havanese', 'Pure Breed', '2001'),
('American Staffordshire Terrier-Portuguese Podengo Mix', 'Cross Breed',
'2008'),
('Lagotto Romagnolo', 'Pure Breed', '2013'),
('English Cocker Spaniel', 'Pure Breed', '2011'),
('Golden Doodle', 'Popular Hybrid', '2010'),

18
('Bulldog', 'Pure Breed', '2005'),
('Beagle', 'Pure Breed', '2013'),
('Cavalier King Charles Spaniel', 'Pure Breed', '2004'),
('American Pit Bull Terrier', 'Pure Breed', '2009'),
('Australian Shepherd-Australian Cattle Dog Mix', 'Cross Breed', '2007'),
('Cockapoo', 'Popular Hybrid', '2009'),
('Black Russian Terrier', 'Pure Breed', '2010'),
('Black Russian Terrier', 'Pure Breed', '2013'),
('Great Dane', 'Pure Breed', '2011'),
('American Staffordshire Terrier', 'Pure Breed', '2009'),
('Rat Terrier', 'Pure Breed', '2013'),
('Russell Terrier', 'Pure Breed', '2012'),
('Shih Tzu', 'Pure Breed', '2007'),
('Labrador Retriever-Golden Retriever Mix', 'Cross Breed', '2010'),
('Anatolian Shepherd Dog', 'Pure Breed', '2013'),
('Tibetan Terrier', 'Pure Breed', '2012'),
('Chow Chow-Australian Shepherd Mix', 'Cross Breed', '2004'),
('Yorkshire Terrier', 'Pure Breed', '1996'),
('Yorkshire Terrier', 'Pure Breed', '2007'),
('Rhodesian Ridgeback', 'Pure Breed', '2006'),
('Welsh Terrier', 'Pure Breed', '2007'),
('Alaskan Malamute', 'Pure Breed', '2011'),
('Weimaraner', 'Pure Breed', '2004'),
('Weimaraner', 'Pure Breed', '2005'),
('Norwegian Elkhound', 'Pure Breed', '2003'),
('Labrador Retriever-Treeing Walker Coonhound Mix', 'Cross Breed', '2012'),
('Labrador Retriever', 'Pure Breed', '2002'),
('West Highland White Terrier', 'Pure Breed', '2011'),
('Miniature Pinscher', 'Pure Breed', '2002'),
('Staffordshire Bull Terrier-Boston Terrier Mix', 'Cross Breed', '2011'),
('St. Bernard', 'Pure Breed', '2012'),
('Boxer-Bloodhound Mix', 'Cross Breed', '2007'),
('Bulldog', 'Pure Breed', '2007'),
('Cairn Terrier', 'Pure Breed', '2009'),
('Brittany-German Shorthaired Pointer Mix', 'Cross Breed', '2009'),
('Mastiff', 'Pure Breed', '2012'),
('Labrador Retriever-German Shepherd Dog Mix', 'Cross Breed', '2011'),
('Nova Scotia Duck Tolling Retriever', 'Pure Breed', '2003'),
('Rat Terrier', 'Pure Breed', '1998'),
('Australian Shepherd-Chow Chow Mix', 'Cross Breed', '2010'),
('Mudi-Australian Cattle Dog Mix', 'Cross Breed', '2003'),
('Parson Russell Terrier', 'Pure Breed', '2010'),
('English Springer Spaniel', 'Pure Breed', '2002'),
('Pekingese', 'Pure Breed', '2001'),
('Australian Shepherd- Mix', 'Cross Breed', '2011'),
('Catahoula Leopard Dog', 'Pure Breed', '2006'),
('Vizsla', 'Pure Breed', '2012'),

19
('American Staffordshire Terrier', 'Pure Breed', '2008'),
('Border Collie', 'Pure Breed', '2005'),
('Cardigan Welsh Corgi', 'Pure Breed', '2003'),
('Eurasier', 'Pure Breed', '2009'),
('Dachshund', 'Pure Breed', '2010'),
('Leonberger', 'Pure Breed', '2005'),
('Rhodesian Ridgeback', 'Pure Breed', '2012'),
('Vizsla', 'Pure Breed', '2006'),
('Portuguese Water Dog', 'Pure Breed', '2007'),
('Labrador Retriever-Poodle Mix', 'Cross Breed', '2011'),
('Maltese', 'Pure Breed', '2001'),
('American Eskimo Dog-Russell Terrier Mix', 'Cross Breed', '2008'),
('Russell Terrier', 'Pure Breed', '2011'),
('Bullmastiff', 'Pure Breed', '2010'),
('Labrador Retriever-Collie Mix', 'Cross Breed', '2011'),
('Belgian Sheepdog', 'Pure Breed', '2011'),
('Chihuahua', 'Pure Breed', '1999'),
('Labrador Retriever-Border Collie Mix', 'Cross Breed', '2009'),
('Havanese', 'Pure Breed', '2004'),
('American Staffordshire Terrier- Mix', 'Cross Breed', '2010'),
('Cocker Spaniel', 'Pure Breed', '2009'),
('Bearded Collie', 'Pure Breed', '2011'),
('Wire Fox Terrier', 'Pure Breed', '2004'),
('Pug', 'Pure Breed', '2008'),
('Beagle', 'Pure Breed', '2004'),
('Pointer-Beagle Mix', 'Cross Breed', '2007'),
('Russell Terrier', 'Pure Breed', '2009'),
('Labrador Retriever-American Pit Bull Terrier Mix', 'Cross Breed', '2009'),
('Pekingese-Parson Russell Terrier Mix', 'Cross Breed', '2009'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2006'),
('-Collie Mix', 'Cross Breed', '2001'),
('Vizsla', 'Pure Breed', '2004'),
('Pembroke Welsh Corgi-American Eskimo Dog Mix', 'Cross Breed', '2010'),
('Miniature Schnauzer-Poodle Mix', 'Cross Breed', '2010'),
('Cardigan Welsh Corgi', 'Pure Breed', '2012'),
('Irish Setter', 'Pure Breed', '2005'),
('Vizsla', 'Pure Breed', '2002'),
('Catahoula Leopard Dog', 'Pure Breed', '2010'),
('Redbone Coonhound-Vizsla Mix', 'Cross Breed', '2009'),
('Spinone Italiano', 'Pure Breed', '2009'),
('Spinone Italiano', 'Pure Breed', '2007'),
('Labrador Retriever', 'Pure Breed', '2000'),
('Border Collie', 'Pure Breed', '2003'),
('Kerry Blue Terrier', 'Pure Breed', '2012'),
('Labradoodle', 'Popular Hybrid', '2004'),
('Giant Schnauzer', 'Pure Breed', '2012'),
('Boxer', 'Pure Breed', '2003'),

20
('Rottweiler-Redbone Coonhound Mix', 'Cross Breed', '2006'),
('Havanese', 'Pure Breed', '2010'),
('Eurasier', 'Pure Breed', '2000'),
('Shih Tzu', 'Pure Breed', '1983'),
('Australian Cattle Dog-Border Collie Mix', 'Cross Breed', '2012'),
('St. Bernard-Labrador Retriever Mix', 'Cross Breed', '2011'),
('Giant Schnauzer', 'Pure Breed', '2009'),
('Afghan Hound', 'Pure Breed', '2011'),
('Border Collie', 'Pure Breed', '2012'),
('Cavalier King Charles Spaniel-Bichon Frise Mix', 'Cross Breed', '2007'),
('Vizsla', 'Pure Breed', '2013'),
('Chow Chow-Cocker Spaniel Mix', 'Cross Breed', '2005'),
('Parson Russell Terrier', 'Pure Breed', '1999'),
('Vizsla', 'Pure Breed', '2009'),
('Italian Greyhound', 'Pure Breed', '2008'),
('Labrador Retriever- Mix', 'Cross Breed', '2012'),
('Labrador Retriever-Poodle Mix', 'Cross Breed', '2007'),
('American Staffordshire Terrier-American Pit Bull Terrier Mix', 'Cross Breed',
'2008'),
('German Shorthaired Pointer', 'Pure Breed', '2004'),
('Scottish Terrier', 'Pure Breed', '2004'),
('Tibetan Terrier', 'Pure Breed', '2010'),
('Dachshund-Boston Terrier Mix', 'Cross Breed', '2006'),
('Bichon Frise-Cavalier King Charles Spaniel Mix', 'Cross Breed', '2010'),
('Old English Sheepdog', 'Pure Breed', '2008'),
('Standard Schnauzer', 'Pure Breed', '2013'),
('English Cocker Spaniel-Poodle Mix', 'Cross Breed', '2012'),
('Ibizan Hound', 'Pure Breed', '2012'),
('Portuguese Water Dog', 'Pure Breed', '2006'),
('Yorkshire Terrier', 'Pure Breed', '2003'),
('Flat-Coated Retriever', 'Pure Breed', '2007'),
('Dachshund', 'Pure Breed', '2002'),
('Cocker Spaniel', 'Pure Breed', '2010'),
('Parson Russell Terrier', 'Pure Breed', '2012'),
('German Shepherd Dog-Chow Chow Mix', 'Cross Breed', '2008'),
('Golden Retriever-Poodle Mix', 'Cross Breed', '2010'),
('American Staffordshire Terrier-American Pit Bull Terrier Mix', 'Cross Breed',
'2010'),
('Shorkie', 'Popular Hybrid', '2009'),
('Cairn Terrier', 'Pure Breed', '2010'),
('Chihuahua-Pug Mix', 'Cross Breed', '2011'),
('Poodle-Miniature Schnauzer Mix', 'Cross Breed', '2009'),
('Mastiff', 'Pure Breed', '2010'),
('Australian Shepherd-Poodle Mix', 'Cross Breed', '2011'),
('Belgian Sheepdog', 'Pure Breed', '2009'),
('Golden Retriever-Poodle Mix', 'Cross Breed', '2011'),
('Border Collie- Mix', 'Cross Breed', '2001'),

21
('Russell Terrier-Beagle Mix', 'Cross Breed', '2007'),
('Pug', 'Pure Breed', '2009'),
('Beagle-American Eskimo Dog Mix', 'Cross Breed', '2010'),
('Golden Retriever-English Cocker Spaniel Mix', 'Cross Breed', '2009'),
('Beagle', 'Pure Breed', '2003'),
('Cocker Spaniel', 'Pure Breed', '2005'),
('Bluetick Coonhound', 'Pure Breed', '2009'),
('American Pit Bull Terrier', 'Pure Breed', '2003'),
('Boston Terrier', 'Pure Breed', '2009'),
('Border Collie', 'Pure Breed', '1998'),
('Australian Labradoodle', 'Pure Breed', '2012'),
('Cardigan Welsh Corgi', 'Pure Breed', '2001'),
('Shiba Inu-Pembroke Welsh Corgi Mix', 'Cross Breed', '2012'),
('Flat-Coated Retriever- Mix', 'Cross Breed', '2011'),
('Border Collie-Australian Cattle Dog Mix', 'Cross Breed', '2011'),
('Pomeranian', 'Pure Breed', '2004'),
('Cocker Spaniel', 'Pure Breed', '2000'),
('Puggle', 'Popular Hybrid', '2011'),
('Pekingese-Poodle Mix', 'Cross Breed', '2007'),
('Border Collie-Golden Retriever Mix', 'Cross Breed', '2010'),
('Pomapoo', 'Popular Hybrid', '2003'),
('Australian Shepherd', 'Pure Breed', '2007'),
('Lakeland Terrier', 'Pure Breed', '2007'),
('Papillon-Japanese Chin Mix', 'Cross Breed', '2009'),
('Basset Hound', 'Pure Breed', '2006'),
('Miniature Bull Terrier', 'Pure Breed', '2012'),
('German Shepherd Dog-American Eskimo Dog Mix', 'Cross Breed', '2009'),
('Chihuahua-Russell Terrier Mix', 'Cross Breed', '2013'),
('Boxer', 'Pure Breed', '2006'),
('German Shepherd Dog-Australian Shepherd Mix', 'Cross Breed', '2011'),
('Border Collie', 'Pure Breed', '2001'),
('Border Collie-Australian Shepherd Mix', 'Cross Breed', '2008'),
('Briard', 'Pure Breed', '2011'),
('Miniature Schnauzer', 'Pure Breed', '2007'),
('Irish Terrier', 'Pure Breed', '2011'),
('Chihuahua-Miniature Pinscher Mix', 'Cross Breed', '2009'),
('Puli', 'Pure Breed', '2001'),
('Greyhound-Labrador Retriever Mix', 'Cross Breed', '2007'),
('Puli', 'Pure Breed', '2009'),
('Miniature Pinscher', 'Pure Breed', '2009'),
('Poodle', 'Pure Breed', '2001'),
('Russell Terrier-Poodle Mix', 'Cross Breed', '2007'),
('German Shepherd Dog-Chinese Shar-Pei Mix', 'Cross Breed', '2004'),
('Pug', 'Pure Breed', '2003'),
('Russell Terrier', 'Pure Breed', '2010'),
('Briard', 'Pure Breed', '2010'),
('Poodle-Lhasa Apso Mix', 'Cross Breed', '2007'),

22
('Rat Terrier', 'Pure Breed', '2007'),
('Dachshund', 'Pure Breed', '2006'),
('Bulldog', 'Pure Breed', '2012'),
('Redbone Coonhound-Bloodhound Mix', 'Cross Breed', '2011'),
('Russell Terrier-Shih Tzu Mix', 'Cross Breed', '2009'),
('Wirehaired Pointing Griffon', 'Pure Breed', '2011'),
('Boykin Spaniel-Deutscher Wachtelhund Mix', 'Cross Breed', '2004'),
('English Springer Spaniel', 'Pure Breed', '2004'),
('Shetland Sheepdog', 'Pure Breed', '2003'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2003'),
('Maltese', 'Pure Breed', '2012'),
('Shiba Inu', 'Pure Breed', '2009'),
('Rottweiler', 'Pure Breed', '2007'),
('Norwegian Buhund', 'Pure Breed', '2004'),
('Miniature Pinscher', 'Pure Breed', '2003'),
('Italian Greyhound-Cardigan Welsh Corgi Mix', 'Cross Breed', '2007'),
('Australian Shepherd-Border Collie Mix', 'Cross Breed', '2004'),
('Labrador Retriever-Australian Cattle Dog Mix', 'Cross Breed', '2011'),
('Dogo Argentino', 'Pure Breed', '2011'),
('Labrador Retriever-Rottweiler Mix', 'Cross Breed', '2012'),
('Field Spaniel', 'Pure Breed', '2010'),
('Poodle-Cocker Spaniel Mix', 'Cross Breed', '2008'),
("I Don't Know", "Mixed Breed/ Other/ I Don't Know", '2002'),
('Doberman Pinscher', 'Pure Breed', '2011'),
('Doberman Pinscher-Black and Tan Coonhound Mix', 'Cross Breed', '2011'),
('Rat Terrier-Chihuahua Mix', 'Cross Breed', '2009'),
('Alaskan Malamute', 'Pure Breed', '2009'),
('Akita', 'Pure Breed', '2008'),
('German Shepherd Dog-Siberian Husky Mix', 'Cross Breed', '2007'),
('Swedish Vallhund', 'Pure Breed', '2011'),
('Doberman Pinscher', 'Pure Breed', '2010'),
('Chinese Shar-Pei-Labrador Retriever Mix', 'Cross Breed', '2013'),
('Pomapoo', 'Popular Hybrid', '2009'),
('Miniature Pinscher-Chihuahua Mix', 'Cross Breed', '2009'),
('Cocker Spaniel-Poodle Mix', 'Cross Breed', '2012'),
('Pomeranian-Basenji Mix', 'Cross Breed', '2006'),
('Portuguese Podengo Pequeno', 'Pure Breed', '2013'),
('Australian Shepherd-Shih Tzu Mix', 'Cross Breed', '2009'),
('Pug', 'Pure Breed', '2012'),
('American Pit Bull Terrier-Boston Terrier Mix', 'Cross Breed', '2011'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2013'),
('German Shepherd Dog-Chinese Shar-Pei Mix', 'Cross Breed', '2009'),
('German Shepherd Dog-Poodle Mix', 'Cross Breed', '2011'),
('Australian Shepherd-Australian Cattle Dog Mix', 'Cross Breed', '2006'),
('Standard Schnauzer', 'Pure Breed', '2010'),
('Havanese', 'Pure Breed', '2008'),
('Maltese', 'Pure Breed', '2003'),

23
('Border Collie-Labrador Retriever Mix', 'Cross Breed', '2005'),
('Bichon Frise', 'Pure Breed', '2007'),
('Border Collie-Labrador Retriever Mix', 'Cross Breed', '2013'),
('Cocker Spaniel-Cavalier King Charles Spaniel Mix', 'Cross Breed', '2005'),
('Yorkshire Terrier-Poodle Mix', 'Cross Breed', '2011'),
('English Cocker Spaniel', 'Pure Breed', '2006'),
('Silky Terrier', 'Pure Breed', '2012'),
('Great Dane', 'Pure Breed', '2008'),
('Berger Picard', 'Pure Breed', '2011'),
('French Bulldog', 'Pure Breed', '2006'),
('Newfoundland', 'Pure Breed', '2006'),
('Australian Cattle Dog', 'Pure Breed', '2009'),
('BullBoxer', 'Popular Hybrid', '2011'),
('Maltese', 'Pure Breed', '2013'),
('Doberman Pinscher', 'Pure Breed', '2003'),
('Soft Coated Wheaten Terrier', 'Pure Breed', '2008'),
('Glen of Imaal Terrier', 'Pure Breed', '2011'),
('Russell Terrier', 'Pure Breed', '2004'),
('Russell Terrier', 'Pure Breed', '2005'),
('Boxer-Ibizan Hound Mix', 'Cross Breed', '2012'),
('Labrador Retriever-Dachshund Mix', 'Cross Breed', '2012'),
('Pug-Beagle Mix', 'Cross Breed', '2007'),
('Japanese Chin', 'Pure Breed', '2009'),
('Yorkshire Terrier-Maltese Mix', 'Cross Breed', '2010'),
('Doberman Pinscher-Greyhound Mix', 'Cross Breed', '2005'),
('Pomeranian', 'Pure Breed', '2009'),
('Chesapeake Bay Retriever-Beagle Mix', 'Cross Breed', '2011'),
('Pug', 'Pure Breed', '2006'),
('German Shorthaired Pointer', 'Pure Breed', '2000'),
('American Pit Bull Terrier-Labrador Retriever Mix', 'Cross Breed', '2007'),
…]

If you scroll through the output, you will see that no two entries are the same. Of note, if you use
the DISTINCT clause on a column that has NULL values, MySQL will include one NULL value in
the DISTINCT output from that column.
When the DISTINCT clause is used with multiple columns in a SELECT statement, the combina-
tion of all the columns together is used to determine the uniqueness of a row in a result set.
For example, if you wanted to know all the possible combinations of states and cities in the users
table, you could query:
SELECT DISTINCT state, city
FROM users;
Try it (if you don’t limit your output you’ll see 3999 rows in the query result, of which
the first 1000 are displayed):

24
[7]: %%sql
SELECT DISTINCT state, city
FROM users;

* mysql://studentuser:***@localhost/dognitiondb
3999 rows affected.

[7]: [('ND', 'Grand Forks'),


('MA', 'Barre'),
('CT', 'Darien'),
('IL', 'Winnetka'),
('NC', 'Raleigh'),
('WA', 'Auburn'),
('CO', 'Fort Collins'),
('WA', 'Seattle'),
('WA', 'Bainbridge Island'),
('WA', 'Bremerton'),
('CA', 'Aptos'),
('OH', 'North Ridgeville'),
('VA', 'Charlottesville'),
('NC', 'Hillsborough'),
('NY', 'New York'),
('CA', 'Los Angeles'),
('WY', 'Worland'),
('IL', 'Grayslake'),
('VA', 'Falls Church'),
('WA', 'Everett'),
('CA', 'Dixon'),
('CA', 'Altadena'),
('A', 'Rosenau'),
('AZ', 'Sierra Vista'),
('NC', 'Durham'),
('IL', 'Northbrook'),
('CO', 'Cincinnati'),
('WA', 'Charlotte'),
('NJ', 'Boston'),
('AE', 'Boston'),
('PA', 'Birdsboro'),
('83', 'Rødekro'),
('CA', 'Alexandria'),
('NC', 'Charlotte'),
('CA', 'Woodinville'),
('WA', 'Woodinville'),
('IL', 'Oakland'),
('1', 'Singapore'),
('DC', 'Oakland'),
('NY', 'Oakland'),

25
('OH', 'Test'),
('FL', 'Test'),
('PA', 'Oreland'),
('PA', 'Carrboro'),
('TX', 'Carrboro'),
('NC', 'Cary'),
('NC', 'Carrboro'),
('NM', 'Melbourne'),
('KS', 'Alexandria'),
('NY', 'Alexandria'),
('CA', 'Singapore'),
('MA', 'Mountain View'),
('OR', 'Mountain View'),
('MO', 'Bloomfield Hills'),
('MD', 'Owings'),
('FL', 'Bloomfield Hills'),
('CT', 'Philadelphia'),
('NY', 'Durham'),
('NJ', 'Test'),
('IL', 'Test'),
('GA', 'Davis'),
('FL', 'Davis'),
('TX', 'Davis'),
('OH', 'Goshen'),
('WA', 'Spokane'),
('MO', 'Saint Louis'),
('DC', 'Washington'),
('LA', 'Denham Springs'),
('NV', 'Henderson'),
('LND', 'London '),
('NH', 'Hancock'),
('CT', 'Old Lyme'),
('TX', 'Duncanville'),
('BC', 'Victoria'),
('OR', 'Portland'),
('CT', 'Southington'),
('HI', 'Kapolei'),
('CT', 'Suffield'),
('GA', 'Atlanta'),
('FL', 'Fort Lauderdale'),
('TX', 'Spring'),
('VA', 'Virginia Beach'),
('MN', 'Minneapolis'),
('GA', 'Jonesboro'),
('AE', 'Apo'),
('NJ', 'Jersey City'),
('JM', 'Lapid'),

26
('MD', 'Clinton'),
('ZH', 'Zurich'),
('TN', 'Goodlettsville'),
('NJ', 'Princeton'),
('CA', 'Oakland'),
('CO', 'Nathrop'),
('FL', 'Orlando'),
('F', 'St. Privé St. Mesmin'),
('QLD', 'Moorooka'),
('JU', 'Delémont'),
('OR', 'Mcminnville'),
('IA', 'Altoona'),
('KS', 'Olathe'),
('TX', 'Austin'),
('PA', 'Philadelphia'),
('FL', 'Jacksonville'),
('BC', 'Cobble Hill'),
('MA', 'North Adams'),
('PA', 'Sellersville'),
('IN', 'New Carlisle'),
('WI', 'Alma'),
('N', 'Rotorua'),
('NJ', 'Pennington'),
('NM', 'Santa Fe'),
('MD', 'Towson'),
('CA', 'Carmel Valley'),
('GA', 'Alpharetta'),
('BC', 'Chemainus'),
('GA', 'Macon'),
('BC', 'Vancouver'),
('PA', 'Bala Cynwyd'),
('NC', 'Woodinville'),
('N', 'Auckland'),
('TX', 'Dallas'),
('KS', 'Prairie Village'),
('AZ', 'Phoenix'),
('TX', 'San Marcos'),
('TX', 'Cibolo'),
('VIC', 'Melbourne'),
('CA', 'Santee'),
('ON', 'Waterloo'),
('MI', 'Kalamazoo'),
('PA', 'Jamison'),
('CA', 'Yorba Linda'),
('IL', 'Chicago'),
('NC', 'Chapel Hill'),
('VA', 'Rixeyville'),

27
('NC', 'Youngsville'),
('ON', 'Toronto'),
('SC', 'Bluffton'),
('MD', 'Brookeville'),
('TX', 'Houston'),
('NM', 'Tijeras'),
('TN', 'Memphis'),
('CO', 'Golden'),
('N', 'New Plymouth'),
('N/A', 'Kennedy Town'),
('WI', 'Marshall'),
('MO', 'Columbia'),
('MA', 'Somerville'),
('MA', 'Boston'),
('NC', 'Asheville'),
('NY', 'Port Washington'),
('NC', 'Gastonia'),
('CA', 'Irvine'),
('WA', 'Ellensburg'),
('NM', 'Cedar Crest'),
('MA', 'Deerfield'),
('MD', 'Freeland'),
('NV', 'Las Vegas'),
('MD', 'Phoenix'),
('OK', 'Lindsay'),
('NM', 'Tyrone'),
('CA', 'Palo Alto'),
('AZ', 'Hereford'),
('CA', 'Larkspur'),
('VA', 'Arlington'),
('VA', 'Vinton'),
('IL', 'Quincy'),
('GA', 'Dalton'),
('AB', 'Calgary'),
('MI', 'Ossineke'),
('NY', 'Brooklyn'),
('NC', 'Winston Salem'),
('AL', 'Slocomb'),
('LA', 'New Orleans'),
('IL', 'Schaumburg'),
('MD', 'College Park'),
('VA', 'Alexandria'),
('MA', 'Woburn'),
('OR', 'West Linn'),
('84', 'Frederiksberg'),
('RI', 'Warwick'),
('MD', 'Chesapeake Beach'),

28
('UT', 'West Jordan'),
('TX', 'Laredo'),
('FL', 'Sarasota'),
('MA', 'Hudson'),
('TX', 'Missouri City'),
('ON', 'St. Davids'),
('CA', 'Cottonwood'),
('CO', 'Montrose'),
('PA', 'Stroudsburg'),
('MI', 'Saint Johns'),
('CA', 'Berkeley'),
('FL', 'Bonita Springs'),
('NM', 'Albuquerque'),
('MD', 'Bethesda'),
('AP', 'Fpo'),
('WI', 'Mukwonago'),
('MA', 'Cambridge'),
('MD', 'Rockville'),
('ON', 'Thornhill'),
('MA', 'Concord'),
('OH', 'Columbus'),
('TX', 'Keller'),
('AB', 'Cardston'),
('NC', 'Greensboro'),
('GA', 'Douglasville'),
('WA', 'Lynnwood'),
('NSW', 'Mosman'),
('FL', 'Saint Petersburg'),
('NSW', 'North Sydney'),
('NJ', 'Newfoundland'),
('NJ', 'Cranford'),
('QLD', 'Hawthorne'),
('WLN', 'Kirknewton'),
('VIC', 'Eildon'),
('NC', 'Apex'),
('CA', 'Ladera Ranch'),
('IL', 'Mount Carmel'),
('FL', 'Fort Myers'),
('CA', 'San Francisco'),
('MA', 'Newton Highlands'),
('NC', 'Pittsboro'),
('NJ', 'Ringwood'),
('CA', 'Long Beach'),
('OH', 'Wickliffe'),
('NC', 'Zebulon'),
('83', 'Odense Sv'),
('PA', 'Richboro'),

29
('B', 'Thessaloniki'),
('MA', 'Rockport'),
('IN', 'Indianapolis'),
('SC', 'Greer'),
('VT', 'Arlington'),
('SC', 'Myrtle Beach'),
('PA', 'Red Lion'),
('L', 'Newbridge'),
('ON', 'Nepean East'),
('MI', 'West Olive'),
('NLE', 'Monterrey'),
('TX', 'Driftwood'),
('PA', 'Mertztown'),
('FL', 'Tallahassee'),
('AZ', 'Glendale'),
('NC', 'Concord'),
('GA', 'Monroe'),
('37', 'Tallinn'),
('NY', 'Rochester'),
('FL', 'Miami'),
('MI', 'Stanwood'),
('NH', 'Stratham'),
('OK', 'Tulsa'),
('NJ', 'Ocean Grove'),
('MA', 'Newbury'),
('MN', 'Isanti'),
('PA', 'Pittsburgh'),
('NW', 'Essen'),
('NC', 'Beaufort'),
('NC', 'Sanford'),
('KS', 'Mission'),
('ID', 'Idaho Falls'),
('PA', 'Swarthmore'),
('IA', 'New Albin'),
('CA', 'Pasadena'),
('MA', 'Brookline'),
('SC', 'Charleston'),
('CA', 'San Diego'),
('NY', 'Bedford'),
('84', 'Charlottenlund'),
('IN', 'Cromwell'),
('OR', 'Eugene'),
('CA', 'Burlingame'),
('VA', 'Winchester'),
('84', 'Copenhagen'),
('MD', 'Germantown'),
('MA', 'Newton Lower Falls'),

30
('SC', 'Columbia'),
('OH', 'Dublin'),
('IL', 'Ottawa'),
('KY', 'Ft Mitchell'),
('VA', 'Herndon'),
('CO', 'Englewood'),
('CA', 'La Jolla'),
('CA', 'Roseville'),
('MD', 'Kensington'),
('TX', 'Oakland'),
('NY', 'Manhasset'),
('TAS', 'Somerset'),
('EDH', 'Edinburgh'),
('IL', 'Tinley Park'),
('AB', 'Edmonton'),
('CA', 'Beverly Hills'),
('IL', 'Skokie'),
('CA', 'Guatay'),
('ON', 'Kanata'),
('VA', 'Mc Lean'),
('KEN', 'Tunbridge Wells'),
('OH', 'Cuyahoga Falls'),
('MB', 'Gladstone'),
('AZ', 'Tucson'),
('VIC', 'Belmont'),
('NC', 'New Hill'),
('GA', 'Peachtree City'),
('QC', 'Saint-eustache'),
('CA', 'Camarillo'),
('MD', 'Hyattsville'),
('NE', 'Papillion'),
('CA', 'San Jose'),
('AL', 'Mobile'),
('MA', 'Westborough'),
('GA', 'Acworth'),
('GA', 'Marietta'),
('GA', 'Midland'),
('NC', 'Clayton'),
('MD', 'Baltimore'),
('NJ', 'Somerset'),
('WA', 'Mount Pleasant'),
('MI', 'Grand Rapids'),
('NJ', 'Beverly'),
('2', 'Aas'),
('CO', 'Lake George'),
('CA', 'Mill Valley'),
('NY', 'Pound Ridge'),

31
('CA', 'Manhattan Beach'),
('WA', 'Kirkland'),
('CA', 'Valencia'),
('1', 'Nordre Frogn'),
('NC', 'Southern Pines'),
('PA', 'Lancaster'),
('WA', 'Granite Falls'),
('CT', 'Ansonia'),
('MA', 'Charlestown'),
('WI', 'Madison'),
('AR', 'De Witt'),
('BB', 'Berlin'),
('VA', 'Richmond'),
('PA', 'Conshohocken'),
('TX', 'Flower Mound'),
('NC', 'Waynesville'),
('GBN', 'Devizes'),
('MD', 'Westminster'),
('3', 'Puchberg/schneeberg'),
('MN', 'Saint Paul'),
('CO', 'Parker'),
('UKM', 'Brighton'),
('NJ', 'Milford'),
('KEN', 'Ramsgate '),
('CA', 'Palos Verdes Peninsula'),
('QLD', 'Mackay'),
('FL', 'Naples'),
('78', 'Tartu'),
('NC', 'Holly Springs'),
('PA', 'Reading'),
('WI', 'Brookfield'),
('N/A', 'Test'),
('MI', 'Ann Arbor'),
('CT', 'Hawleyville'),
('LA', 'Shreveport'),
('CA', 'Salinas'),
('RJ', 'Niterói'),
('FL', 'Pensacola'),
('WA', 'Sammamish'),
('CA', 'Santa Rosa'),
('VT', 'Williston'),
('MD', 'Gaithersburg'),
('NY', 'Riverhead'),
('NY', 'Ronkonkoma'),
('ON', 'Ottawa'),
('CA', 'Lancaster'),
('PR', 'Yabucoa'),

32
('UT', 'Salt Lake City'),
('NY', 'Astoria'),
('NY', 'Schenectady'),
('OH', 'Eastlake'),
('OH', 'Delaware'),
('CO', 'Crestone'),
('CA', 'Ojai'),
('GA', 'Woodstock'),
('WI', 'Black Earth'),
('IL', 'Bloomington'),
('TX', 'Plano'),
('WA', 'Tacoma'),
('NC', 'Pinehurst'),
('FL', 'Fleming Island'),
('NV', 'Minden'),
('TX', 'Arlington'),
('NY', 'Locust Valley'),
('VA', 'Centreville'),
('CA', 'Ventura'),
('CA', 'Menlo Park'),
('MD', 'Clarksburg'),
('OR', 'Lake Oswego'),
('AB', 'Cochrane'),
('MA', 'Needham'),
('CO', 'Aurora'),
('FL', 'Melbourne'),
('NC', 'Four Oaks'),
('MA', 'Westford'),
('MI', 'Sault Sainte Marie'),
('FL', 'Auburndale'),
('CA', 'South Pasadena'),
('MA', 'Medford'),
('AZ', 'San Tan Valley'),
('NJ', 'Saddle Brook'),
('CAM', 'Huntingdon'),
('CA', 'North Hollywood'),
('WA', 'Renton'),
('OR', 'Medford'),
('MA', 'Wakefield'),
('FL', 'Hobe Sound'),
('SC', 'Fort Mill'),
('CA', 'Alameda'),
('GA', 'Lawrenceville'),
('CA', 'Reedley'),
('VA', 'Lovettsville'),
('NC', 'Efland'),
('CA', 'Redwood City'),

33
('VIC', 'Cranbourne North'),
('CA', 'Bakersfield'),
('NY', 'Sloatsburg'),
('VA', 'King George'),
('C', 'Galway'),
('SOM', 'Bath'),
('NSW', 'Sylvania'),
('KY', 'Louisville'),
('MA', 'Roslindale'),
('IL', 'Springfield'),
('WA', 'Bellingham'),
('NY', 'Vermontville'),
('NY', 'Bronx'),
('2', 'Singapore'),
('CA', 'Belmont'),
('CA', 'Solvang'),
('CO', 'Pueblo'),
('CA', 'Concord'),
('NV', 'Sparks'),
('WA', 'Vancouver'),
('R', 'Saint Jean De Monts'),
('VT', 'Montpelier'),
('MA', 'West Newton'),
('CA', 'Citrus Heights'),
('VL', 'Vilnius'),
('NC', 'Statesville'),
('UKM', 'Chippenham'),
('QC', 'Montreal'),
('CA', 'Carlsbad'),
('NC', 'Wilmington'),
('CA', 'Sherman Oaks'),
('LIN', 'Grimsby'),
('HI', 'Kailua'),
('NC', 'Hampstead'),
('ME', 'Orland'),
('OH', 'Cincinnati'),
('VT', 'Manchester Center'),
('WI', 'Onalaska'),
('N/A', 'Stapleford'),
('CA', 'San Clemente'),
('CO', 'Littleton'),
('VIC', 'Ashwood'),
('ON', 'Oshawa'),
('DIF', 'Mexico City'),
('ON', 'Beeton'),
('NH', 'Swanzey'),
('KS', 'Topeka'),

34
('TX', 'Seguin'),
('CA', 'Escondido'),
('CA', 'Seaside'),
('OH', 'Waynesville'),
('OH', 'Reynoldsburg'),
('0', 'Quezon City'),
('PA', 'Moscow'),
('CO', 'Craig'),
('CT', 'Danielson'),
('CA', 'Ferndale'),
('VA', 'Newport News'),
('VA', 'Woodbridge'),
('CA', 'Ben Lomond'),
('MA', 'Amherst'),
('NY', 'Nyack'),
('RI', 'Barrington'),
('FL', 'New Port Richey'),
('CA', 'Dublin'),
('CA', 'Carmel'),
('NY', 'Chappaqua'),
('MA', 'Dover'),
('NH', 'Amherst'),
('N/A', 'Singapore'),
('NH', 'Portsmouth'),
('AZ', 'Scottsdale'),
('MA', 'Brighton'),
('AK', 'Anchorage'),
('HI', 'Kapaa'),
('CA', 'Coronado'),
('CA', 'Mountain View'),
('CO', 'Basalt'),
('MA', 'Northampton'),
('TN', 'Knoxville'),
('NY', 'Spencertown'),
('NJ', 'Morristown'),
('D', 'Karkur'),
('IN', 'Gary'),
('MI', 'Holland'),
('TN', 'Brentwood'),
('SC', 'Aiken'),
('CO', 'Steamboat Springs'),
('CA', 'Sacramento'),
('MA', 'Quincy'),
('NJ', 'Trenton'),
('CO', 'Boulder'),
('CT', 'New Canaan'),
('WA', 'Mercer Island'),

35
('CA', 'Daly City'),
('IN', 'Westfield'),
('NY', 'Scarsdale'),
('VA', 'Williamsburg'),
('PA', 'York'),
('CA', 'Sunnyvale'),
('FL', 'Dunedin'),
('FL', 'Cape Coral'),
('MA', 'Hingham'),
('MA', 'Allston'),
('NY', 'New Paltz'),
('NY', 'Pleasantville'),
('NJ', 'Manasquan'),
('CA', 'Santa Monica'),
('WA', 'Sequim'),
('PA', 'Elkins Park'),
('PA', 'Lansdowne'),
('NJ', 'Hainesport'),
('FL', 'Rockledge'),
('MD', 'Chevy Chase'),
('NY', 'Larchmont'),
('CT', 'Norwalk'),
('CA', 'Van Nuys'),
('NJ', 'Woodbridge'),
('PA', 'Erie'),
('GA', 'Smyrna'),
('RI', 'Westerly'),
('NY', 'Jamaica'),
('TN', 'Nashville'),
('VA', 'Midlothian'),
('TN', 'Dandridge'),
('CA', 'Woodland'),
('NH', 'Concord'),
('MI', 'Chelsea'),
('BY', 'Munich'),
('SC', 'Rock Hill'),
('OH', 'Toledo'),
('NY', 'Spencer'),
('NJ', 'Montclair'),
('MD', 'Potomac'),
('AK', 'Fairbanks'),
('AR', 'Little Rock'),
('CA', 'Sausalito'),
('GA', 'Athens'),
('PA', 'Tunkhannock'),
('NM', 'Las Vegas'),
('88', 'Cagliari'),

36
('RM', 'Santiago'),
('CO', 'Brighton'),
('VA', 'Purcellville'),
('75', 'Cassano Delle Murge'),
('FL', 'Tampa'),
('FL', 'West Palm Beach'),
('OR', 'Bend'),
('MT', 'Bozeman'),
('GE', 'Vandoeuvres '),
('OH', 'Cleveland'),
('CA', 'Santa Cruz'),
('MN', 'Princeton'),
('CT', 'Stamford'),
('NSW', 'Paddington'),
('21', 'Torino'),
('GA', 'Saint Simons Island'),
('WI', 'Mc Farland'),
('NW', 'Duesseldorf'),
('FL', 'Odessa'),
('MO', 'Kansas City'),
('CA', 'Stinson Beach'),
('83', 'Tranekær'),
('MI', 'Bloomfield Hills'),
('J', 'Paris'),
('NY', 'East Northport'),
('CA', 'Bonsall'),
('FL', 'Boynton Beach'),
('MN', 'Marshall'),
('NC', 'Matthews'),
('CA', 'Los Gatos'),
('NM', 'Placitas'),
('MD', 'Silver Spring'),
('PA', 'Lansdale'),
('NY', 'Greenlawn'),
('NC', 'Morrisville'),
('NJ', 'Cape May'),
('TX', 'Wimberley'),
('MD', 'Easton'),
('CT', 'Greenwich'),
('MD', 'Sparks Glencoe'),
('MN', 'Mound'),
('1', 'Oslo'),
('NJ', 'Summit'),
('CA', 'Benicia'),
('MD', 'Ellicott City'),
('KS', 'Manhattan'),
('SC', 'Landrum'),

37
('OR', 'Hillsboro'),
('CA', 'Apple Valley'),
('MN', 'Andover'),
('NY', 'Ontario'),
('IN', 'New Albany'),
('NC', 'Gibsonville'),
('IL', 'Champaign'),
('MI', 'Cass City'),
('MI', 'Ypsilanti'),
('MD', 'Columbia'),
('FL', 'Winter Park'),
('TN', 'Bristol'),
('MD', 'Frederick'),
('VA', 'Lebanon'),
('FL', 'Gainesville'),
('AZ', 'Tempe'),
('OH', 'Lower Salem'),
('NC', 'Davidson'),
('ME', 'New Gloucester'),
('NY', 'Niagara University'),
('NJ', 'Ridgewood'),
('VA', 'Norfolk'),
('OK', 'Oklahoma City'),
('ME', 'Orono'),
('CT', 'Westport'),
('CT', 'Fairfield'),
('OK', 'Edmond'),
('KS', 'Galena'),
('NJ', 'Spring Lake'),
('MA', 'Centerville'),
('NY', 'Pelham'),
('KS', 'Shawnee'),
('WA', 'Walla Walla'),
('IA', 'Ames'),
('WSX', 'Midhurst'),
('ZH', 'Greifensee'),
('MI', 'Dexter'),
('MA', 'Hampden'),
('NC', 'Clemmons'),
('VA', 'Burke'),
('PA', 'Avondale'),
('NY', 'Peru'),
('IN', 'Evansville'),
('GU', 'Guatemala City'),
('NJ', 'Monitor'),
('VA', 'Chester'),
('NJ', 'Brick'),

38
('OH', 'Mount Vernon'),
('NH', 'East Andover'),
('MN', 'Winona'),
('OH', 'Loveland'),
('CA', 'Oceanside'),
('NC', 'Highlands'),
('VA', 'Reedville'),
('VIC', 'Ascot Vale'),
('GA', 'Chatsworth'),
('CA', 'San Mateo'),
('MA', 'Worcester'),
('VA', 'Ashburn'),
('NY', 'Oakdale'),
('AZ', 'Tubac'),
('CA', 'Corona'),
('OH', 'Canton'),
('NY', 'Binghamton'),
('TX', 'Irving'),
('TX', 'San Antonio'),
('NJ', 'Parsippany'),
('FL', 'Pompano Beach'),
('CA', 'Azusa'),
('VT', 'Cabot'),
('CA', 'Claremont'),
('BY', 'Moosen'),
('ME', 'Bath'),
('MA', 'Lincoln'),
('NY', 'Utica'),
('CA', 'Walnut Creek'),
('KS', 'Wichita'),
('CT', 'Hamden'),
('CA', 'Corralitos'),
('OH', 'Bowling Green'),
('CO', 'Manitou Springs'),
('CT', 'East Haven'),
('TX', 'Roanoke'),
('CA', 'La Mesa'),
('MD', 'Chesapeake City'),
('TX', 'El Paso'),
('NJ', 'Bedminster'),
('MD', 'Reisterstown'),
('NC', 'Fayetteville'),
('NY', 'Ithaca'),
('PA', 'Dingmans Ferry'),
('NSW', 'Umina Beach'),
('QC', 'Chelsea'),
('HH', 'Hamburg'),

39
('DE', 'Rehoboth Bch'),
('AZ', 'Peoria'),
('KY', 'Lexington'),
('2', 'Hosle'),
('BC', 'British Columbia'),
('MA', 'Sudbury'),
('VA', 'Broadway'),
('MT', 'Livingston'),
('CA', 'Riverside'),
('MI', 'Royal Oak'),
('IN', 'Carmel'),
('CT', 'Portland'),
('CO', 'Salida'),
('NY', 'West Babylon'),
('6', 'Drammen'),
('OH', 'Hamilton'),
('CO', 'Denver'),
('VA', 'Fairfax'),
('BNE', 'London'),
('GA', 'Hamilton'),
('FL', 'Atlantic Beach'),
('2', 'Nesbru'),
('MB', 'Winnipeg'),
('CA', 'Newport Beach'),
('1', 'Mjølkeråen'),
('NY', 'Albany'),
('CA', 'Atherton'),
('45', 'Ravenna'),
('NJ', 'Far Hills'),
('CA', 'Emeryville'),
('TX', 'Richmond'),
('NV', 'Reno'),
('MI', 'Troy'),
('TM', 'Timisoara'),
('NY', 'Mahopac'),
('GA', 'Fort Valley'),
('NC', 'Weaverville'),
('WA', 'Mount Vernon'),
('S', 'Christchurch'),
('PA', 'Mechanicsburg'),
('FL', 'Brooksville'),
('FL', 'Jupiter'),
('NY', 'Floral Park'),
('MT', 'Big Sky'),
('NJ', 'Chester'),
('CT', 'New Milford'),
('NY', 'Syracuse'),

40
('NY', 'Hastings On Hudson'),
('TX', 'Sugar Land'),
('62', 'Rignano Flaminio'),
('IL', 'Morris'),
('10', 'Vennesla'),
('TN', 'Franklin'),
('GA', 'Bonaire'),
('UT', 'Park City'),
('NJ', 'Mullica Hill'),
('CA', 'Marina Del Rey'),
('CO', 'Arvada'),
('DE', 'Lewes'),
('NY', 'Ossining'),
('MD', 'Mount Airy'),
('VA', 'Dulles'),
('CA', 'Calimesa'),
('CA', 'Rancho Santa Fe'),
('5', 'Singapore'),
('SC', 'Spartanburg'),
('OR', 'Beaverton'),
('CA', 'Torrance'),
('NY', 'Croton On Hudson'),
('HI', 'Paia'),
('IL', 'Antioch'),
('IN', 'Bloomington'),
('OH', 'Brecksville'),
('WA', 'Bothell'),
('AZ', 'Green Valley'),
('MA', 'Taunton'),
('IL', 'Evanston'),
('VA', 'Fredericksburg'),
('DE', 'Wilmington'),
('BC', 'Bowen Island'),
('NY', 'Port Chester'),
('MA', 'Dorchester'),
('NC', 'High Point'),
('NJ', 'Skillman'),
('MA', 'Jamaica Plain'),
('IL', 'Deerfield'),
('NJ', 'Short Hills'),
('PA', 'East Greenville'),
('CO', 'Lafayette'),
('FL', 'Miami Beach'),
('NY', 'Forest Hills'),
('VA', 'Salem'),
('IL', 'Geneva'),
('TX', 'Addison'),

41
('CA', 'Modesto'),
('4', 'Dhahran'),
('ON', 'Quinte Shores'),
('BC', 'Qualicum Beach'),
('WI', 'Verona'),
('MA', 'North Attleboro'),
('VA', 'Dumfries'),
('RI', 'West Kingston'),
('BC', 'Bc'),
('CA', 'Culver City'),
('KEN', 'Bromley'),
('SC', 'North Myrtle Beach'),
('NY', 'Irvington'),
('CA', 'West Covina'),
('MI', 'Levering'),
('PA', 'Merion Station'),
('NJ', 'Mount Laurel'),
('WY', 'Jackson'),
('CA', 'Encinitas'),
('TN', 'Lebanon'),
('VIC', 'Parkdale'),
('NSW', 'Kanwal'),
('WA', 'Vashon'),
('TX', 'League City'),
('4', 'Moelv'),
('NL', 'Paradise'),
('MA', 'Chestnut Hill'),
('NY', 'Huntington Station'),
('AL', 'Tuscumbia'),
('VA', 'Seaford'),
('SP', 'Atibaia'),
('VT', 'Pawlet'),
('N/A', 'N/A'),
('SD', 'Rapid City'),
('IN', 'Schererville'),
('VT', 'Stowe'),
('VA', 'Ashland'),
('KY', 'Waddy'),
('NJ', 'Bound Brook'),
('AZ', 'Mesa'),
('CO', 'Mead'),
('WI', 'Cross Plains'),
('MA', 'Lexington'),
('NC', 'Pfafftown'),
('MN', 'Burnsville'),
('MN', 'Harris'),
('WA', 'Wenatchee'),

42
('45', 'Ferrara'),
('IL', 'Winfield'),
('MA', 'East Longmeadow'),
('CA', 'Venice'),
('NJ', 'Clinton'),
('NJ', 'Old Bridge'),
('CA', 'Davis'),
('PA', 'West Chester'),
('NY', 'Sparrow Bush'),
('PA', 'Abington'),
('MI', 'Vernon'),
('ACT', 'N/A'),
('IL', 'Oak Park'),
('NC', 'Bahama'),
('ACT', 'Sale'),
('IN', 'Lafayette'),
('CA', 'Los Osos'),
('IN', 'Valparaiso'),
('IA', 'Iowa City'),
('MN', 'Moorhead'),
('MI', 'Sterling Heights'),
('MA', 'Wellesley'),
('CA', 'Moorpark'),
('NY', 'Mount Vernon'),
('CA', 'Fullerton'),
('NJ', 'Califon'),
('NY', 'Oyster Bay'),
('8', 'Skien'),
('NY', 'Nanuet'),
('NC', 'Mebane'),
('CO', 'Johnstown'),
('FL', 'Saint Cloud'),
('OH', 'Huron'),
('MA', 'Southampton'),
('AZ', 'Sedona'),
('VA', 'Great Falls'),
('FL', 'North Fort Myers'),
('GA', 'Gainesville'),
('BC', 'Surrey'),
('IA', 'Fairfield'),
(None, None),
('FL', 'Bradenton'),
('WA', 'North Bend'),
('TN', 'Athens'),
('KS', 'Augusta'),
('WA', 'Roslyn'),
('NB', 'Fredericton'),

43
('TN', 'Murfreesboro'),
('WI', 'Hubertus'),
('FL', 'Edgewater'),
('VA', 'Aldie'),
('WA', 'Kent'),
('CA', 'Napa'),
('TN', 'Chattanooga'),
('CA', 'Huntington Beach'),
('BC', 'Comox'),
('BC', 'Port Moody'),
('PA', 'Harrisburg'),
('AB', 'Lethbridge'),
('UT', 'Utrecht'),
('3', 'Oslo'),
('IL', 'Peoria'),
('CO', 'Loveland'),
('AZ', 'Tolleson'),
('NY', 'Yonkers'),
('CA', 'San Rafael'),
('MD', 'Davidsonville'),
('HE', 'Lahntal'),
('CA', 'Glendale'),
('VA', 'Free Union'),
('NY', 'Middle Village'),
('SRY', 'Guildford'),
('AK', 'Kotzebue'),
('WA', 'Mount Lawley'),
('21', 'Turin'),
('12', 'Knarrevik'),
('NJ', 'Andover'),
('NJ', 'Tuckerton'),
('GA', 'Roswell'),
('WA', 'Perth'),
('ON', 'Johnstown'),
('WA', 'Medina'),
('NC', 'Randleman'),
('SP', 'Campinas'),
('CA', 'Redlands'),
('NJ', 'Voorhees'),
('KS', 'Lawrence'),
('ES', 'Hki'),
('NS', 'Halifax'),
('VT', 'Shelburne'),
('TN', 'Antioch'),
('NJ', 'Glendora'),
('IL', 'Naperville'),
('CA', 'Petaluma'),

44
('FL', 'Winter Garden'),
('FL', 'Ocoee'),
('VA', 'Chesterfield'),
('FL', 'Titusville'),
('FL', 'Howey In The Hills'),
('OH', 'Strongsville'),
('MN', 'Duluth'),
('IL', 'Downers Grove'),
('CA', 'Lincoln'),
('CA', 'Sonoma'),
('VA', 'Philomont'),
('IN', 'Fishers'),
('PA', 'Huntingdon'),
('FL', 'Clermont'),
('CA', 'Lakeside'),
('ME', 'Westbrook'),
('KY', 'Bowling Green'),
('MI', 'Stevensville'),
('OH', 'Gambier'),
('WA', 'Bellevue'),
('IN', 'Zionsville'),
('VA', 'Smithfield'),
('CA', 'Tehachapi'),
('OH', 'Vermilion'),
('TX', 'Friendswood'),
('CA', 'Sebastopol'),
('NY', 'Middle Island'),
('NY', 'Hicksville'),
('NJ', 'Englewood'),
('CO', 'Monument'),
('TX', 'Bullard'),
('MI', 'Richland'),
('NJ', 'Middletown'),
('MD', 'Annapolis'),
('TX', 'Fort Worth'),
('NC', 'Cashiers'),
('VA', 'Marion'),
('IA', 'Knoxville'),
('NSW', 'Farmborough Heights'),
('FL', 'Navarre'),
('CA', 'Folsom'),
('TX', 'Georgetown'),
('ID', 'Meridian'),
('IL', 'Park Ridge'),
('CA', 'Danville'),
('CA', 'Temecula'),
('CA', 'Los Altos'),

45
('MS', 'Houston'),
('GA', 'Decatur'),
('CA', 'Shingle Springs'),
('TX', 'Midland'),
('PA', 'Collegeville'),
('NY', 'Shelter Island'),
('CA', 'Vallejo'),
('OH', 'Pataskala'),
('IL', 'O Fallon'),
('ID', 'Boise'),
('FL', 'Palm Bay'),
('FL', 'Morriston'),
('PA', 'Wexford'),
('IL', 'Macomb'),
('VA', 'The Plains'),
('CO', 'Glenwood Springs'),
('NY', 'Franklin Square'),
('MA', 'Salem'),
('NC', 'Cornelius'),
('NH', 'Wilmot'),
…]

If you examine the query output carefully, you will see that there are many rows with California
(CA) in the state column and four rows that have Gainesville in the city column (Georgia, Arkansas,
Florida, and Virginia all have cities named Gainesville in our user table), but no two rows have the
same state and city combination.
When you use the DISTINCT clause with the LIMIT clause in a statement, MySQL stops searching
when it finds the number of unique rows specified in the LIMIT clause, not when it goes through
the number of rows in the LIMIT clause.
For example, if the first 6 entries of the breed column in the dogs table were:
Labrador Retriever
Shetland Sheepdog
Golden Retriever
Golden Retriever
Shih Tzu
Siberian Husky
The output of the following query:
SELECT DISTINCT breed
FROM dogs LIMIT 5;
would be the first 5 different breeds:
Labrador Retriever
Shetland Sheepdog
Golden Retriever
Shih Tzu

46
Siberian Husky
not the distinct breeds in the first 5 rows:
Labrador Retriever
Shetland Sheepdog
Golden Retriever
Shih Tzu
Question 2: How would you list all the possible combinations of test names and sub-
category names in complete_tests table? (If you do not limit your output, you should
retrieve 45 possible combinations)

[15]: %%sql
SELECT DISTINCT test_name,subcategory_name
FROM complete_tests;

* mysql://studentuser:***@localhost/dognitiondb
45 rows affected.

[15]: [('Yawn Warm-up', 'Empathy'),


('Yawn Game', 'Empathy'),
('Eye Contact Warm-up', 'Empathy'),
('Eye Contact Game', 'Empathy'),
('Treat Warm-up', 'Communication'),
('Arm Pointing', 'Communication'),
('Foot Pointing', 'Communication'),
('Watching', 'Cunning'),
('Turn Your Back', 'Cunning'),
('Cover Your Eyes', 'Cunning'),
('Watching - Part 2', 'Cunning'),
('One Cup Warm-up', 'Memory'),
('Two Cup Warm-up', 'Memory'),
('Memory versus Pointing', 'Memory'),
('Memory versus Smell', 'Memory'),
('Delayed Cup Game', 'Memory'),
('Inferential Reasoning Warm-up', 'Reasoning'),
('Inferential Reasoning Game', 'Reasoning'),
('Physical Reasoning Warm-up', 'Reasoning'),
('Physical Reasoning Game', 'Reasoning'),
('Navigation Warm-up', 'Spatial Navigation'),
('Navigation Learning', 'Spatial Navigation'),
('Navigation Game', 'Spatial Navigation'),
('Impossible Task Warm-up', 'Impossible Task'),
('Impossible Task Game', 'Impossible Task'),
('Numerosity Warm-Up', 'Numerosity'),
('5 vs 1 Game', 'Numerosity'),
('3 vs 1 Game', 'Numerosity'),
('Warm-Up', 'Social Bias'),

47
('1 vs 1 Game', 'Social Bias'),
('5 vs 1 Game', 'Social Bias'),
('Warm-up', 'Smell Game'),
('Smell Game', 'Smell Game'),
('Warm-Up', 'Shell Game'),
('Switch', 'Shell Game'),
('Slide', 'Shell Game'),
('Warm-Up', 'Self Control Game'),
('Self Control Game', 'Self Control Game'),
('Warm-Up', 'Expression Game'),
('Expression Game', 'Expression Game'),
('Different Perspective', 'Perspective Game'),
('Shared Perspective', 'Perspective Game'),
('Stair Game', 'Laterality'),
('Shaker Warm-Up', 'Shaker Game'),
('Shaker Game', 'Shaker Game')]

1.3 3. Use ORDER BY to sort the output of your query

As you might have noticed already when examining the output of the queries you have executed
thus far, databases do not have built-in sorting mechanisms that automatically sort the output of
your query. However, SQL permits the use of the powerful ORDER BY clause to allow you to sort
the output according to your own specifications. Let’s look at how you would implement a simple
ORDER BY clause.
Recall our query outline:
Your ORDER BY clause will come after everything else in the main part of your query, but before
a LIMIT clause.
If you wanted the breeds of dogs in the dog table sorted in alphabetical order, you could query:
SELECT DISTINCT breed
FROM dogs
ORDER BY breed
Try it yourself:
[22]: %%sql
SELECT DISTINCT user_guid, state, membership_type
FROM users
WHERE country="US"
ORDER BY state ASC, membership_type ASC

* mysql://studentuser:***@localhost/dognitiondb
9356 rows affected.

[22]: [('ce138312-7144-11e5-ba71-058fbc01cf0b', 'AE', 1),


('ce7587ba-7144-11e5-ba71-058fbc01cf0b', 'AE', 1),

48
('ce76f528-7144-11e5-ba71-058fbc01cf0b', 'AE', 1),
('ce221dbe-7144-11e5-ba71-058fbc01cf0b', 'AE', 2),
('ce70836e-7144-11e5-ba71-058fbc01cf0b', 'AE', 2),
('ce969298-7144-11e5-ba71-058fbc01cf0b', 'AE', 3),
('ce26e01a-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce351572-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce3c3b36-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce4170ec-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce666e38-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce7007a4-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce718782-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce72c64c-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce72ef5a-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce735210-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce741718-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce74f656-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce756d52-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce77149a-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce7c50ae-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce7cc106-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce945e92-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce95ab26-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce9767ae-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce98bdca-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce267512-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce29dde2-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce45974e-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce9ab9b8-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce88a2f0-7144-11e5-ba71-058fbc01cf0b', 'AK', 3),
('ce2533f0-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce2d932e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce34b564-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce4018c8-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce46ba34-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce46bafc-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce6d9a82-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce6e8bfe-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce72b0a8-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce733e74-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7462f4-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce74ae1c-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce74dca2-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7b62a2-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7c0e32-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7c5e6e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7cf14e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7e4d82-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),

49
('ce7e5b06-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7eb920-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7ed1da-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce819190-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce82a382-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce8327bc-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce83c6f4-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce844dea-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce84c2e8-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce878f28-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce8b2c1e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce957a0c-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce96b9c6-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce971916-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce9aece4-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce242aa0-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce289324-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce6ed06e-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce6f86bc-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce723c0e-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce727124-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce7cb79c-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce97cff0-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce7031c0-7144-11e5-ba71-058fbc01cf0b', 'AL', 3),
('ce730c6a-7144-11e5-ba71-058fbc01cf0b', 'AL', 3),
('ce840a06-7144-11e5-ba71-058fbc01cf0b', 'AL', 3),
('ce7c06bc-7144-11e5-ba71-058fbc01cf0b', 'AP', 1),
('ce245e6c-7144-11e5-ba71-058fbc01cf0b', 'AP', 2),
('ce2b2ba2-7144-11e5-ba71-058fbc01cf0b', 'AP', 2),
('ce6e84d8-7144-11e5-ba71-058fbc01cf0b', 'AP', 2),
('ce255b64-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce26e074-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce3f6d6a-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce4063a0-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce6dbc88-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce6ddd44-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce6ed74e-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce70b2e4-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce70f2e0-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce718250-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce7745d2-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce778510-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce784f40-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce7a5d80-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce81b1ac-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce828082-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce8346a2-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),

50
('ce854704-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce8b1c74-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce90b1de-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce96c0e2-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce96cf42-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce96f620-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce97578c-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce2dca2e-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce3315ba-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce6c62b6-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce6ca690-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce7269b8-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce7cc1c4-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce7da440-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce82a94a-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce82b020-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce96c470-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce9a5f9a-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce78f12a-7144-11e5-ba71-058fbc01cf0b', 'AR', 3),
('ce24c226-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce25eaa2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce264876-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce26826e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce275248-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce275aae-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce275bd0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce27aa68-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce27e0d2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce28ed4c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce298658-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2a9bba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2accc0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2b3214-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2dbc50-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce3d5142-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce3d9ca6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce3e2928-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce4093ca-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce40edac-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce415f6c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce458600-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6644bc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce66c982-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce675050-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce675cf8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce675f96-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce678494-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

51
('ce6deb18-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6df6e4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6e0b8e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6e7ce0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6ecfb0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6f390a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6f5336-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6f6812-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce704dae-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce705326-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70a27c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70a682-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70b226-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70ef8e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce712724-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce720a9a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce724884-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce727372-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce72b846-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce73263c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce735f62-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce739842-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7424ce-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce742f50-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce746182-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce74629a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce74719a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce748aa4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce74c0c8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7506a0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce75169a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce758224-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce75dc7e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce75fd80-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce76097e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce766c16-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce768354-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce771062-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce79defa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce79e2f6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a1564-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a7ea0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a835a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a96ba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7ae1ba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b028a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b501e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

52
('ce7b749a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b9056-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b956a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b96fa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7bd3b8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7bf12c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c4546-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c4ef6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c5112-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c6c9c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7caea0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7ce99c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7cee4c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7d4f2c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e030e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e05ca-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e0d2c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e0ef8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e2eba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e331a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e3752-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7ed068-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce81361e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8205ee-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce820a30-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce820c74-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce820d3c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce825260-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce82bca0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce82c146-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce82d32a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce834530-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce834bde-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce83af8e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce83b7cc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce83bf42-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8410aa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce842888-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce848a3a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce84a970-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8530de-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce853a66-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce85445c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce866d96-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce869b7c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce86a248-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce86d826-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

53
('ce870616-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce878fe6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8816b4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce884026-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce887316-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce899e44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8ac3fa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8b1ae4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce935c5e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce95a1da-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce95b210-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce962cfe-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9637ee-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce96556c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce96f3f0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce97115a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9740f8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce974184-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce97593a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce97d176-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce98098e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce984598-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce985812-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce99b824-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce99bb12-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9ac1d8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9afb44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce137034-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce224d52-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce2415ba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce24d0cc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce252144-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce26715c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce267332-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce2673f0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce26c31e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce26dd7c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce2717f6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce275f86-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce276742-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce276a62-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce277e30-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce27915e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce279578-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce27b2d8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce27c1e2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce280a44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),

54
('ce280d64-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce28b46c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce28dc94-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce299260-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce29b876-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce29cf50-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce3ef01a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce3ef39e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce3fd246-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce408786-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce410f44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce46e6da-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce471a74-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6de9c4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6dee24-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6df054-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6fe8c8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce708314-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce71a532-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce71e39e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce734fcc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce738ee2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7421f4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce74fd18-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce770b62-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce77539c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce798e78-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7a559c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7b0ffa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7c108a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7c8ec0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7d3f28-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7db7f0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7e5106-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7e8f04-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7f0484-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce851a40-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce878d98-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce879f68-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce88940e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce88bdda-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce92f46c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce40ffea-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce4701b0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce664890-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce6c4d44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce6cce4a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),

55
('ce6ee252-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce72019e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce98bd0c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce1373ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce1379c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce1389d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce13a734-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce22680a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2454c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce245926-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce249bac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce24dae0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce24de50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce24eb52-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce250fb0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251348-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251744-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2518b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251974-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251a32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25277a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce252e78-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25333c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2537ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25420a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce258a6c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce259494-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25b4e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25bd2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25c252-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25c306-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25c414-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25d436-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25e2a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25e98a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25ee8a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25f538-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce260e6a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce261216-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2612d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2635c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce264cd6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce265f28-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce266342-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26657c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce266c2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce266ce8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

56
('ce2675da-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26763e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26a000-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26d73c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26e1fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26e2b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26ef42-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26efa6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26f6d6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2702a2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce270540-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce270cc0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce270de2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce271396-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce271f44-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce274afa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce274bb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce275b6c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce278178-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2782f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2786aa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce278ec0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce279956-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27bf3a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c002-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c0ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c110-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c3f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c6ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27d934-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27e87a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27fa86-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27fec8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2802d8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce280ca6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2825e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28411c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28482e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce286520-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce286dcc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce286ee4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28716e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce287b46-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2897ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28bea8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28c56a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28d776-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

57
('ce28e5b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce29021e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2903b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce296e66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce29cdd4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce29f0f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a46e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8c9c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8d64-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8e86-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8f44-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8fa8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9070-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a92c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9566-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a96ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9872-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9ab6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9cf0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9da4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2aa308-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ad012-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ad36e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ad602-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2adabc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ae20a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2af29a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2afb6e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2aff6a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b06f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b17de-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b22a6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b4f42-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b7152-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b7210-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b884a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b8caa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b8f98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2c79ee-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2c7dae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2c827c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2cbe68-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ccdf4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2dbbc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2e13a8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce32fd00-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce33023c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

58
('ce33102e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce339ab2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce34af92-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce34ba50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3a85e8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3a8a66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3a8d04-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c1b2e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c24f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c612e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c8bae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3cbd7c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1b3c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1c5e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1dee-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1fe2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d370c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d40ee-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d54d0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d55fc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d6f1a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d8144-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d8c8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d9652-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d9b0c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d9b70-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3da3ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dacb4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3db0f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dc4e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dc582-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dd3e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3de5c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3ded32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e10a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e2aae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e3922-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e3dc8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e4642-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e52a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e77c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3eebc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0852-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0a50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0b18-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0c4e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f1112-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

59
('ce3f13ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f439e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f4574-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f4f10-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f578a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f6fb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f797c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f8ad4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f8ffc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3fc670-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3fc6ca-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3fc85a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3ff38e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce405216-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce406d46-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce409bf4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40a432-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40a5f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40f5fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40ff86-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce41216e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce4154d6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce415e4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce419374-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce4591b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce46e2ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce46f508-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce46fdf0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce5c2374-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66351c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6678d8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6681e8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6688c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66b122-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66ee08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66f1c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66fc0e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce670f6e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce67208a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c2b70-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c41e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c42a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c6004-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c82e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6cbdf6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6de190-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6df13a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

60
('ce6e0418-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e05d0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e080a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0c6a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0e9a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0fe4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1052-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e119c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e135e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e143a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1656-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e187c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1958-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e19c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1aac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1c00-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1f3e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e21e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e23a8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e256a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e26be-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2812-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e28f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2a38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2b78-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2c4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2cae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e3000-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e31fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e32e4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e37bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e3e38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e43b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e57f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e599a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e59f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5aa8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5b5c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5d32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5e40-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e600c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e623c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e62f0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e634a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e64b2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e678c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6840-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

61
('ce6e68f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6c8c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6ce6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6d4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6da4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6dfe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6e58-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e7312-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e7628-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e77e0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e786c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e798e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e7aa6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e8f46-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ea008-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ec4c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ed5dc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ed866-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6eda32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ee086-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ee40a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6eee78-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6eef9a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ef170-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ef698-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6efbac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6efd1e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f055c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f0908-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f21a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f2f00-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f318a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f32ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f33ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f34fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f361c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f36da-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3b9e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3c5c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3dce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3ffe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f422e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f4c88-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f5674-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f5b38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f5bf6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f61d2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

62
('ce6f663c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f6934-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f750a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f75d2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f8234-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f884c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fa4da-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fa908-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6faa98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fabba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6facdc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fad9a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb1c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb222-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb2e0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb4ca-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb52e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb8bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fcb72-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fce74-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fd1a8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fd338-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fda7c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fdb44-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fe1fc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fe382-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fe4ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce700e66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce700fba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70124e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7012b2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701370-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701a3c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701aa0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701fd2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70202c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce702090-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce702ed2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce703698-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce703936-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce703e54-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70412e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7041e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7046ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704746-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7048b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704980-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

63
('ce704a98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704d4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704fde-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7051b4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce705272-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70543e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce705498-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7054fc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7055ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70566e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce705cb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7060e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7089f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70917e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7092fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70976e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7099f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce709a8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70a164-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70a7f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70b33e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70b4ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70b91a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70bbf4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70c0d6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70c680-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70c8b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70e840-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70f0b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70f5ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce710b68-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce710ef6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71127a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce711464-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7116b2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce711fb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71224c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712364-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71247c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71259e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712a62-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712b20-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712be8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712cb0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712dd2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712e36-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7130de-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

64
('ce713142-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7132c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce715cb2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce716270-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7169be-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce716a18-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce716cc0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7170e4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71853e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7185a2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71884a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce718b56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce718d40-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce718e08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7193f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7198e4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a046-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a640-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a99c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a9f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71aa50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71d48a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71dac0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71e4b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71e970-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71fd16-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7202b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7204fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720676-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7207f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720856-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7208ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720a36-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720af4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce721b8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce721c4c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce721d64-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce723d08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724168-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724226-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7246a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72476c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724a0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724d52-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724ece-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce725324-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72621a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

65
('ce726332-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7264fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72667a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce726738-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72688c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce727e6c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7284d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ad56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b332-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b44a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b616-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b8a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b9ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72bcf6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72bf80-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72c14c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72c7aa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ca98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72d66e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72d722-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ddbc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72dede-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72dfec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72e226-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72e460-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ea82-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72efbe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72f18a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72fbda-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72fc34-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7301c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7308e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7318f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce731ee4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce732178-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7321d2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7326a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce733384-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce733c94-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce733ff0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7342de-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7343f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce734572-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce734748-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce734e50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73508a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce735580-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

66
('ce735c42-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce735e04-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce736246-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7375ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce738bfe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce738e2e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce739284-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7393f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce739fa4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73a0f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73a2ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73a5bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73ab2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73af30-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73e7ca-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f346-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f4b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f800-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f85a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f9cc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74071e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce740b92-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce740cd2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce740d5e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7411b4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce741830-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce741a06-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742302-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74287a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7428d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742992-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742dd4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742e38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743004-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74346e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743590-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7435f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743702-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743ba8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce744256-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce745f52-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74606a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746240-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746826-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746880-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746a56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746b0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

67
('ce746c22-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746d94-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746f10-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce747366-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74753c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce748068-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce748342-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7488b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce748e0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce749454-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74a278-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74d450-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74d518-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74d824-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74da5e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74dac2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74dcfc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74e314-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74e670-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74eb2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74fde0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74ff02-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7505e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75063c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75088a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7509b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce750a1a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75126c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7518f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce751b2c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce751be0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce752022-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce752086-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7541f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce754e08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce755394-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75592a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce756a5a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7570a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75cbda-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75cdc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75cf4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75ebc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76416e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76691e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7669dc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce767ad0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

68
('ce767b34-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7687f0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce768eb2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce769290-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76b608-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76bfe0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76ca80-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76e650-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76f9e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76fbe0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce773b32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce77462c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce775acc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce775be4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce776fda-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce778b0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce77a0fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce77c2f0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce781a02-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78416c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78459a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78687c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce786912-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce788168-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7891bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78954a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78c312-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78cd1c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78cd76-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78f760-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78fab2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7921cc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce794878-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce795372-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce795c8c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce796a92-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7998a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79c1e0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79db12-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79dcf2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79f732-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79f98a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a0498-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a1500-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a15c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a3a80-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a5402-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

69
('ce7a598e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a6d8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a8f9e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a912e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a94bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a998a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7aaa56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7ad77e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7adcec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7aea66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7af862-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
…]

(You might notice that some of the breeds start with a hyphen; we’ll come back to that later.)
The default is to sort the output in ascending order. However, you can tell SQL to sort the output
in descending order as well:
SELECT DISTINCT breed
FROM dogs
ORDER BY breed DESC
Combining ORDER BY with LIMIT gives you an easy way to select the “top 10” and “last 10” in
a list or column. For example, you could select the User IDs and Dog IDs of the 5 customer-dog
pairs who spent the least median amount of time between their Dognition tests:
SELECT DISTINCT user_guid, median_ITI_minutes
FROM dogs
ORDER BY median_ITI_minutes
LIMIT 5
or the greatest median amount of time between their Dognition tests:
SELECT DISTINCT user_guid, median_ITI_minutes
FROM dogs
ORDER BY median_ITI_minutes DESC
LIMIT 5
You can also sort your output based on a derived field. If you wanted your inter-test interval to
be expressed in seconds instead of minutes, you could incorporate a derived column and an alias
into your last query to get the 5 customer-dog pairs who spent the greatest median amount of time
between their Dognition tests in seconds:
SELECT DISTINCT user_guid, (median_ITI_minutes * 60) AS median_ITI_sec
FROM dogs
ORDER BY median_ITI_sec DESC
LIMIT 5
Note that the parentheses are important in that query; without them, the database would try to
make an alias for 60 instead of median_ITI_minutes * 60.
SQL queries also allow you to sort by multiple fields in a specified order, similar to how Excel allows

70
to include multiple levels in a sort (see image below):
To achieve this in SQL, you include all the fields (or aliases) by which you want to sort the results
after the ORDER BY clause, separated by commas, in the order you want them to be used for
sorting. You can then specify after each field whether you want the sort using that field to be
ascending or descending.
If you wanted to select all the distinct User IDs of customers in the United States (abbreviated
“US”) and sort them according to the states they live in in alphabetical order first, and membership
type second, you could query:
SELECT DISTINCT user_guid, state, membership_type
FROM users
WHERE country="US"
ORDER BY state ASC, membership_type ASC
Go ahead and try it yourself (if you do not limit the output, you should get 9356 rows
in your output):

[24]: %%sql
SELECT DISTINCT user_guid, state, membership_type
FROM users
WHERE country="US" AND state IS NOT NULL and membership_type IS NOT NULL
ORDER BY state ASC, membership_type ASC

* mysql://studentuser:***@localhost/dognitiondb
9356 rows affected.

[24]: [('ce138312-7144-11e5-ba71-058fbc01cf0b', 'AE', 1),


('ce7587ba-7144-11e5-ba71-058fbc01cf0b', 'AE', 1),
('ce76f528-7144-11e5-ba71-058fbc01cf0b', 'AE', 1),
('ce221dbe-7144-11e5-ba71-058fbc01cf0b', 'AE', 2),
('ce70836e-7144-11e5-ba71-058fbc01cf0b', 'AE', 2),
('ce969298-7144-11e5-ba71-058fbc01cf0b', 'AE', 3),
('ce26e01a-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce351572-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce3c3b36-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce4170ec-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce666e38-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce7007a4-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce718782-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce72c64c-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce72ef5a-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce735210-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce741718-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce74f656-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce756d52-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce77149a-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce7c50ae-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce7cc106-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),

71
('ce945e92-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce95ab26-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce9767ae-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce98bdca-7144-11e5-ba71-058fbc01cf0b', 'AK', 1),
('ce267512-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce29dde2-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce45974e-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce9ab9b8-7144-11e5-ba71-058fbc01cf0b', 'AK', 2),
('ce88a2f0-7144-11e5-ba71-058fbc01cf0b', 'AK', 3),
('ce2533f0-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce2d932e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce34b564-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce4018c8-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce46ba34-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce46bafc-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce6d9a82-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce6e8bfe-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce72b0a8-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce733e74-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7462f4-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce74ae1c-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce74dca2-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7b62a2-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7c0e32-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7c5e6e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7cf14e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7e4d82-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7e5b06-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7eb920-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce7ed1da-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce819190-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce82a382-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce8327bc-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce83c6f4-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce844dea-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce84c2e8-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce878f28-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce8b2c1e-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce957a0c-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce96b9c6-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce971916-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce9aece4-7144-11e5-ba71-058fbc01cf0b', 'AL', 1),
('ce242aa0-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce289324-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce6ed06e-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce6f86bc-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce723c0e-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),

72
('ce727124-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce7cb79c-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce97cff0-7144-11e5-ba71-058fbc01cf0b', 'AL', 2),
('ce7031c0-7144-11e5-ba71-058fbc01cf0b', 'AL', 3),
('ce730c6a-7144-11e5-ba71-058fbc01cf0b', 'AL', 3),
('ce840a06-7144-11e5-ba71-058fbc01cf0b', 'AL', 3),
('ce7c06bc-7144-11e5-ba71-058fbc01cf0b', 'AP', 1),
('ce245e6c-7144-11e5-ba71-058fbc01cf0b', 'AP', 2),
('ce2b2ba2-7144-11e5-ba71-058fbc01cf0b', 'AP', 2),
('ce6e84d8-7144-11e5-ba71-058fbc01cf0b', 'AP', 2),
('ce255b64-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce26e074-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce3f6d6a-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce4063a0-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce6dbc88-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce6ddd44-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce6ed74e-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce70b2e4-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce70f2e0-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce718250-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce7745d2-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce778510-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce784f40-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce7a5d80-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce81b1ac-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce828082-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce8346a2-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce854704-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce8b1c74-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce90b1de-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce96c0e2-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce96cf42-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce96f620-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce97578c-7144-11e5-ba71-058fbc01cf0b', 'AR', 1),
('ce2dca2e-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce3315ba-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce6c62b6-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce6ca690-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce7269b8-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce7cc1c4-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce7da440-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce82a94a-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce82b020-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce96c470-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce9a5f9a-7144-11e5-ba71-058fbc01cf0b', 'AR', 2),
('ce78f12a-7144-11e5-ba71-058fbc01cf0b', 'AR', 3),
('ce24c226-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

73
('ce25eaa2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce264876-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce26826e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce275248-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce275aae-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce275bd0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce27aa68-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce27e0d2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce28ed4c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce298658-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2a9bba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2accc0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2b3214-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce2dbc50-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce3d5142-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce3d9ca6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce3e2928-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce4093ca-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce40edac-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce415f6c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce458600-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6644bc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce66c982-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce675050-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce675cf8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce675f96-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce678494-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6deb18-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6df6e4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6e0b8e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6e7ce0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6ecfb0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6f390a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6f5336-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce6f6812-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce704dae-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce705326-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70a27c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70a682-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70b226-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce70ef8e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce712724-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce720a9a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce724884-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce727372-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce72b846-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce73263c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

74
('ce735f62-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce739842-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7424ce-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce742f50-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce746182-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce74629a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce74719a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce748aa4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce74c0c8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7506a0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce75169a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce758224-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce75dc7e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce75fd80-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce76097e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce766c16-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce768354-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce771062-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce79defa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce79e2f6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a1564-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a7ea0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a835a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7a96ba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7ae1ba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b028a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b501e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b749a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b9056-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b956a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7b96fa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7bd3b8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7bf12c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c4546-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c4ef6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c5112-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7c6c9c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7caea0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7ce99c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7cee4c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7d4f2c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e030e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e05ca-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e0d2c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e0ef8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e2eba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7e331a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

75
('ce7e3752-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce7ed068-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce81361e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8205ee-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce820a30-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce820c74-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce820d3c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce825260-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce82bca0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce82c146-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce82d32a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce834530-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce834bde-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce83af8e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce83b7cc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce83bf42-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8410aa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce842888-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce848a3a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce84a970-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8530de-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce853a66-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce85445c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce866d96-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce869b7c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce86a248-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce86d826-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce870616-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce878fe6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8816b4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce884026-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce887316-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce899e44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8ac3fa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce8b1ae4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce935c5e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce95a1da-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce95b210-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce962cfe-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9637ee-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce96556c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce96f3f0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce97115a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9740f8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce974184-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce97593a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce97d176-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),

76
('ce98098e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce984598-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce985812-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce99b824-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce99bb12-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9ac1d8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce9afb44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 1),
('ce137034-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce224d52-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce2415ba-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce24d0cc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce252144-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce26715c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce267332-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce2673f0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce26c31e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce26dd7c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce2717f6-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce275f86-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce276742-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce276a62-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce277e30-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce27915e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce279578-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce27b2d8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce27c1e2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce280a44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce280d64-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce28b46c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce28dc94-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce299260-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce29b876-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce29cf50-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce3ef01a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce3ef39e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce3fd246-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce408786-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce410f44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce46e6da-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce471a74-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6de9c4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6dee24-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6df054-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce6fe8c8-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce708314-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce71a532-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce71e39e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),

77
('ce734fcc-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce738ee2-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7421f4-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce74fd18-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce770b62-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce77539c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce798e78-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7a559c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7b0ffa-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7c108a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7c8ec0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7d3f28-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7db7f0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7e5106-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7e8f04-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce7f0484-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce851a40-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce878d98-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce879f68-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce88940e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce88bdda-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce92f46c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 2),
('ce40ffea-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce4701b0-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce664890-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce6c4d44-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce6cce4a-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce6ee252-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce72019e-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce98bd0c-7144-11e5-ba71-058fbc01cf0b', 'AZ', 3),
('ce1373ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce1379c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce1389d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce13a734-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce22680a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2454c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce245926-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce249bac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce24dae0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce24de50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce24eb52-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce250fb0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251348-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251744-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2518b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251974-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce251a32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

78
('ce25277a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce252e78-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25333c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2537ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25420a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce258a6c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce259494-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25b4e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25bd2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25c252-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25c306-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25c414-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25d436-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25e2a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25e98a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25ee8a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce25f538-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce260e6a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce261216-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2612d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2635c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce264cd6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce265f28-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce266342-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26657c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce266c2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce266ce8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2675da-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26763e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26a000-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26d73c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26e1fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26e2b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26ef42-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26efa6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce26f6d6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2702a2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce270540-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce270cc0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce270de2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce271396-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce271f44-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce274afa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce274bb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce275b6c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce278178-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2782f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

79
('ce2786aa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce278ec0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce279956-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27bf3a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c002-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c0ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c110-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c3f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27c6ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27d934-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27e87a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27fa86-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce27fec8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2802d8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce280ca6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2825e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28411c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28482e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce286520-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce286dcc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce286ee4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28716e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce287b46-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2897ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28bea8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28c56a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28d776-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce28e5b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce29021e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2903b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce296e66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce29cdd4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce29f0f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a46e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8c9c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8d64-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8e86-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8f44-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a8fa8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9070-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a92c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9566-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a96ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9872-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9ab6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9cf0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2a9da4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

80
('ce2aa308-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ad012-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ad36e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ad602-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2adabc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ae20a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2af29a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2afb6e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2aff6a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b06f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b17de-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b22a6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b4f42-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b7152-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b7210-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b884a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b8caa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2b8f98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2c79ee-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2c7dae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2c827c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2cbe68-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2ccdf4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2dbbc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce2e13a8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce32fd00-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce33023c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce33102e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce339ab2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce34af92-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce34ba50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3a85e8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3a8a66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3a8d04-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c1b2e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c24f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c612e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3c8bae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3cbd7c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1b3c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1c5e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1dee-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d1fe2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d370c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d40ee-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d54d0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d55fc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

81
('ce3d6f1a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d8144-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d8c8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d9652-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d9b0c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3d9b70-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3da3ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dacb4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3db0f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dc4e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dc582-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3dd3e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3de5c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3ded32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e10a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e2aae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e3922-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e3dc8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e4642-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e52a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3e77c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3eebc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0852-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0a50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0b18-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f0c4e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f1112-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f13ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f439e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f4574-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f4f10-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f578a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f6fb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f797c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f8ad4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3f8ffc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3fc670-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3fc6ca-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3fc85a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce3ff38e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce405216-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce406d46-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce409bf4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40a432-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40a5f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40f5fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce40ff86-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

82
('ce41216e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce4154d6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce415e4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce419374-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce4591b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce46e2ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce46f508-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce46fdf0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce5c2374-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66351c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6678d8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6681e8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6688c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66b122-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66ee08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66f1c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce66fc0e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce670f6e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce67208a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c2b70-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c41e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c42a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c6004-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6c82e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6cbdf6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6de190-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6df13a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0418-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e05d0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e080a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0c6a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0e9a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e0fe4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1052-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e119c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e135e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e143a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1656-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e187c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1958-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e19c6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1aac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1c00-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e1f3e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e21e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e23a8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e256a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

83
('ce6e26be-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2812-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e28f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2a38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2b78-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2c4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e2cae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e3000-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e31fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e32e4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e37bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e3e38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e43b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e57f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e599a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e59f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5aa8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5b5c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5d32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e5e40-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e600c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e623c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e62f0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e634a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e64b2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e678c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6840-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e68f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6c8c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6ce6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6d4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6da4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6dfe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e6e58-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e7312-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e7628-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e77e0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e786c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e798e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e7aa6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6e8f46-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ea008-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ec4c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ed5dc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ed866-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6eda32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ee086-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

84
('ce6ee40a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6eee78-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6eef9a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ef170-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6ef698-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6efbac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6efd1e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f055c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f0908-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f21a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f2f00-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f318a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f32ac-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f33ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f34fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f361c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f36da-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3b9e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3c5c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3dce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f3ffe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f422e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f4c88-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f5674-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f5b38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f5bf6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f61d2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f663c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f6934-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f750a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f75d2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f8234-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6f884c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fa4da-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fa908-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6faa98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fabba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6facdc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fad9a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb1c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb222-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb2e0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb4ca-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb52e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fb8bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fcb72-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fce74-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

85
('ce6fd1a8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fd338-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fda7c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fdb44-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fe1fc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fe382-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce6fe4ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce700e66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce700fba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70124e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7012b2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701370-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701a3c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701aa0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce701fd2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70202c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce702090-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce702ed2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce703698-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce703936-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce703e54-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70412e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7041e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7046ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704746-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7048b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704980-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704a98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704d4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce704fde-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7051b4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce705272-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70543e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce705498-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7054fc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7055ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70566e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce705cb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7060e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7089f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70917e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7092fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70976e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7099f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce709a8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70a164-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70a7f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

86
('ce70b33e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70b4ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70b91a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70bbf4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70c0d6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70c680-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70c8b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70e840-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70f0b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce70f5ce-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce710b68-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce710ef6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71127a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce711464-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7116b2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce711fb8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71224c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712364-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71247c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71259e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712a62-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712b20-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712be8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712cb0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712dd2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce712e36-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7130de-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce713142-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7132c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce715cb2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce716270-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7169be-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce716a18-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce716cc0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7170e4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71853e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7185a2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71884a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce718b56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce718d40-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce718e08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7193f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7198e4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a046-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a640-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a99c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71a9f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

87
('ce71aa50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71d48a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71dac0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71e4b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71e970-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce71fd16-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7202b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7204fa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720676-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7207f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720856-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7208ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720a36-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce720af4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce721b8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce721c4c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce721d64-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce723d08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724168-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724226-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7246a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72476c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724a0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724d52-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce724ece-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce725324-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72621a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce726332-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7264fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72667a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce726738-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72688c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce727e6c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7284d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ad56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b332-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b44a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b616-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b8a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72b9ae-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72bcf6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72bf80-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72c14c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72c7aa-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ca98-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72d66e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72d722-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

88
('ce72ddbc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72dede-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72dfec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72e226-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72e460-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72ea82-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72efbe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72f18a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72fbda-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce72fc34-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7301c0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7308e6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7318f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce731ee4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce732178-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7321d2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7326a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce733384-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce733c94-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce733ff0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7342de-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7343f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce734572-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce734748-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce734e50-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73508a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce735580-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce735c42-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce735e04-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce736246-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7375ba-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce738bfe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce738e2e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce739284-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7393f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce739fa4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73a0f8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73a2ec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73a5bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73ab2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73af30-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73e7ca-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f346-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f4b8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f800-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f85a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce73f9cc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

89
('ce74071e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce740b92-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce740cd2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce740d5e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7411b4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce741830-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce741a06-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742302-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74287a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7428d4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742992-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742dd4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce742e38-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743004-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74346e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743590-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7435f4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743702-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce743ba8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce744256-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce745f52-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74606a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746240-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746826-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746880-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746a56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746b0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746c22-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746d94-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce746f10-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce747366-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74753c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce748068-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce748342-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7488b0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce748e0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce749454-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74a278-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74d450-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74d518-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74d824-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74da5e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74dac2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74dcfc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74e314-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74e670-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74eb2a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

90
('ce74fde0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce74ff02-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7505e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75063c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75088a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7509b6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce750a1a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75126c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7518f2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce751b2c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce751be0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce752022-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce752086-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7541f6-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce754e08-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce755394-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75592a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce756a5a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7570a4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75cbda-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75cdc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75cf4a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce75ebc4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76416e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76691e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7669dc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce767ad0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce767b34-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7687f0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce768eb2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce769290-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76b608-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76bfe0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76ca80-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76e650-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76f9e2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce76fbe0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce773b32-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce77462c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce775acc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce775be4-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce776fda-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce778b0a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce77a0fe-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce77c2f0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce781a02-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78416c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),

91
('ce78459a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78687c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce786912-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce788168-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7891bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78954a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78c312-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78cd1c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78cd76-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78f760-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce78fab2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7921cc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce794878-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce795372-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce795c8c-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce796a92-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7998a0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79c1e0-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79db12-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79dcf2-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79f732-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce79f98a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a0498-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a1500-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a15c8-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a3a80-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a5402-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a598e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a6d8e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a8f9e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a912e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a94bc-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7a998a-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7aaa56-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7ad77e-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7adcec-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7aea66-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
('ce7af862-7144-11e5-ba71-058fbc01cf0b', 'CA', 1),
…]

You might notice that some of the rows have null values in the state field. You could revise your
query to only select rows that do not have null values in either the state or membership_type
column:
SELECT DISTINCT user_guid, state, membership_type
FROM users
WHERE country="US" AND state IS NOT NULL and membership_type IS NOT NULL
ORDER BY state ASC, membership_type ASC

92
Question 3: Below, try executing a query that would sort the same output as described
above by membership_type first in descending order, and state second in ascending
order:
[ ]: %%sql
SELECT DISTINCT user_guid, state, membership_type
FROM users
WHERE country="US" AND state IS NOT NULL and membership_type IS NOT NULL
ORDER BY state DESC, membership_type ASC

* mysql://studentuser:***@localhost/dognitiondb
9356 rows affected.

1.4 4. Export your query results to a text file

Next week, we will learn how to complete some basic forms of data analysis in SQL. However, if you
know how to use other analysis or visualization software like Excel or Tableau, you can implement
these analyses with the SQL skills you have gained already, as long as you can export the results of
your SQL queries in a format other software packages can read. Almost every database interface
has a different method for exporting query results, so you will need to look up how to do it every
time you try a new interface (another place where having a desire to learn new things will come in
handy!).
There are two ways to export your query results using our Jupyter interface.
1. You can select and copy the output you see in an output window, and paste it into another
program. Although this strategy is very simple, it only works if your output is very limited
in size (since you can only paste 1000 rows at a time).
2. You can tell MySQL to put the results of a query into a variable (for our purposes consider
a variable to be a temporary holding place), and then use Python code to format the data in
the variable as a CSV file (comma separated value file, a .CSV file) that can be downloaded.
When you use this strategy, all of the results of a query will be saved into the variable, not
just the first 1000 rows as displayed in Jupyter, even if we have set up Jupyter to only display
1000 rows of the output.
Let’s see how we could export query results using the second method.
To tell MySQL to put the results of a query into a variable, use the following syntax:
“‘python variable_name_of_your_choice = %sql [your full query goes here];
In this case, you must execute your SQL query all on one line. So if you wanted to export the

>```python
breed_list = %sql SELECT DISTINCT breed FROM dogs ORDER BY breed;
Go ahead and try it:
[ ]:

93
Once your variable is created, using the above command tell Jupyter to format the variable as a
csv file using the following syntax:
“‘python the_output_name_you_want.csv(‘the_output_name_you_want.csv’)
Since this line is being run in Python, do NOT include the %sql prefix when trying to execute t

>```python
breed_list.csv('breed_list.csv')
When you do this, all of the results of the query will be saved in the text file but the results will
not be displayed in your notebook. This is a convenient way to retrieve large amounts of data from
a query without taxing your browser or the server.
Try it yourself:
[ ]:

You should see a link in the output line that says “CSV results.” You can click on this link to see
the text file in a tab in your browser or to download the file to your computer (exactly how this
works will differ depending on your browser and settings, but your options will be the same as if
you were trying to open or download a file from any other website.)
You can also open the file directly from the home page of your Jupyter account. Behind the scenes,
your csv file was written to your directory on the Jupyter server, so you should now see this file
listed in your Jupyter account landing page along with the list of your notebooks. Just like a
notebook, you can copy it, rename it, or delete it from your directory by clicking on the check box
next to the file and clicking the “duplicate,” “rename,” or trash can buttons at the top of the page.

1.5 5. A Bird’s Eye View of Other Functions You Might Want to Explore

When you open your breed list results file, you will notice the following:
1) All of the rows of the output are included, even though you can only see 1000 of those rows
when you run the query through the Jupyter interface.
2) There are some strange values in the breed list. Some of the entries in the breed column
seem to have a dash included before the name. This is an example of what real business data
sets look like…they are messy! We will use this as an opportunity to highlight why it is so
important to be curious and explore MySQL functions on your own.
If you needed an accurate list of all the dog breeds in the dogs table, you would have to find some
way to “clean up” the breed list you just made. Let’s examine some of the functions that could
help you achieve this cleaning using SQL syntax rather than another program or language outside
of the database.
I included these links to MySQL functions in an earlier notebook:
http://dev.mysql.com/doc/refman/5.7/en/func-op-summary-ref.html
http://www.w3resource.com/mysql/mysql-functions-and-operators.php
The following description of a function called REPLACE is included in that resource:

94
“REPLACE(str,from_str,to_str)
Returns the string str with all occurrences of the string from_str replaced by the string to_str.
REPLACE() performs a case-sensitive match when searching for from_str.”
One thing we could try is using this function to replace any dashes included in the breed names
with no character:
SELECT DISTINCT breed,
REPLACE(breed,'-','') AS breed_fixed
FROM dogs
ORDER BY breed_fixed
In this query, we put the field/column name in the replace function where the syntax instructions
listed “str” in order to tell the REPLACE function to act on the entire column. The “-” was the
“from_str”, which is the string we wanted to replace. The ”” was the to_str, which is the character
with which we want to replace the “from_str”.
Try looking at the output:
[ ]:

That was helpful, but you’ll still notice some issues with the output.
First, the leading dashes are indeed removed in the breed_fixed column, but now the dashes used
to separate breeds in entries like ‘French Bulldog-Boston Terrier Mix’ are missing as well. So
REPLACE isn’t the right choice to selectively remove leading dashes.
Perhaps we could try using the TRIM function:
http://www.w3resource.com/mysql/string-functions/mysql-trim-function.php
SELECT DISTINCT breed, TRIM(LEADING '-' FROM breed) AS breed_fixed
FROM dogs
ORDER BY breed_fixed
Try the query written above yourself, and inspect the output carefully:
[ ]:

That certainly gets us a lot closer to the list we might want, but there are still some entries in the
breed_fixed column that are conceptual duplicates of each other, due to poor consistency in how
the breed names were entered. For example, one entry is “Beagle Mix” while another is “Beagle-
Mix”. These entries are clearly meant to refer to the same breed, but they will be counted as
separate breeds as long as their breed names are different.
Cleaning up all of the entries in the breed column would take quite a bit of work, so we won’t go
through more details about how to do it in this lesson. Instead, use this exercise as a reminder for
why it’s so important to always look at the details of your data, and as motivation to explore the
MySQL functions we won’t have time to discuss in the course. If you push yourself to learn new
SQL functions and embrace the habit of getting to know your data by exploring its raw values and
outputs, you will find that SQL provides very efficient tools to clean real-world messy data sets,
and you will arrive at the correct conclusions about what your data indicate your company should
do.

95
1.6 Now it’s time to practice using AS, DISTINCT, and ORDER BY in your
own queries.

Question 4: How would you get a list of all the subcategories of Dognition tests, in
alphabetical order, with no test listed more than once (if you do not limit your output,
you should retrieve 16 rows)?

[ ]:

Question 5: How would you create a text file with a list of all the non-United States
countries of Dognition customers with no country listed more than once?
[ ]:

Question 6: How would you find the User ID, Dog ID, and test name of the first 10
tests to ever be completed in the Dognition database?
[ ]:

Question 7: How would create a text file with a list of all the customers with yearly
memberships who live in the state of North Carolina (USA) and joined Dognition
after March 1, 2014, sorted so that the most recent member is at the top of the list?
[ ]:

[ ]:

Question 8: See if you can find an SQL function from the list provided at:
http://www.w3resource.com/mysql/mysql-functions-and-operators.php
that would allow you to output all of the distinct breed names in UPPER case. Create
a query that would output a list of these names in upper case, sorted in alphabetical
order.
[ ]:

Practice any other queries you want to try below!


[ ]:

96

You might also like