-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPets.sql
More file actions
2448 lines (2421 loc) · 158 KB
/
Copy pathPets.sql
File metadata and controls
2448 lines (2421 loc) · 158 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: myprodmariadb:3306
-- Generation Time: Dec 04, 2024 at 04:30 PM
-- Server version: 11.5.2-MariaDB-ubu2404
-- PHP Version: 8.2.23
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `Pets`
--
-- --------------------------------------------------------
--
-- Table structure for table `adoption_data`
--
CREATE TABLE `adoption_data` (
`Adoption_id` varchar(7) NOT NULL,
`Adoption _Date` varchar(10) DEFAULT NULL,
`AdoptionFee` int(3) DEFAULT NULL,
`PetHouseId_fk` varchar(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
--
-- Dumping data for table `adoption_data`
--
INSERT INTO `adoption_data` (`Adoption_id`, `Adoption _Date`, `AdoptionFee`, `PetHouseId_fk`) VALUES
('AD00001', '7/4/2003', 98, 'PH1689'),
('AD00002', '10/7/2003', 388, 'PH1118'),
('AD00003', '10/10/2003', 445, 'PH1223'),
('AD00004', '12/27/2003', 18, 'PH1604'),
('AD00005', '3/4/2004', 250, 'PH1662'),
('AD00006', '11/24/2004', 433, 'PH011'),
('AD00007', '4/23/2005', 254, 'PH1922'),
('AD00008', '9/7/2005', 438, 'PH1864'),
('AD00009', '2/16/2006', 27, 'PH1917'),
('AD00010', '10/23/2006', 232, 'PH1076'),
('AD00011', '1/5/2007', 300, 'PH582'),
('AD00012', '2/15/2007', 135, 'PH399'),
('AD00013', '10/13/2007', 35, 'PH164'),
('AD00014', '12/14/2007', 265, 'PH716'),
('AD00015', '3/3/2008', 300, 'PH1933'),
('AD00016', '5/28/2008', 165, 'PH753'),
('AD00017', '1/28/2009', 393, 'PH1336'),
('AD00018', '2/7/2009', 275, 'PH1495'),
('AD00019', '8/11/2009', 74, 'PH286'),
('AD00020', '2/21/2010', 448, 'PH804'),
('AD00021', '3/13/2010', 289, 'PH500'),
('AD00022', '5/2/2010', 397, 'PH477'),
('AD00023', '7/6/2010', 45, 'PH487'),
('AD00024', '8/10/2010', 155, 'PH490'),
('AD00025', '8/21/2010', 434, 'PH1448'),
('AD00026', '3/17/2011', 290, 'PH1363'),
('AD00027', '4/18/2011', 111, 'PH1960'),
('AD00028', '5/18/2011', 290, 'PH695'),
('AD00029', '5/26/2011', 483, 'PH851'),
('AD00030', '5/26/2011', 269, 'PH851'),
('AD00031', '9/17/2011', 198, 'PH1888'),
('AD00032', '10/11/2011', 404, 'PH1978'),
('AD00033', '12/20/2011', 208, 'PH1380'),
('AD00034', '6/12/2012', 411, 'PH1174'),
('AD00035', '9/18/2012', 229, 'PH642'),
('AD00036', '10/2/2012', 18, 'PH237'),
('AD00037', '10/13/2012', 87, 'PH393'),
('AD00038', '12/4/2012', 60, 'PH1555'),
('AD00039', '2/18/2013', 377, 'PH195'),
('AD00040', '3/11/2013', 474, 'PH1130'),
('AD00041', '5/21/2013', 407, 'PH1017'),
('AD00042', '6/2/2013', 72, 'PH447'),
('AD00043', '8/12/2013', 282, 'PH684'),
('AD00044', '8/13/2013', 457, 'PH443'),
('AD00045', '9/22/2013', 159, 'PH150'),
('AD00046', '10/23/2013', 235, 'PH1466'),
('AD00047', '11/23/2013', 96, 'PH862'),
('AD00048', '11/28/2013', 102, 'PH1848'),
('AD00049', '12/4/2013', 297, 'PH031'),
('AD00050', '12/13/2013', 432, 'PH444'),
('AD00051', '12/19/2013', 165, 'PH1849'),
('AD00052', '12/24/2013', 153, 'PH495'),
('AD00053', '2/8/2014', 80, 'PH801'),
('AD00054', '2/19/2014', 24, 'PH915'),
('AD00055', '3/30/2014', 70, 'PH124'),
('AD00056', '4/16/2014', 289, 'PH694'),
('AD00057', '4/28/2014', 189, 'PH602'),
('AD00058', '5/18/2014', 334, 'PH535'),
('AD00059', '6/3/2014', 278, 'PH056'),
('AD00060', '7/14/2014', 255, 'PH955'),
('AD00061', '8/14/2014', 423, 'PH1620'),
('AD00062', '8/15/2014', 328, 'PH1597'),
('AD00063', '8/22/2014', 41, 'PH208'),
('AD00064', '9/11/2014', 365, 'PH789'),
('AD00065', '9/29/2014', 211, 'PH372'),
('AD00066', '10/11/2014', 231, 'PH669'),
('AD00067', '10/21/2014', 313, 'PH281'),
('AD00068', '10/23/2014', 401, 'PH078'),
('AD00069', '11/7/2014', 320, 'PH113'),
('AD00070', '11/30/2014', 259, 'PH082'),
('AD00071', '12/6/2014', 78, 'PH247'),
('AD00072', '1/12/2015', 215, 'PH739'),
('AD00073', '3/2/2015', 232, 'PH380'),
('AD00074', '3/5/2015', 222, 'PH717'),
('AD00075', '3/7/2015', 24, 'PH1513'),
('AD00076', '3/7/2015', 96, 'PH1513'),
('AD00077', '5/23/2015', 464, 'PH1906'),
('AD00078', '5/27/2015', 407, 'PH1894'),
('AD00079', '5/28/2015', 390, 'PH479'),
('AD00080', '6/11/2015', 466, 'PH107'),
('AD00081', '6/14/2015', 32, 'PH1050'),
('AD00082', '7/24/2015', 371, 'PH188'),
('AD00083', '7/31/2015', 282, 'PH250'),
('AD00084', '8/10/2015', 129, 'PH496'),
('AD00085', '8/14/2015', 332, 'PH1641'),
('AD00086', '8/20/2015', 200, 'PH1465'),
('AD00087', '8/24/2015', 317, 'PH202'),
('AD00088', '8/29/2015', 99, 'PH385'),
('AD00089', '9/1/2015', 140, 'PH1019'),
('AD00090', '9/23/2015', 362, 'PH1545'),
('AD00091', '10/8/2015', 100, 'PH1847'),
('AD00092', '10/12/2015', 285, 'PH729'),
('AD00093', '10/26/2015', 465, 'PH575'),
('AD00094', '10/31/2015', 303, 'PH454'),
('AD00095', '11/13/2015', 91, 'PH085'),
('AD00096', '11/29/2015', 195, 'PH1325'),
('AD00097', '12/7/2015', 223, 'PH420'),
('AD00098', '12/13/2015', 450, 'PH1774'),
('AD00099', '12/16/2015', 30, 'PH796'),
('AD00100', '12/17/2015', 132, 'PH505'),
('AD00101', '12/19/2015', 102, 'PH997'),
('AD00102', '12/30/2015', 224, 'PH358'),
('AD00103', '1/8/2016', 461, 'PH264'),
('AD00104', '1/12/2016', 228, 'PH126'),
('AD00105', '1/13/2016', 144, 'PH243'),
('AD00106', '1/20/2016', 447, 'PH276'),
('AD00107', '2/3/2016', 171, 'PH485'),
('AD00108', '2/16/2016', 259, 'PH133'),
('AD00109', '2/20/2016', 455, 'PH390'),
('AD00110', '2/21/2016', 346, 'PH914'),
('AD00111', '2/22/2016', 18, 'PH177'),
('AD00112', '2/28/2016', 222, 'PH183'),
('AD00113', '2/29/2016', 192, 'PH073'),
('AD00114', '3/14/2016', 295, 'PH1133'),
('AD00115', '3/18/2016', 72, 'PH1429'),
('AD00116', '3/23/2016', 214, 'PH488'),
('AD00117', '3/26/2016', 143, 'PH081'),
('AD00118', '4/1/2016', 152, 'PH1052'),
('AD00119', '4/27/2016', 50, 'PH1930'),
('AD00120', '4/29/2016', 210, 'PH375'),
('AD00121', '5/1/2016', 381, 'PH070'),
('AD00122', '5/3/2016', 16, 'PH688'),
('AD00123', '5/5/2016', 421, 'PH961'),
('AD00124', '5/10/2016', 194, 'PH506'),
('AD00125', '5/10/2016', 49, 'PH506'),
('AD00126', '5/14/2016', 301, 'PH118'),
('AD00127', '5/15/2016', 272, 'PH903'),
('AD00128', '5/18/2016', 268, 'PH624'),
('AD00129', '6/9/2016', 156, 'PH452'),
('AD00130', '6/10/2016', 99, 'PH1004'),
('AD00131', '6/15/2016', 38, 'PH1562'),
('AD00132', '6/16/2016', 62, 'PH117'),
('AD00133', '6/25/2016', 317, 'PH322'),
('AD00134', '6/28/2016', 60, 'PH599'),
('AD00135', '7/2/2016', 210, 'PH1419'),
('AD00136', '7/5/2016', 301, 'PH061'),
('AD00137', '7/6/2016', 63, 'PH181'),
('AD00138', '7/10/2016', 364, 'PH186'),
('AD00139', '7/11/2016', 27, 'PH180'),
('AD00140', '8/7/2016', 41, 'PH428'),
('AD00141', '8/17/2016', 343, 'PH525'),
('AD00142', '8/17/2016', 209, 'PH525'),
('AD00143', '8/17/2016', 105, 'PH525'),
('AD00144', '8/20/2016', 111, 'PH1898'),
('AD00145', '8/21/2016', 115, 'PH610'),
('AD00146', '8/27/2016', 160, 'PH314'),
('AD00147', '8/29/2016', 296, 'PH129'),
('AD00148', '8/31/2016', 2, 'PH259'),
('AD00149', '9/2/2016', 354, 'PH994'),
('AD00150', '9/19/2016', 378, 'PH1070'),
('AD00151', '9/20/2016', 26, 'PH238'),
('AD00152', '9/20/2016', 322, 'PH238'),
('AD00153', '9/23/2016', 419, 'PH1583'),
('AD00154', '9/24/2016', 120, 'PH175'),
('AD00155', '9/25/2016', 25, 'PH1163'),
('AD00156', '9/26/2016', 420, 'PH1222'),
('AD00157', '9/27/2016', 77, 'PH402'),
('AD00158', '10/7/2016', 182, 'PH414'),
('AD00159', '10/9/2016', 359, 'PH148'),
('AD00160', '10/18/2016', 190, 'PH348'),
('AD00161', '10/20/2016', 196, 'PH934'),
('AD00162', '10/21/2016', 278, 'PH1048'),
('AD00163', '10/22/2016', 88, 'PH245'),
('AD00164', '11/1/2016', 436, 'PH046'),
('AD00165', '11/4/2016', 170, 'PH059'),
('AD00166', '11/16/2016', 453, 'PH544'),
('AD00167', '11/18/2016', 303, 'PH106'),
('AD00168', '11/22/2016', 183, 'PH449'),
('AD00169', '11/22/2016', 355, 'PH449'),
('AD00170', '11/26/2016', 181, 'PH773'),
('AD00171', '12/2/2016', 35, 'PH190'),
('AD00172', '12/6/2016', 337, 'PH1536'),
('AD00173', '12/9/2016', 127, 'PH1829'),
('AD00174', '12/13/2016', 488, 'PH277'),
('AD00175', '12/14/2016', 434, 'PH109'),
('AD00176', '12/22/2016', 145, 'PH573'),
('AD00177', '12/30/2016', 213, 'PH482'),
('AD00178', '1/5/2017', 482, 'PH696'),
('AD00179', '1/14/2017', 31, 'PH601'),
('AD00180', '1/14/2017', 335, 'PH601'),
('AD00181', '1/14/2017', 338, 'PH601'),
('AD00182', '1/25/2017', 272, 'PH693'),
('AD00183', '1/30/2017', 326, 'PH093'),
('AD00184', '1/31/2017', 376, 'PH810'),
('AD00185', '2/3/2017', 139, 'PH080'),
('AD00186', '2/7/2017', 300, 'PH1065'),
('AD00187', '2/12/2017', 289, 'PH1203'),
('AD00188', '2/21/2017', 464, 'PH301'),
('AD00189', '2/22/2017', 220, 'PH864'),
('AD00190', '2/23/2017', 51, 'PH377'),
('AD00191', '2/26/2017', 168, 'PH996'),
('AD00192', '2/28/2017', 457, 'PH906'),
('AD00193', '3/14/2017', 286, 'PH359'),
('AD00194', '3/16/2017', 225, 'PH661'),
('AD00195', '3/19/2017', 262, 'PH822'),
('AD00196', '3/31/2017', 85, 'PH179'),
('AD00197', '4/1/2017', 125, 'PH1039'),
('AD00198', '4/15/2017', 471, 'PH832'),
('AD00199', '4/17/2017', 0, 'PH829'),
('AD00200', '4/17/2017', 468, 'PH829'),
('AD00201', '5/15/2017', 171, 'PH320'),
('AD00202', '5/31/2017', 114, 'PH413'),
('AD00203', '6/6/2017', 136, 'PH1686'),
('AD00204', '6/7/2017', 69, 'PH422'),
('AD00205', '6/8/2017', 72, 'PH553'),
('AD00206', '6/11/2017', 9, 'PH337'),
('AD00207', '6/30/2017', 448, 'PH1167'),
('AD00208', '6/30/2017', 101, 'PH1167'),
('AD00209', '7/2/2017', 491, 'PH1309'),
('AD00210', '7/5/2017', 452, 'PH035'),
('AD00211', '7/7/2017', 473, 'PH942'),
('AD00212', '7/7/2017', 257, 'PH942'),
('AD00213', '7/14/2017', 87, 'PH283'),
('AD00214', '7/19/2017', 117, 'PH330'),
('AD00215', '7/28/2017', 345, 'PH039'),
('AD00216', '7/28/2017', 358, 'PH039'),
('AD00217', '7/29/2017', 437, 'PH386'),
('AD00218', '7/30/2017', 127, 'PH142'),
('AD00219', '8/5/2017', 490, 'PH1642'),
('AD00220', '8/14/2017', 18, 'PH165'),
('AD00221', '8/14/2017', 119, 'PH165'),
('AD00222', '8/15/2017', 329, 'PH1701'),
('AD00223', '8/16/2017', 462, 'PH012'),
('AD00224', '8/17/2017', 76, 'PH1508'),
('AD00225', '9/3/2017', 62, 'PH567'),
('AD00226', '9/4/2017', 294, 'PH636'),
('AD00227', '9/5/2017', 77, 'PH222'),
('AD00228', '9/8/2017', 149, 'PH930'),
('AD00229', '9/12/2017', 410, 'PH174'),
('AD00230', '9/26/2017', 88, 'PH134'),
('AD00231', '9/28/2017', 306, 'PH398'),
('AD00232', '9/28/2017', 430, 'PH398'),
('AD00233', '10/6/2017', 420, 'PH457'),
('AD00234', '10/6/2017', 465, 'PH457'),
('AD00235', '10/26/2017', 254, 'PH005'),
('AD00236', '10/27/2017', 333, 'PH234'),
('AD00237', '10/29/2017', 290, 'PH1892'),
('AD00238', '10/30/2017', 148, 'PH1344'),
('AD00239', '11/2/2017', 494, 'PH597'),
('AD00240', '11/3/2017', 267, 'PH1655'),
('AD00241', '11/11/2017', 333, 'PH037'),
('AD00242', '11/20/2017', 178, 'PH122'),
('AD00243', '12/10/2017', 323, 'PH127'),
('AD00244', '12/14/2017', 432, 'PH1876'),
('AD00245', '12/17/2017', 124, 'PH656'),
('AD00246', '12/28/2017', 58, 'PH1008'),
('AD00247', '12/30/2017', 137, 'PH395'),
('AD00248', '1/3/2018', 179, 'PH232'),
('AD00249', '2/3/2018', 11, 'PH1956'),
('AD00250', '2/17/2018', 97, 'PH1474'),
('AD00251', '2/21/2018', 368, 'PH912'),
('AD00252', '3/1/2018', 136, 'PH480'),
('AD00253', '3/3/2018', 379, 'PH938'),
('AD00254', '3/17/2018', 47, 'PH440'),
('AD00255', '3/20/2018', 353, 'PH998'),
('AD00256', '3/21/2018', 420, 'PH295'),
('AD00257', '3/30/2018', 233, 'PH595'),
('AD00258', '3/30/2018', 57, 'PH595'),
('AD00259', '3/30/2018', 461, 'PH595'),
('AD00260', '4/2/2018', 270, 'PH758'),
('AD00261', '4/3/2018', 59, 'PH1247'),
('AD00262', '4/4/2018', 282, 'PH157'),
('AD00263', '4/12/2018', 455, 'PH1723'),
('AD00264', '4/15/2018', 298, 'PH533'),
('AD00265', '4/15/2018', 286, 'PH533'),
('AD00266', '4/15/2018', 436, 'PH533'),
('AD00267', '4/21/2018', 362, 'PH231'),
('AD00268', '4/23/2018', 278, 'PH455'),
('AD00269', '5/16/2018', 306, 'PH1030'),
('AD00270', '5/22/2018', 464, 'PH256'),
('AD00271', '6/4/2018', 70, 'PH045'),
('AD00272', '7/3/2018', 104, 'PH141'),
('AD00273', '7/9/2018', 403, 'PH329'),
('AD00274', '7/20/2018', 429, 'PH846'),
('AD00275', '7/24/2018', 412, 'PH936'),
('AD00276', '7/26/2018', 276, 'PH1237'),
('AD00277', '7/29/2018', 5, 'PH100'),
('AD00278', '7/31/2018', 482, 'PH1398'),
('AD00279', '8/14/2018', 246, 'PH861'),
('AD00280', '8/15/2018', 383, 'PH499'),
('AD00281', '9/3/2018', 64, 'PH926'),
('AD00282', '9/4/2018', 350, 'PH405'),
('AD00283', '9/7/2018', 203, 'PH1509'),
('AD00284', '9/10/2018', 215, 'PH633'),
('AD00285', '9/30/2018', 178, 'PH1421'),
('AD00286', '10/8/2018', 317, 'PH521'),
('AD00287', '10/11/2018', 388, 'PH1301'),
('AD00288', '10/25/2018', 432, 'PH077'),
('AD00289', '11/22/2018', 371, 'PH561'),
('AD00290', '11/24/2018', 363, 'PH1951'),
('AD00291', '11/29/2018', 227, 'PH1397'),
('AD00292', '12/7/2018', 253, 'PH649'),
('AD00293', '1/2/2019', 365, 'PH1530'),
('AD00294', '1/23/2019', 241, 'PH1970'),
('AD00295', '1/28/2019', 328, 'PH123'),
('AD00296', '2/13/2019', 203, 'PH1819'),
('AD00297', '2/28/2019', 67, 'PH201'),
('AD00298', '3/3/2019', 456, 'PH191'),
('AD00299', '3/24/2019', 481, 'PH406'),
('AD00300', '4/2/2019', 118, 'PH1324'),
('AD00301', '4/3/2019', 228, 'PH1009');
-- --------------------------------------------------------
--
-- Table structure for table `pet_house`
--
CREATE TABLE `pet_house` (
`PetHouseId` varchar(6) NOT NULL,
`AgeMonths` int(3) DEFAULT NULL,
`Color` varchar(6) DEFAULT NULL,
`Size` varchar(6) DEFAULT NULL,
`WeightKg` decimal(3,1) DEFAULT NULL,
`Vaccinated` int(1) DEFAULT NULL,
`HealthCondition` int(1) DEFAULT NULL,
`TimeInShelterDays` int(2) DEFAULT NULL,
`PreviousOwner` int(1) DEFAULT NULL,
`AdoptionLikelihood` int(1) DEFAULT NULL,
`DateEntered` varchar(10) DEFAULT NULL,
`SpeciesID_fk` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
--
-- Dumping data for table `pet_house`
--
INSERT INTO `pet_house` (`PetHouseId`, `AgeMonths`, `Color`, `Size`, `WeightKg`, `Vaccinated`, `HealthCondition`, `TimeInShelterDays`, `PreviousOwner`, `AdoptionLikelihood`, `DateEntered`, `SpeciesID_fk`) VALUES
('PH001', 131, 'Orange', 'Large', 5.0, 1, 0, 27, 0, 0, '07/10/2016', 1),
('PH002', 73, 'White', 'Large', 16.1, 0, 0, 8, 0, 0, '11/21/2013', 2),
('PH003', 136, 'Orange', 'Medium', 2.1, 0, 0, 85, 0, 0, '9/28/2014', 3),
('PH004', 97, 'White', 'Small', 3.3, 0, 0, 61, 1, 0, '12/31/2016', 1),
('PH005', 123, 'Gray', 'Large', 20.5, 0, 0, 28, 1, 0, '9/28/2017', 2),
('PH006', 70, 'Brown', 'Large', 21.0, 0, 0, 87, 1, 0, '10/25/2017', 4),
('PH007', 169, 'Brown', 'Small', 10.9, 1, 0, 70, 1, 0, '11/06/2018', 1),
('PH008', 13, 'Orange', 'Large', 7.3, 1, 0, 3, 0, 1, '06/05/2018', 5),
('PH009', 49, 'Brown', 'Medium', 24.6, 1, 1, 69, 0, 0, '10/10/2015', 1),
('PH010', 60, 'Gray', 'Large', 7.3, 0, 0, 73, 1, 0, '2/18/2014', 1),
('PH011', 130, 'Orange', 'Large', 16.7, 0, 0, 7, 0, 0, '11/17/2004', 1),
('PH012', 5, 'White', 'Small', 29.1, 1, 0, 60, 0, 1, '6/17/2017', 2),
('PH013', 172, 'Brown', 'Large', 5.3, 1, 0, 4, 1, 0, '02/07/2017', 3),
('PH014', 27, 'Black', 'Large', 28.3, 1, 0, 5, 0, 0, '11/29/2016', 5),
('PH015', 160, 'Brown', 'Medium', 6.3, 1, 0, 11, 0, 1, '1/29/2018', 6),
('PH016', 149, 'White', 'Small', 17.5, 1, 0, 15, 1, 0, '7/20/2016', 2),
('PH017', 8, 'Orange', 'Small', 11.9, 1, 1, 64, 1, 0, '3/20/2016', 6),
('PH018', 50, 'White', 'Medium', 29.0, 1, 0, 13, 0, 1, '01/06/2009', 6),
('PH019', 67, 'Black', 'Large', 8.9, 1, 1, 7, 1, 0, '11/28/2013', 2),
('PH020', 44, 'Gray', 'Small', 12.6, 0, 1, 6, 0, 0, '8/23/2018', 4),
('PH021', 125, 'Brown', 'Small', 29.5, 1, 0, 56, 0, 0, '1/25/2008', 2),
('PH022', 58, 'Orange', 'Large', 16.6, 0, 0, 64, 1, 0, '01/07/2018', 6),
('PH023', 3, 'Gray', 'Large', 15.6, 1, 0, 50, 1, 1, '3/14/2018', 4),
('PH024', 86, 'White', 'Small', 8.5, 1, 0, 30, 0, 0, '11/22/2014', 3),
('PH025', 70, 'Orange', 'Large', 21.3, 1, 0, 22, 0, 0, '08/02/2012', 1),
('PH026', 130, 'Gray', 'Small', 1.4, 1, 0, 25, 0, 0, '04/11/2018', 1),
('PH027', 172, 'Orange', 'Large', 2.4, 1, 0, 28, 0, 0, '12/30/2017', 6),
('PH028', 2, 'Black', 'Large', 18.4, 1, 1, 84, 0, 0, '1/25/2011', 2),
('PH029', 102, 'Black', 'Medium', 10.9, 0, 0, 39, 0, 0, '09/01/2015', 2),
('PH030', 35, 'Brown', 'Large', 28.6, 0, 1, 67, 0, 0, '7/18/2010', 2),
('PH031', 98, 'Brown', 'Medium', 27.2, 1, 0, 5, 0, 1, '11/29/2013', 1),
('PH032', 30, 'Black', 'Large', 21.7, 1, 1, 65, 0, 0, '10/04/2005', 6),
('PH033', 116, 'Orange', 'Small', 24.7, 1, 0, 15, 1, 0, '2/13/2009', 1),
('PH034', 8, 'Black', 'Small', 20.4, 1, 0, 67, 0, 1, '7/28/2017', 5),
('PH035', 150, 'Brown', 'Large', 4.6, 1, 0, 40, 0, 0, '5/26/2017', 2),
('PH036', 44, 'Black', 'Large', 23.2, 0, 0, 69, 1, 0, '1/14/2018', 1),
('PH037', 36, 'Black', 'Small', 7.1, 1, 0, 77, 1, 0, '8/26/2017', 2),
('PH038', 77, 'Orange', 'Large', 10.4, 0, 0, 43, 0, 0, '07/06/2018', 2),
('PH039', 31, 'Gray', 'Medium', 24.8, 1, 0, 1, 0, 1, '7/27/2017', 3),
('PH040', 47, 'Brown', 'Medium', 16.6, 0, 0, 22, 1, 0, '3/14/2010', 3),
('PH041', 55, 'Orange', 'Medium', 25.9, 1, 0, 62, 0, 1, '06/08/2017', 1),
('PH042', 106, 'Black', 'Medium', 7.2, 0, 0, 79, 1, 1, '10/31/2014', 4),
('PH043', 158, 'Black', 'Medium', 18.6, 1, 0, 26, 0, 1, '10/23/2015', 1),
('PH044', 121, 'Gray', 'Large', 3.4, 1, 1, 18, 0, 0, '12/29/2017', 6),
('PH045', 55, 'Brown', 'Large', 19.6, 1, 0, 48, 0, 0, '4/17/2018', 7),
('PH046', 144, 'Brown', 'Medium', 23.1, 1, 0, 9, 1, 1, '10/23/2016', 6),
('PH047', 12, 'White', 'Large', 18.0, 1, 1, 1, 1, 0, '11/29/2018', 7),
('PH048', 145, 'Brown', 'Large', 8.7, 1, 0, 9, 0, 0, '3/29/2018', 7),
('PH049', 144, 'Gray', 'Medium', 1.9, 1, 0, 23, 0, 1, '1/20/2015', 2),
('PH050', 140, 'White', 'Large', 4.5, 0, 0, 45, 0, 0, '03/06/2015', 2),
('PH051', 136, 'White', 'Large', 19.0, 1, 0, 2, 0, 0, '8/24/2016', 1),
('PH052', 3, 'Black', 'Large', 28.1, 0, 0, 14, 1, 0, '3/20/2008', 2),
('PH053', 144, 'Black', 'Medium', 7.0, 0, 0, 38, 0, 0, '03/04/2017', 1),
('PH054', 30, 'Brown', 'Large', 22.3, 1, 0, 40, 1, 0, '12/15/2016', 2),
('PH055', 23, 'White', 'Small', 26.1, 1, 0, 63, 0, 1, '1/28/2015', 3),
('PH056', 92, 'Black', 'Small', 16.1, 1, 0, 82, 1, 0, '3/13/2014', 1),
('PH057', 115, 'Gray', 'Medium', 20.4, 1, 1, 16, 1, 0, '04/07/2017', 5),
('PH058', 104, 'Black', 'Small', 24.6, 0, 0, 75, 0, 0, '7/16/2016', 2),
('PH059', 118, 'Black', 'Medium', 8.6, 0, 1, 6, 0, 0, '10/29/2016', 6),
('PH060', 5, 'White', 'Small', 9.6, 1, 1, 3, 0, 0, '08/03/2016', 2),
('PH061', 104, 'White', 'Small', 1.0, 1, 0, 14, 0, 0, '6/21/2016', 6),
('PH062', 108, 'Orange', 'Small', 28.9, 0, 0, 66, 0, 0, '12/09/2016', 6),
('PH063', 65, 'Gray', 'Medium', 27.6, 1, 0, 75, 0, 1, '07/03/2016', 6),
('PH064', 121, 'White', 'Medium', 23.2, 1, 1, 86, 1, 0, '04/08/2016', 5),
('PH065', 30, 'Brown', 'Large', 3.3, 1, 0, 67, 0, 0, '11/18/2016', 1),
('PH066', 149, 'Gray', 'Medium', 14.0, 1, 1, 31, 1, 0, '9/15/2010', 6),
('PH067', 84, 'Gray', 'Small', 4.0, 1, 0, 33, 1, 0, '01/03/2014', 2),
('PH068', 150, 'White', 'Small', 1.5, 1, 0, 88, 1, 0, '01/07/2016', 6),
('PH069', 32, 'Gray', 'Medium', 18.9, 0, 0, 1, 0, 0, '02/07/2015', 6),
('PH070', 161, 'White', 'Medium', 28.9, 1, 0, 44, 0, 1, '3/18/2016', 5),
('PH071', 16, 'Black', 'Medium', 27.2, 1, 0, 15, 0, 1, '11/20/2016', 2),
('PH072', 38, 'Orange', 'Large', 21.2, 0, 0, 37, 0, 0, '05/05/2010', 1),
('PH073', 142, 'Black', 'Small', 3.8, 1, 0, 27, 0, 0, '02/02/2016', 2),
('PH074', 36, 'White', 'Large', 9.0, 1, 0, 48, 1, 0, '04/05/2011', 5),
('PH075', 151, 'White', 'Large', 10.3, 1, 1, 27, 0, 0, '07/12/2017', 2),
('PH076', 114, 'Black', 'Small', 23.1, 0, 1, 12, 0, 0, '9/22/2015', 7),
('PH077', 66, 'Brown', 'Small', 24.3, 1, 0, 67, 1, 0, '8/19/2018', 2),
('PH078', 105, 'Brown', 'Medium', 12.2, 1, 0, 30, 0, 1, '9/23/2014', 4),
('PH079', 85, 'Brown', 'Medium', 13.1, 0, 0, 87, 0, 0, '03/01/2018', 5),
('PH080', 2, 'White', 'Large', 2.3, 1, 0, 66, 1, 1, '11/29/2016', 7),
('PH081', 75, 'Gray', 'Medium', 9.4, 1, 0, 7, 0, 1, '3/19/2016', 4),
('PH082', 67, 'White', 'Medium', 14.1, 1, 0, 34, 0, 1, '10/27/2014', 4),
('PH083', 151, 'Gray', 'Small', 4.4, 0, 1, 32, 0, 0, '03/02/2015', 1),
('PH084', 154, 'Black', 'Small', 14.1, 1, 1, 39, 1, 0, '10/04/2017', 4),
('PH085', 55, 'Orange', 'Medium', 25.7, 1, 0, 43, 0, 1, '10/01/2015', 3),
('PH086', 6, 'Gray', 'Small', 17.9, 1, 0, 43, 0, 1, '7/29/2016', 4),
('PH087', 163, 'Brown', 'Medium', 3.3, 1, 0, 78, 0, 1, '07/02/2016', 2),
('PH088', 150, 'White', 'Small', 6.6, 1, 0, 3, 0, 0, '1/30/2018', 2),
('PH089', 171, 'Black', 'Small', 14.8, 0, 0, 46, 0, 0, '3/22/2018', 2),
('PH090', 143, 'Brown', 'Small', 11.5, 1, 0, 32, 0, 0, '11/10/2016', 1),
('PH091', 86, 'Black', 'Small', 11.4, 1, 0, 43, 0, 0, '09/05/2017', 1),
('PH092', 60, 'Orange', 'Medium', 16.3, 1, 1, 81, 0, 0, '06/09/2017', 1),
('PH093', 101, 'White', 'Large', 17.9, 0, 0, 3, 0, 0, '1/27/2017', 3),
('PH094', 12, 'White', 'Small', 24.1, 1, 1, 74, 0, 0, '7/30/2017', 1),
('PH095', 49, 'Orange', 'Medium', 10.9, 1, 1, 63, 0, 0, '11/24/2016', 3),
('PH096', 42, 'White', 'Medium', 24.4, 1, 1, 40, 0, 0, '6/24/2014', 7),
('PH097', 166, 'Gray', 'Small', 10.8, 0, 0, 18, 0, 0, '07/04/2016', 1),
('PH098', 82, 'Black', 'Large', 2.6, 0, 0, 67, 1, 0, '7/21/2012', 5),
('PH099', 173, 'Brown', 'Small', 17.1, 0, 0, 62, 1, 0, '12/27/2013', 2),
('PH100', 35, 'Orange', 'Medium', 18.0, 1, 0, 10, 0, 1, '7/19/2018', 1),
('PH1000', 49, 'Gray', 'Small', 10.3, 0, 0, 58, 0, 0, '09/05/2018', 5),
('PH1001', 41, 'Orange', 'Large', 29.1, 1, 1, 19, 0, 0, '12/30/2016', 5),
('PH1002', 17, 'Black', 'Medium', 28.1, 1, 1, 16, 1, 1, '7/17/2017', 7),
('PH1003', 88, 'Brown', 'Large', 26.2, 1, 0, 75, 0, 0, '8/15/2015', 2),
('PH1004', 21, 'Brown', 'Small', 13.2, 1, 0, 8, 0, 1, '06/02/2016', 7),
('PH1005', 51, 'Black', 'Large', 21.0, 1, 0, 33, 0, 0, '02/08/2017', 1),
('PH1006', 59, 'Black', 'Medium', 27.2, 0, 0, 74, 0, 0, '02/09/2016', 1),
('PH1007', 167, 'Orange', 'Large', 25.7, 0, 0, 18, 1, 0, '1/13/2017', 7),
('PH1008', 41, 'Black', 'Medium', 13.0, 1, 0, 35, 0, 1, '11/23/2017', 4),
('PH1009', 39, 'Gray', 'Medium', 4.3, 1, 0, 43, 0, 1, '2/19/2019', 6),
('PH101', 158, 'Gray', 'Large', 28.1, 0, 0, 52, 0, 0, '9/24/2018', 7),
('PH1010', 141, 'White', 'Small', 3.2, 1, 0, 50, 1, 0, '10/29/2015', 2),
('PH1011', 11, 'Black', 'Small', 17.7, 1, 1, 3, 0, 0, '08/11/2010', 5),
('PH1012', 147, 'Black', 'Small', 19.6, 0, 0, 59, 1, 0, '02/03/2015', 4),
('PH1013', 139, 'Gray', 'Medium', 25.6, 1, 0, 28, 0, 1, '9/26/2017', 1),
('PH1014', 77, 'Brown', 'Large', 9.5, 1, 0, 46, 1, 0, '06/11/2017', 5),
('PH1015', 127, 'Brown', 'Medium', 5.9, 1, 1, 64, 1, 0, '1/20/2016', 1),
('PH1016', 46, 'Orange', 'Small', 12.0, 1, 0, 70, 0, 0, '11/26/2018', 2),
('PH1017', 45, 'Gray', 'Small', 11.3, 1, 0, 47, 1, 0, '04/04/2013', 1),
('PH1018', 1, 'White', 'Large', 4.8, 1, 0, 14, 0, 1, '9/13/2016', 3),
('PH1019', 168, 'White', 'Small', 20.5, 1, 0, 7, 0, 1, '8/25/2015', 4),
('PH102', 158, 'Brown', 'Medium', 22.1, 0, 0, 73, 0, 0, '1/16/2015', 3),
('PH1020', 108, 'Gray', 'Small', 15.8, 1, 1, 74, 0, 0, '2/28/2013', 7),
('PH1021', 19, 'White', 'Small', 21.9, 1, 0, 79, 0, 1, '10/12/2016', 2),
('PH1022', 76, 'Brown', 'Large', 11.2, 1, 0, 31, 1, 1, '11/05/2015', 4),
('PH1023', 72, 'White', 'Medium', 10.4, 1, 0, 81, 0, 1, '6/19/2013', 5),
('PH1024', 109, 'White', 'Small', 14.7, 1, 1, 51, 1, 0, '7/31/2016', 1),
('PH1025', 12, 'Gray', 'Large', 26.4, 1, 0, 29, 0, 1, '6/25/2015', 1),
('PH1026', 161, 'Gray', 'Small', 2.2, 1, 1, 15, 0, 0, '12/12/2015', 2),
('PH1027', 45, 'White', 'Large', 24.3, 0, 0, 76, 0, 0, '12/14/2007', 7),
('PH1028', 90, 'Black', 'Small', 11.7, 1, 0, 25, 0, 0, '09/03/2015', 1),
('PH1029', 103, 'Gray', 'Large', 25.8, 1, 0, 61, 1, 0, '12/02/2016', 6),
('PH103', 134, 'Brown', 'Small', 27.6, 0, 0, 46, 0, 0, '10/02/2010', 1),
('PH1030', 8, 'Orange', 'Small', 24.3, 1, 0, 41, 1, 1, '04/05/2018', 1),
('PH1031', 153, 'Orange', 'Medium', 11.1, 1, 0, 69, 1, 1, '5/14/2011', 5),
('PH1032', 91, 'Brown', 'Small', 21.1, 0, 1, 4, 1, 0, '06/01/2017', 5),
('PH1033', 174, 'White', 'Large', 5.6, 0, 0, 57, 0, 0, '09/10/2015', 3),
('PH1034', 87, 'Black', 'Small', 27.0, 0, 1, 31, 0, 0, '7/18/2018', 1),
('PH1035', 158, 'Brown', 'Medium', 12.7, 1, 0, 3, 0, 1, '10/19/2014', 2),
('PH1036', 175, 'White', 'Small', 14.2, 1, 0, 67, 0, 0, '11/20/2018', 1),
('PH1037', 177, 'Gray', 'Large', 21.5, 1, 1, 50, 0, 0, '12/20/2009', 1),
('PH1038', 175, 'Orange', 'Large', 24.8, 1, 0, 17, 0, 0, '02/04/2015', 6),
('PH1039', 84, 'Black', 'Medium', 7.9, 1, 0, 60, 0, 1, '1/31/2017', 3),
('PH104', 67, 'Orange', 'Large', 27.3, 1, 0, 55, 0, 0, '06/01/2009', 6),
('PH1040', 82, 'Orange', 'Large', 20.2, 0, 1, 74, 0, 0, '01/03/2012', 2),
('PH1041', 146, 'Gray', 'Small', 12.4, 0, 0, 66, 1, 0, '10/29/2015', 5),
('PH1042', 68, 'White', 'Small', 11.7, 1, 0, 88, 0, 0, '05/02/2015', 2),
('PH1043', 161, 'Gray', 'Small', 21.0, 1, 1, 75, 0, 0, '10/04/2017', 4),
('PH1044', 127, 'Gray', 'Large', 12.2, 1, 0, 24, 0, 0, '8/27/2016', 3),
('PH1045', 164, 'Orange', 'Small', 11.0, 1, 1, 87, 1, 0, '8/13/2018', 1),
('PH1046', 82, 'Black', 'Small', 25.2, 1, 0, 32, 1, 0, '7/21/2017', 6),
('PH1047', 147, 'Gray', 'Small', 3.9, 0, 0, 87, 0, 0, '08/08/2010', 2),
('PH1048', 156, 'Orange', 'Medium', 20.6, 1, 0, 19, 0, 1, '10/02/2016', 5),
('PH1049', 168, 'Black', 'Large', 8.2, 1, 0, 66, 1, 0, '5/28/2015', 3),
('PH105', 80, 'Gray', 'Medium', 18.5, 0, 1, 46, 0, 0, '2/19/2007', 3),
('PH1050', 84, 'White', 'Large', 1.4, 1, 0, 60, 0, 1, '4/15/2015', 4),
('PH1051', 113, 'White', 'Large', 5.8, 0, 1, 66, 1, 0, '05/08/2004', 7),
('PH1052', 76, 'Brown', 'Medium', 18.6, 1, 0, 15, 1, 1, '3/17/2016', 6),
('PH1053', 122, 'Orange', 'Large', 21.6, 1, 0, 85, 0, 0, '03/07/2012', 1),
('PH1054', 143, 'Black', 'Medium', 1.6, 0, 0, 35, 0, 1, '3/20/2015', 4),
('PH1055', 41, 'Gray', 'Medium', 2.1, 1, 0, 69, 0, 1, '12/17/2011', 1),
('PH1056', 167, 'White', 'Large', 27.2, 0, 0, 27, 0, 0, '04/02/2016', 4),
('PH1057', 2, 'Black', 'Small', 3.1, 1, 0, 88, 1, 1, '11/16/2017', 5),
('PH1058', 29, 'Orange', 'Small', 26.9, 1, 0, 7, 1, 0, '05/01/2016', 1),
('PH1059', 105, 'Brown', 'Large', 7.6, 1, 0, 6, 1, 0, '11/19/2016', 1),
('PH106', 7, 'Brown', 'Medium', 16.3, 1, 0, 75, 1, 1, '09/04/2016', 2),
('PH1060', 51, 'White', 'Large', 22.5, 1, 0, 33, 0, 0, '10/24/2017', 2),
('PH1061', 75, 'Black', 'Medium', 10.0, 0, 0, 58, 0, 0, '1/30/2017', 1),
('PH1062', 10, 'Black', 'Large', 25.9, 0, 0, 49, 0, 0, '8/21/2017', 6),
('PH1063', 142, 'Black', 'Medium', 21.3, 0, 0, 17, 0, 0, '11/17/2016', 5),
('PH1064', 51, 'Orange', 'Large', 12.7, 0, 0, 42, 0, 0, '2/24/2010', 4),
('PH1065', 118, 'Orange', 'Small', 3.2, 1, 1, 72, 0, 0, '11/27/2016', 7),
('PH1066', 121, 'Orange', 'Small', 22.2, 0, 1, 40, 0, 0, '8/19/2016', 2),
('PH1067', 39, 'Gray', 'Large', 18.9, 1, 0, 46, 1, 0, '08/07/2018', 2),
('PH1068', 28, 'Black', 'Medium', 1.1, 1, 0, 71, 0, 1, '10/01/2015', 1),
('PH1069', 3, 'White', 'Small', 1.3, 1, 1, 70, 1, 0, '06/05/2016', 5),
('PH107', 14, 'Brown', 'Medium', 17.2, 0, 0, 60, 0, 1, '04/12/2015', 2),
('PH1070', 84, 'Orange', 'Medium', 24.5, 1, 0, 68, 0, 1, '7/13/2016', 5),
('PH1071', 155, 'Orange', 'Large', 8.5, 1, 0, 1, 0, 0, '5/21/2007', 1),
('PH1072', 117, 'Black', 'Large', 19.4, 1, 0, 79, 1, 0, '8/20/2013', 6),
('PH1073', 2, 'Orange', 'Small', 14.2, 0, 0, 89, 1, 0, '7/20/2018', 6),
('PH1074', 93, 'Gray', 'Large', 26.0, 1, 0, 52, 0, 0, '10/20/2016', 7),
('PH1075', 166, 'Gray', 'Small', 27.6, 1, 0, 35, 0, 0, '06/09/2018', 6),
('PH1076', 131, 'Orange', 'Medium', 29.9, 1, 0, 69, 0, 1, '8/15/2006', 1),
('PH1077', 144, 'Black', 'Small', 5.5, 1, 0, 5, 0, 0, '12/26/2013', 1),
('PH1078', 94, 'Black', 'Small', 26.0, 1, 1, 17, 1, 0, '11/21/2017', 2),
('PH1079', 40, 'Black', 'Medium', 8.7, 1, 0, 53, 0, 1, '04/05/2010', 4),
('PH108', 73, 'Gray', 'Small', 29.4, 1, 0, 26, 0, 0, '9/16/2016', 5),
('PH1080', 2, 'Brown', 'Small', 18.1, 1, 0, 52, 0, 1, '05/12/2018', 1),
('PH1081', 81, 'Orange', 'Small', 15.7, 1, 0, 14, 1, 0, '11/28/2016', 1),
('PH1082', 169, 'Black', 'Large', 1.5, 1, 0, 29, 0, 0, '7/23/2018', 1),
('PH1083', 12, 'Gray', 'Medium', 28.1, 1, 0, 8, 0, 1, '07/04/2012', 2),
('PH1084', 163, 'White', 'Small', 3.3, 0, 0, 1, 0, 0, '12/29/2014', 6),
('PH1085', 65, 'White', 'Medium', 21.0, 1, 0, 29, 0, 1, '10/21/2015', 1),
('PH1086', 55, 'Black', 'Medium', 23.8, 1, 0, 36, 0, 1, '2/16/2018', 6),
('PH1087', 45, 'White', 'Small', 24.1, 0, 0, 51, 0, 0, '8/18/2016', 2),
('PH1088', 101, 'White', 'Large', 4.9, 1, 0, 37, 0, 0, '1/14/2017', 3),
('PH1089', 62, 'Brown', 'Medium', 14.0, 1, 0, 69, 1, 1, '8/16/2017', 1),
('PH109', 143, 'White', 'Large', 23.4, 1, 0, 27, 1, 0, '11/17/2016', 1),
('PH1090', 49, 'Gray', 'Small', 25.1, 1, 0, 53, 1, 0, '5/23/2016', 2),
('PH1091', 127, 'Gray', 'Medium', 9.8, 0, 0, 52, 0, 0, '10/14/2017', 2),
('PH1092', 153, 'Brown', 'Large', 14.6, 1, 0, 88, 0, 0, '08/04/2011', 5),
('PH1093', 23, 'Brown', 'Large', 8.9, 1, 0, 83, 0, 1, '11/03/2016', 4),
('PH1094', 152, 'White', 'Large', 14.4, 1, 0, 12, 0, 0, '04/11/2017', 3),
('PH1095', 38, 'Orange', 'Small', 26.7, 1, 0, 52, 1, 0, '10/22/2016', 1),
('PH1096', 28, 'White', 'Small', 14.2, 1, 0, 1, 0, 0, '11/22/2016', 2),
('PH1097', 21, 'Brown', 'Large', 17.1, 0, 1, 7, 0, 0, '7/28/2017', 1),
('PH1098', 107, 'Gray', 'Small', 12.7, 1, 1, 17, 0, 0, '5/17/2018', 1),
('PH1099', 146, 'White', 'Large', 14.3, 0, 0, 43, 0, 0, '10/19/2011', 1),
('PH110', 149, 'Brown', 'Small', 4.1, 1, 0, 38, 0, 0, '9/18/2016', 3),
('PH1100', 164, 'Orange', 'Small', 1.4, 1, 0, 71, 0, 0, '1/22/2019', 7),
('PH1101', 99, 'White', 'Large', 9.2, 1, 0, 17, 1, 0, '10/21/2013', 3),
('PH1102', 173, 'Black', 'Medium', 13.7, 1, 0, 59, 1, 1, '6/13/2016', 3),
('PH1103', 119, 'White', 'Large', 19.4, 0, 0, 3, 1, 0, '11/29/2014', 1),
('PH1104', 73, 'Brown', 'Large', 14.1, 1, 0, 29, 1, 0, '12/09/2012', 3),
('PH1105', 122, 'Gray', 'Small', 10.8, 0, 0, 22, 1, 0, '07/10/2017', 2),
('PH1106', 30, 'Gray', 'Small', 12.3, 1, 0, 38, 0, 0, '07/05/2011', 5),
('PH1107', 108, 'Brown', 'Small', 8.0, 1, 0, 54, 0, 0, '02/09/2017', 2),
('PH1108', 98, 'Black', 'Small', 27.8, 1, 0, 50, 1, 0, '11/04/2015', 2),
('PH1109', 32, 'Brown', 'Small', 16.1, 1, 0, 69, 0, 0, '02/05/2015', 6),
('PH111', 163, 'Black', 'Small', 23.6, 1, 0, 22, 0, 0, '9/17/2017', 3),
('PH1110', 156, 'White', 'Small', 1.4, 0, 0, 30, 0, 0, '07/02/2018', 2),
('PH1111', 172, 'Brown', 'Medium', 1.6, 1, 0, 23, 0, 1, '11/21/2016', 5),
('PH1112', 79, 'Brown', 'Large', 29.2, 1, 0, 85, 0, 0, '6/26/2016', 2),
('PH1113', 41, 'Black', 'Large', 7.4, 1, 0, 47, 0, 0, '05/07/2014', 2),
('PH1114', 63, 'White', 'Large', 24.4, 1, 0, 21, 0, 0, '11/26/2016', 2),
('PH1115', 23, 'Orange', 'Medium', 2.7, 1, 0, 20, 0, 1, '4/20/2016', 7),
('PH1116', 104, 'Orange', 'Large', 27.7, 1, 0, 23, 1, 0, '5/31/2017', 7),
('PH1117', 75, 'Gray', 'Medium', 26.4, 1, 0, 68, 0, 1, '1/31/2014', 1),
('PH1118', 48, 'Brown', 'Medium', 17.6, 1, 0, 21, 1, 1, '9/16/2003', 1),
('PH1119', 160, 'Gray', 'Medium', 1.3, 1, 0, 21, 0, 1, '5/30/2018', 2),
('PH112', 66, 'Gray', 'Small', 5.9, 1, 0, 26, 1, 0, '11/16/2016', 5),
('PH1120', 57, 'Black', 'Large', 8.5, 1, 0, 1, 0, 0, '08/03/2009', 5),
('PH1121', 118, 'Orange', 'Medium', 12.8, 0, 1, 15, 0, 0, '8/26/2017', 5),
('PH1122', 100, 'Brown', 'Large', 14.3, 1, 0, 17, 0, 0, '6/24/2018', 3),
('PH1123', 124, 'Black', 'Large', 9.6, 0, 0, 51, 0, 0, '11/30/2016', 3),
('PH1124', 161, 'Black', 'Small', 2.0, 0, 0, 63, 1, 0, '12/02/2016', 2),
('PH1125', 152, 'Brown', 'Small', 18.1, 1, 1, 14, 1, 0, '02/02/2013', 3),
('PH1126', 167, 'Black', 'Medium', 16.2, 1, 0, 59, 1, 1, '11/18/2016', 2),
('PH1127', 34, 'Brown', 'Medium', 9.2, 0, 0, 83, 0, 0, '9/13/2016', 7),
('PH1128', 156, 'Brown', 'Large', 2.1, 1, 0, 50, 0, 0, '8/17/2015', 5),
('PH1129', 165, 'White', 'Medium', 29.8, 1, 1, 34, 0, 0, '11/14/2015', 1),
('PH113', 91, 'Brown', 'Large', 14.0, 1, 0, 86, 1, 1, '8/13/2014', 4),
('PH1130', 7, 'Gray', 'Medium', 15.0, 1, 0, 6, 0, 1, '03/05/2013', 3),
('PH1131', 165, 'Black', 'Large', 22.9, 1, 0, 49, 0, 0, '12/01/2015', 5),
('PH1132', 56, 'Black', 'Medium', 14.1, 1, 0, 6, 0, 1, '05/06/2016', 5),
('PH1133', 65, 'White', 'Medium', 2.3, 1, 0, 69, 0, 1, '01/05/2016', 1),
('PH1134', 47, 'White', 'Large', 10.0, 0, 1, 7, 0, 0, '8/29/2016', 1),
('PH1135', 148, 'White', 'Large', 10.3, 0, 0, 77, 0, 0, '07/06/2017', 2),
('PH1136', 19, 'Orange', 'Small', 25.3, 0, 0, 51, 0, 0, '8/22/2017', 2),
('PH1137', 157, 'Orange', 'Large', 20.0, 1, 1, 1, 0, 0, '08/03/2016', 4),
('PH1138', 146, 'Orange', 'Small', 9.0, 1, 1, 13, 1, 0, '05/09/2015', 6),
('PH1139', 163, 'Brown', 'Medium', 29.1, 1, 0, 43, 0, 1, '11/02/2017', 5),
('PH114', 130, 'Orange', 'Small', 7.1, 1, 0, 69, 1, 0, '9/13/2016', 5),
('PH1140', 171, 'Black', 'Large', 10.3, 1, 0, 27, 0, 0, '7/25/2017', 5),
('PH1141', 126, 'Gray', 'Large', 29.9, 1, 1, 71, 0, 0, '05/03/2016', 2),
('PH1142', 139, 'Brown', 'Large', 29.9, 0, 0, 3, 0, 0, '5/21/2016', 1),
('PH1143', 49, 'Black', 'Medium', 6.5, 1, 1, 58, 1, 0, '7/25/2016', 2),
('PH1144', 113, 'Black', 'Small', 10.1, 1, 1, 89, 1, 0, '03/01/2016', 6),
('PH1145', 38, 'White', 'Medium', 15.1, 0, 0, 17, 0, 0, '11/10/2016', 2),
('PH1146', 64, 'White', 'Medium', 20.3, 0, 1, 45, 0, 0, '6/25/2018', 2),
('PH1147', 69, 'Brown', 'Large', 16.3, 1, 0, 78, 1, 0, '08/08/2016', 7),
('PH1148', 136, 'White', 'Small', 29.1, 1, 0, 58, 0, 0, '7/15/2009', 6),
('PH1149', 162, 'Black', 'Medium', 22.0, 1, 0, 56, 1, 1, '12/06/2016', 1),
('PH115', 163, 'Black', 'Small', 21.0, 1, 0, 35, 0, 0, '10/11/2017', 1),
('PH1150', 176, 'White', 'Large', 7.1, 1, 1, 54, 0, 0, '07/06/2016', 5),
('PH1151', 116, 'Orange', 'Medium', 4.0, 1, 0, 87, 0, 1, '12/17/2016', 2),
('PH1152', 65, 'White', 'Medium', 21.0, 0, 0, 88, 1, 0, '06/10/1997', 2),
('PH1153', 31, 'Black', 'Large', 5.6, 1, 1, 29, 0, 0, '7/17/2018', 7),
('PH1154', 132, 'Brown', 'Large', 23.8, 1, 0, 54, 0, 0, '9/14/2016', 1),
('PH1155', 113, 'Gray', 'Small', 10.0, 1, 0, 27, 0, 0, '7/16/2015', 7),
('PH1156', 109, 'White', 'Medium', 10.5, 1, 1, 45, 0, 0, '07/12/2017', 7),
('PH1157', 178, 'Black', 'Large', 1.3, 1, 0, 87, 1, 1, '12/24/2015', 4),
('PH1158', 69, 'Gray', 'Large', 21.3, 1, 1, 31, 0, 0, '8/21/2016', 1),
('PH1159', 158, 'Gray', 'Small', 4.3, 1, 1, 36, 0, 0, '12/29/2009', 7),
('PH116', 20, 'Brown', 'Small', 26.4, 1, 0, 66, 0, 1, '09/06/2016', 5),
('PH1160', 120, 'Orange', 'Small', 23.4, 1, 0, 81, 1, 0, '6/25/2018', 5),
('PH1161', 88, 'Gray', 'Large', 15.3, 1, 0, 61, 0, 0, '4/13/2012', 6),
('PH1162', 67, 'Black', 'Small', 23.7, 0, 0, 37, 0, 0, '10/20/2016', 6),
('PH1163', 75, 'Black', 'Large', 17.9, 1, 0, 67, 1, 1, '7/20/2016', 4),
('PH1164', 45, 'White', 'Medium', 3.4, 1, 0, 36, 1, 1, '09/06/2015', 5),
('PH1165', 4, 'White', 'Small', 23.2, 1, 0, 5, 0, 1, '6/20/2015', 3),
('PH1166', 154, 'White', 'Medium', 3.0, 0, 0, 46, 0, 0, '08/05/2015', 6),
('PH1167', 155, 'Gray', 'Medium', 14.9, 1, 0, 79, 1, 1, '04/12/2017', 2),
('PH1168', 174, 'Gray', 'Medium', 6.0, 1, 0, 52, 1, 1, '11/12/2016', 7),
('PH1169', 107, 'Orange', 'Large', 22.8, 1, 0, 49, 1, 0, '1/30/2018', 2),
('PH117', 10, 'Black', 'Small', 9.4, 1, 0, 73, 1, 1, '04/04/2016', 1),
('PH1170', 51, 'White', 'Medium', 27.4, 1, 0, 6, 0, 1, '2/22/2009', 7),
('PH1171', 50, 'Brown', 'Medium', 17.1, 1, 0, 10, 0, 1, '2/15/2017', 5),
('PH1172', 6, 'Orange', 'Medium', 16.3, 1, 0, 23, 0, 1, '12/01/2009', 4),
('PH1173', 59, 'Brown', 'Large', 23.2, 1, 0, 17, 1, 0, '12/12/2016', 6),
('PH1174', 125, 'Gray', 'Medium', 1.1, 1, 0, 84, 1, 1, '3/20/2012', 2),
('PH1175', 143, 'Orange', 'Medium', 27.6, 0, 1, 44, 0, 0, '10/11/2017', 1),
('PH1176', 30, 'Orange', 'Small', 6.7, 0, 0, 41, 0, 0, '06/04/2018', 7),
('PH1177', 170, 'Black', 'Large', 29.5, 1, 0, 15, 0, 0, '12/14/2011', 5),
('PH1178', 122, 'Gray', 'Medium', 22.4, 1, 0, 44, 1, 1, '11/22/2018', 1),
('PH1179', 125, 'Gray', 'Small', 23.5, 1, 0, 58, 0, 0, '8/17/2014', 3),
('PH118', 25, 'Black', 'Medium', 3.4, 1, 0, 51, 0, 1, '3/24/2016', 3),
('PH1180', 37, 'Orange', 'Large', 20.0, 0, 0, 86, 0, 0, '2/27/2016', 5),
('PH1181', 170, 'Gray', 'Large', 14.7, 1, 0, 50, 0, 0, '6/24/2014', 2),
('PH1182', 124, 'Orange', 'Large', 17.6, 1, 0, 52, 0, 0, '4/14/2017', 6),
('PH1183', 101, 'Black', 'Large', 2.3, 0, 0, 70, 0, 0, '10/02/2011', 4),
('PH1184', 35, 'Orange', 'Large', 19.1, 1, 1, 68, 1, 0, '6/25/2016', 3),
('PH1185', 87, 'Gray', 'Large', 19.2, 1, 0, 63, 1, 0, '11/05/2017', 5),
('PH1186', 134, 'Gray', 'Medium', 26.8, 1, 0, 58, 0, 1, '01/01/2018', 7),
('PH1187', 18, 'Orange', 'Medium', 15.7, 1, 1, 23, 0, 1, '06/12/2017', 7),
('PH1188', 113, 'Orange', 'Medium', 3.2, 1, 0, 44, 1, 1, '12/18/2016', 6),
('PH1189', 29, 'Orange', 'Medium', 9.9, 0, 0, 83, 0, 0, '09/06/2017', 2),
('PH119', 25, 'White', 'Small', 9.7, 1, 1, 18, 1, 0, '09/06/2017', 1),
('PH1190', 77, 'White', 'Small', 20.0, 1, 0, 44, 0, 0, '10/16/2016', 6),
('PH1191', 59, 'Gray', 'Medium', 7.9, 0, 0, 52, 1, 0, '12/12/2014', 5),
('PH1192', 175, 'Gray', 'Large', 9.1, 1, 0, 67, 1, 0, '03/09/2016', 3),
('PH1193', 126, 'White', 'Medium', 24.8, 0, 0, 28, 1, 0, '2/26/2011', 3),
('PH1194', 145, 'Orange', 'Medium', 17.9, 1, 0, 67, 0, 1, '7/28/2018', 5),
('PH1195', 109, 'Black', 'Large', 15.7, 1, 0, 78, 0, 0, '12/17/2015', 3),
('PH1196', 22, 'Orange', 'Medium', 10.2, 0, 0, 18, 0, 1, '10/20/2015', 2),
('PH1197', 68, 'Orange', 'Medium', 22.2, 1, 0, 27, 0, 1, '12/21/2010', 1),
('PH1198', 69, 'White', 'Medium', 9.3, 0, 0, 51, 1, 0, '07/05/2017', 2),
('PH1199', 165, 'Gray', 'Small', 22.4, 1, 0, 60, 0, 0, '8/31/2010', 2),
('PH120', 54, 'Black', 'Medium', 20.5, 1, 1, 43, 0, 0, '12/03/2011', 6),
('PH1200', 49, 'Orange', 'Medium', 3.0, 1, 0, 74, 1, 1, '6/23/2011', 3),
('PH1201', 141, 'Gray', 'Large', 26.1, 0, 0, 49, 0, 0, '2/27/2016', 1),
('PH1202', 162, 'Brown', 'Large', 15.5, 0, 0, 15, 0, 0, '6/18/2016', 2),
('PH1203', 109, 'Gray', 'Medium', 13.7, 1, 0, 83, 1, 1, '11/21/2016', 1),
('PH1204', 86, 'Black', 'Medium', 18.7, 0, 0, 73, 0, 0, '03/01/2017', 6),
('PH1205', 53, 'Black', 'Medium', 19.1, 1, 0, 68, 0, 1, '9/16/2013', 1),
('PH1206', 123, 'Orange', 'Large', 4.8, 1, 0, 15, 0, 0, '04/09/2017', 1),
('PH1207', 87, 'Gray', 'Large', 22.9, 1, 0, 51, 0, 0, '08/08/2016', 2),
('PH1208', 179, 'Orange', 'Small', 9.0, 1, 0, 48, 0, 0, '3/20/2017', 6),
('PH1209', 131, 'White', 'Small', 27.2, 1, 0, 72, 0, 1, '8/15/2015', 4),
('PH121', 33, 'White', 'Small', 10.5, 0, 0, 12, 0, 0, '07/10/2016', 2),
('PH1210', 42, 'Black', 'Small', 24.7, 1, 0, 1, 0, 0, '10/20/2016', 6),
('PH1211', 98, 'Orange', 'Large', 11.0, 0, 0, 7, 1, 0, '2/28/2016', 1),
('PH1212', 160, 'White', 'Small', 24.4, 0, 0, 53, 0, 0, '06/04/2018', 2),
('PH1213', 109, 'Orange', 'Medium', 11.3, 0, 1, 31, 0, 0, '05/06/2016', 1),
('PH1214', 51, 'Gray', 'Medium', 3.9, 0, 0, 18, 0, 0, '8/31/2013', 1),
('PH1215', 85, 'Gray', 'Large', 28.9, 0, 0, 12, 0, 0, '10/15/2016', 2),
('PH1216', 174, 'Gray', 'Small', 19.9, 1, 1, 48, 0, 0, '09/11/2018', 1),
('PH1217', 127, 'Gray', 'Medium', 14.2, 1, 0, 30, 0, 1, '4/18/2012', 7),
('PH1218', 21, 'Brown', 'Large', 12.5, 1, 0, 7, 0, 1, '01/04/2018', 1),
('PH1219', 44, 'White', 'Small', 10.4, 0, 0, 3, 1, 0, '11/09/2016', 3),
('PH122', 164, 'Gray', 'Large', 9.1, 0, 0, 3, 1, 0, '11/17/2017', 3),
('PH1220', 139, 'White', 'Medium', 29.5, 1, 0, 63, 1, 1, '5/17/2018', 5),
('PH1221', 103, 'Gray', 'Small', 4.9, 1, 0, 6, 1, 0, '8/31/2016', 6),
('PH1222', 68, 'Brown', 'Large', 10.1, 1, 0, 15, 0, 1, '09/11/2016', 4),
('PH1223', 129, 'Gray', 'Small', 15.1, 1, 0, 71, 0, 1, '7/31/2003', 4),
('PH1224', 92, 'Brown', 'Large', 14.9, 1, 0, 43, 1, 1, '04/01/2013', 4),
('PH1225', 24, 'Gray', 'Small', 14.7, 1, 0, 81, 0, 0, '10/18/2015', 3),
('PH1226', 125, 'Black', 'Medium', 6.1, 1, 0, 18, 1, 1, '9/18/2017', 2),
('PH1227', 141, 'Black', 'Large', 5.2, 0, 1, 22, 0, 0, '03/04/2018', 5),
('PH1228', 111, 'Orange', 'Large', 8.4, 1, 0, 61, 0, 0, '3/18/2015', 1),
('PH1229', 98, 'Gray', 'Large', 27.5, 1, 1, 61, 1, 0, '2/23/2016', 1),
('PH123', 95, 'White', 'Medium', 6.3, 1, 0, 82, 0, 1, '11/07/2018', 1),
('PH1230', 139, 'White', 'Small', 4.3, 0, 0, 53, 1, 0, '10/20/2016', 1),
('PH1231', 179, 'Orange', 'Small', 23.0, 1, 0, 26, 1, 0, '2/13/2014', 5),
('PH1232', 17, 'Black', 'Medium', 23.0, 1, 0, 40, 1, 1, '9/16/2017', 2),
('PH1233', 99, 'Gray', 'Large', 24.5, 1, 0, 88, 0, 0, '10/01/2014', 2),
('PH1234', 82, 'Orange', 'Large', 26.7, 0, 1, 8, 0, 0, '11/08/2016', 1),
('PH1235', 104, 'Gray', 'Small', 8.6, 1, 1, 21, 1, 0, '1/13/2015', 6),
('PH1236', 152, 'Black', 'Small', 7.5, 1, 0, 43, 0, 0, '06/03/2017', 6),
('PH1237', 19, 'Orange', 'Medium', 14.5, 1, 0, 21, 0, 1, '07/05/2018', 1),
('PH1238', 165, 'Black', 'Medium', 8.7, 0, 0, 3, 0, 0, '8/26/2016', 3),
('PH1239', 85, 'Brown', 'Small', 22.3, 1, 1, 31, 0, 0, '03/01/2017', 1),
('PH124', 14, 'Orange', 'Medium', 15.4, 0, 0, 7, 0, 1, '3/23/2014', 2),
('PH1240', 8, 'Black', 'Large', 19.4, 1, 0, 27, 0, 1, '11/15/2013', 4),
('PH1241', 28, 'Gray', 'Medium', 26.4, 1, 0, 27, 0, 1, '11/17/2012', 7),
('PH1242', 5, 'White', 'Small', 3.4, 0, 0, 73, 1, 0, '1/26/2017', 3),
('PH1243', 145, 'Black', 'Small', 27.5, 1, 0, 57, 1, 0, '11/11/2014', 3),
('PH1244', 101, 'White', 'Large', 9.5, 1, 1, 33, 0, 0, '12/25/2014', 2),
('PH1245', 164, 'Brown', 'Small', 15.2, 0, 0, 44, 0, 0, '7/16/2016', 6),
('PH1246', 118, 'Orange', 'Small', 13.7, 1, 0, 43, 0, 0, '1/26/2019', 2),
('PH1247', 147, 'Orange', 'Medium', 23.0, 1, 0, 31, 0, 1, '03/03/2018', 1),
('PH1248', 64, 'White', 'Small', 13.2, 1, 0, 65, 0, 0, '12/20/2016', 2),
('PH1249', 91, 'Orange', 'Small', 28.4, 1, 0, 84, 0, 0, '3/23/2017', 1),
('PH125', 65, 'Brown', 'Medium', 9.0, 1, 0, 6, 0, 1, '6/23/2018', 1),
('PH1250', 117, 'Black', 'Medium', 27.2, 0, 0, 76, 0, 1, '06/06/2016', 4),
('PH1251', 98, 'White', 'Large', 26.3, 1, 0, 17, 0, 0, '07/02/2013', 1),
('PH1252', 11, 'Gray', 'Large', 3.1, 1, 1, 15, 0, 0, '12/26/2016', 7),
('PH1253', 54, 'Black', 'Medium', 25.8, 1, 0, 34, 0, 1, '04/10/2017', 2),
('PH1254', 173, 'Black', 'Medium', 23.7, 1, 0, 80, 0, 1, '12/27/2016', 6),
('PH1255', 47, 'Black', 'Large', 4.0, 0, 0, 4, 0, 0, '1/20/2018', 7),
('PH1256', 140, 'Gray', 'Large', 4.1, 1, 0, 72, 0, 0, '11/25/2016', 3),
('PH1257', 149, 'Brown', 'Large', 3.9, 1, 0, 89, 1, 0, '10/12/2016', 1),
('PH1258', 139, 'Orange', 'Large', 1.3, 1, 1, 79, 0, 0, '10/09/2017', 5),
('PH1259', 5, 'White', 'Large', 16.9, 1, 0, 28, 1, 1, '09/02/2016', 7),
('PH126', 110, 'Gray', 'Medium', 22.2, 0, 0, 82, 0, 1, '10/22/2015', 4),
('PH1260', 20, 'Brown', 'Medium', 29.2, 1, 0, 73, 0, 1, '05/03/2017', 1),
('PH1261', 169, 'White', 'Small', 13.7, 0, 0, 2, 1, 0, '12/02/2017', 2),
('PH1262', 46, 'Orange', 'Large', 16.7, 0, 0, 17, 0, 0, '02/10/2017', 6),
('PH1263', 12, 'Gray', 'Large', 29.1, 0, 0, 58, 1, 0, '08/02/2016', 1),
('PH1264', 70, 'Black', 'Small', 8.4, 1, 0, 74, 0, 0, '01/09/2017', 3),
('PH1265', 17, 'Black', 'Small', 25.9, 0, 0, 9, 1, 0, '08/09/2018', 5),
('PH1266', 115, 'Gray', 'Small', 16.8, 0, 0, 31, 0, 0, '08/10/2016', 6),
('PH1267', 147, 'Brown', 'Small', 17.5, 1, 0, 66, 0, 0, '4/29/2017', 1),
('PH1268', 154, 'Brown', 'Small', 11.0, 0, 0, 88, 1, 0, '7/22/2016', 5),
('PH1269', 48, 'White', 'Small', 17.3, 1, 0, 62, 0, 0, '07/01/2011', 3),
('PH127', 80, 'Gray', 'Large', 3.2, 1, 0, 45, 0, 0, '10/26/2017', 2),
('PH1270', 108, 'Gray', 'Medium', 3.1, 1, 0, 19, 1, 1, '5/28/2017', 3),
('PH1271', 52, 'Brown', 'Small', 23.2, 0, 0, 81, 0, 0, '08/06/2016', 2),
('PH1272', 96, 'Gray', 'Small', 9.3, 1, 1, 74, 0, 0, '8/16/2018', 2),
('PH1273', 70, 'Orange', 'Medium', 26.7, 0, 0, 55, 1, 0, '2/26/2018', 5),
('PH1274', 102, 'Black', 'Small', 11.7, 1, 0, 28, 0, 0, '10/26/2016', 1),
('PH1275', 75, 'Black', 'Large', 5.1, 1, 0, 50, 0, 0, '1/18/2016', 7),
('PH1276', 161, 'Black', 'Large', 21.2, 0, 1, 65, 1, 0, '08/02/2018', 1),
('PH1277', 151, 'Gray', 'Small', 5.8, 0, 1, 3, 1, 0, '11/27/2016', 6),
('PH1278', 143, 'Gray', 'Medium', 22.9, 1, 0, 79, 1, 1, '6/15/2016', 1),
('PH1279', 155, 'White', 'Large', 29.1, 0, 0, 52, 0, 0, '11/12/2015', 1),
('PH128', 54, 'Orange', 'Small', 20.3, 1, 0, 86, 0, 0, '7/16/2017', 2),
('PH1280', 179, 'Black', 'Medium', 23.6, 0, 1, 10, 0, 0, '8/14/2008', 5),
('PH1281', 82, 'White', 'Large', 1.7, 1, 0, 21, 0, 0, '02/11/2012', 5),
('PH1282', 92, 'Black', 'Small', 18.4, 1, 0, 37, 0, 0, '01/01/2018', 7),
('PH1283', 179, 'White', 'Medium', 21.2, 1, 1, 15, 1, 0, '01/06/2018', 1),
('PH1284', 175, 'White', 'Medium', 24.9, 1, 0, 87, 0, 1, '04/08/2017', 2),
('PH1285', 4, 'Orange', 'Medium', 2.6, 1, 0, 78, 0, 1, '02/10/2013', 1),
('PH1286', 135, 'White', 'Large', 14.9, 0, 1, 79, 0, 0, '3/13/2013', 2),
('PH1287', 109, 'Gray', 'Large', 16.5, 1, 0, 74, 1, 0, '10/09/2004', 2),
('PH1288', 163, 'White', 'Large', 5.9, 1, 0, 9, 1, 0, '9/18/2012', 7),
('PH1289', 48, 'Black', 'Small', 10.4, 1, 0, 44, 0, 0, '02/07/2017', 1),
('PH129', 125, 'White', 'Medium', 7.9, 1, 0, 39, 0, 1, '7/21/2016', 5),
('PH1290', 73, 'White', 'Large', 13.8, 1, 0, 39, 0, 0, '6/13/2018', 3),
('PH1291', 72, 'Brown', 'Small', 25.2, 0, 0, 5, 1, 0, '5/14/2017', 2),
('PH1292', 116, 'Black', 'Medium', 28.0, 0, 0, 25, 0, 0, '08/11/2015', 5),
('PH1293', 173, 'Brown', 'Medium', 19.2, 1, 0, 56, 0, 1, '06/11/2016', 1),
('PH1294', 81, 'Black', 'Small', 12.5, 1, 1, 64, 0, 0, '5/27/2018', 2),
('PH1295', 81, 'Gray', 'Large', 8.4, 1, 0, 72, 0, 0, '12/13/2014', 1),
('PH1296', 113, 'Gray', 'Small', 29.5, 0, 0, 86, 0, 0, '3/24/2018', 1),
('PH1297', 96, 'Gray', 'Medium', 29.5, 1, 0, 52, 1, 1, '01/07/2019', 2),
('PH1298', 72, 'Brown', 'Medium', 27.8, 1, 0, 89, 0, 1, '04/12/2016', 4),
('PH1299', 147, 'Orange', 'Small', 23.8, 1, 0, 76, 0, 0, '2/27/2016', 5),
('PH130', 131, 'Brown', 'Large', 15.2, 1, 0, 51, 1, 0, '7/13/2017', 1),
('PH1300', 63, 'Black', 'Large', 10.4, 1, 1, 9, 1, 0, '11/30/2017', 7),
('PH1301', 38, 'Gray', 'Large', 24.7, 1, 0, 10, 1, 1, '10/01/2018', 4),
('PH1302', 67, 'Black', 'Small', 12.9, 0, 0, 10, 0, 0, '6/21/2016', 6),
('PH1303', 69, 'Brown', 'Small', 10.5, 1, 0, 73, 0, 0, '11/05/2006', 6),
('PH1304', 13, 'Orange', 'Large', 22.6, 1, 0, 62, 0, 1, '12/21/2016', 1),
('PH1305', 175, 'Brown', 'Medium', 3.3, 0, 0, 60, 0, 0, '09/12/2018', 1),
('PH1306', 31, 'Black', 'Small', 2.4, 0, 0, 19, 0, 0, '06/10/2011', 6),
('PH1307', 114, 'Orange', 'Large', 14.0, 1, 0, 38, 0, 0, '11/01/2017', 5),
('PH1308', 22, 'Orange', 'Large', 13.9, 1, 1, 6, 0, 0, '1/18/2017', 1),
('PH1309', 93, 'Brown', 'Medium', 27.0, 1, 0, 15, 0, 1, '6/17/2017', 4),
('PH131', 169, 'White', 'Medium', 9.3, 0, 0, 9, 0, 0, '12/19/2016', 1),
('PH1310', 171, 'Gray', 'Medium', 4.7, 0, 0, 47, 0, 0, '07/03/2016', 6),
('PH1311', 67, 'Black', 'Medium', 4.6, 1, 0, 45, 0, 1, '03/11/2013', 2),
('PH1312', 54, 'White', 'Medium', 5.3, 1, 0, 5, 0, 1, '6/26/2017', 1),
('PH1313', 138, 'White', 'Medium', 1.9, 1, 0, 78, 0, 1, '1/25/2017', 1),
('PH1314', 42, 'Brown', 'Small', 3.1, 1, 0, 53, 0, 0, '12/19/2016', 1),
('PH1315', 64, 'Black', 'Large', 20.1, 1, 0, 66, 0, 0, '02/01/2017', 6),
('PH1316', 126, 'Black', 'Small', 13.5, 1, 1, 62, 0, 0, '08/04/2017', 7),
('PH1317', 21, 'Brown', 'Small', 23.1, 1, 0, 23, 0, 1, '06/07/2017', 4),
('PH1318', 169, 'Black', 'Small', 29.8, 1, 0, 44, 0, 0, '6/26/2016', 5),
('PH1319', 152, 'Gray', 'Small', 20.1, 1, 1, 52, 1, 0, '6/18/2017', 2),
('PH132', 134, 'Black', 'Small', 22.0, 0, 0, 23, 1, 0, '06/07/2018', 3),
('PH1320', 35, 'Brown', 'Small', 2.5, 1, 0, 46, 1, 0, '08/01/2018', 3),
('PH1321', 30, 'Gray', 'Medium', 4.0, 1, 0, 19, 0, 1, '6/23/2016', 7),
('PH1322', 57, 'Black', 'Medium', 26.5, 1, 1, 88, 1, 0, '01/09/2019', 5),
('PH1323', 47, 'Brown', 'Large', 16.3, 1, 0, 84, 0, 0, '08/03/2014', 1),
('PH1324', 163, 'Black', 'Small', 24.9, 1, 0, 47, 0, 0, '2/14/2019', 1),
('PH1325', 19, 'Brown', 'Large', 25.8, 1, 0, 52, 1, 1, '10/08/2015', 2),
('PH1326', 114, 'Black', 'Medium', 27.9, 1, 0, 24, 0, 1, '6/26/2016', 4),
('PH1327', 8, 'Gray', 'Medium', 28.5, 1, 0, 17, 0, 1, '1/30/2011', 5),
('PH1328', 26, 'Gray', 'Medium', 17.1, 1, 0, 89, 0, 1, '12/04/2017', 1),
('PH1329', 113, 'Black', 'Small', 10.9, 0, 0, 46, 0, 0, '08/03/2017', 7),
('PH133', 25, 'White', 'Medium', 28.4, 1, 0, 12, 0, 1, '02/04/2016', 1),
('PH1330', 71, 'Brown', 'Small', 28.9, 1, 0, 64, 0, 0, '03/09/2017', 2),
('PH1331', 30, 'White', 'Medium', 16.9, 0, 0, 28, 0, 0, '5/31/2015', 6),
('PH1332', 135, 'Gray', 'Large', 2.9, 0, 1, 50, 0, 0, '6/21/2011', 2),
('PH1333', 67, 'Gray', 'Large', 19.6, 1, 1, 64, 0, 0, '04/04/2013', 6),
('PH1334', 65, 'White', 'Medium', 18.0, 0, 0, 28, 0, 1, '10/04/2012', 4),
('PH1335', 36, 'Black', 'Large', 27.0, 1, 1, 86, 1, 0, '8/19/2018', 2),
('PH1336', 25, 'Brown', 'Medium', 19.9, 0, 0, 56, 1, 1, '12/03/2008', 4),
('PH1337', 37, 'Black', 'Large', 11.1, 0, 0, 59, 0, 0, '1/16/2006', 5),
('PH1338', 1, 'Orange', 'Medium', 29.0, 1, 0, 5, 0, 1, '08/08/2016', 3),
('PH1339', 143, 'Gray', 'Large', 24.2, 1, 0, 54, 1, 1, '7/22/2014', 4),
('PH134', 141, 'Gray', 'Large', 27.6, 1, 0, 88, 0, 1, '6/30/2017', 4),
('PH1340', 37, 'Orange', 'Small', 19.3, 1, 1, 44, 0, 0, '05/05/2016', 2),
('PH1341', 141, 'Gray', 'Medium', 9.5, 1, 0, 42, 0, 1, '2/27/2017', 2),
('PH1342', 136, 'Gray', 'Medium', 11.8, 0, 0, 72, 0, 0, '07/01/2015', 2),
('PH1343', 133, 'Orange', 'Large', 20.4, 1, 0, 57, 1, 0, '8/19/2016', 1),
('PH1344', 128, 'Orange', 'Medium', 3.1, 1, 0, 47, 0, 1, '9/13/2017', 5),
('PH1345', 127, 'Black', 'Medium', 8.4, 1, 0, 76, 0, 1, '01/09/2015', 4),
('PH1346', 1, 'Orange', 'Medium', 21.7, 1, 1, 25, 0, 1, '3/14/2018', 1),
('PH1347', 164, 'Black', 'Small', 14.9, 1, 0, 44, 0, 0, '07/06/2018', 2),
('PH1348', 35, 'Black', 'Small', 12.7, 1, 0, 15, 0, 0, '11/23/2014', 5),
('PH1349', 104, 'Black', 'Large', 5.4, 1, 0, 51, 0, 0, '4/22/2016', 2),
('PH135', 117, 'Brown', 'Small', 17.9, 1, 0, 62, 0, 0, '12/28/2011', 2),
('PH1350', 23, 'Gray', 'Small', 13.8, 1, 0, 53, 0, 1, '3/25/2017', 1),
('PH1351', 9, 'Gray', 'Large', 23.4, 1, 0, 34, 0, 1, '2/28/2018', 6),
('PH1352', 34, 'Orange', 'Small', 8.7, 0, 0, 77, 0, 0, '7/26/2012', 1),
('PH1353', 174, 'Gray', 'Large', 1.2, 1, 0, 8, 1, 0, '11/16/2017', 5),
('PH1354', 128, 'Orange', 'Small', 20.4, 1, 0, 77, 1, 0, '12/23/2012', 5),
('PH1355', 4, 'Gray', 'Small', 29.2, 1, 1, 70, 0, 0, '10/04/2017', 1),
('PH1356', 158, 'Brown', 'Large', 18.6, 1, 0, 21, 0, 0, '10/05/2015', 2),
('PH1357', 102, 'Brown', 'Medium', 4.5, 0, 0, 7, 0, 0, '03/01/2018', 2),
('PH1358', 75, 'Orange', 'Medium', 10.3, 1, 1, 79, 0, 0, '12/26/2016', 1),
('PH1359', 99, 'Gray', 'Small', 26.2, 1, 0, 56, 1, 0, '08/10/2018', 2),
('PH136', 136, 'White', 'Large', 14.4, 1, 0, 73, 1, 0, '5/21/2014', 1),
('PH1360', 72, 'Gray', 'Large', 7.7, 0, 0, 49, 0, 0, '08/02/2016', 2),
('PH1361', 3, 'Black', 'Medium', 18.6, 1, 0, 42, 0, 1, '09/08/2018', 3),
('PH1362', 142, 'White', 'Large', 12.7, 1, 0, 23, 1, 0, '5/17/2012', 5),
('PH1363', 173, 'Orange', 'Medium', 7.0, 1, 0, 52, 1, 1, '1/24/2011', 1),
('PH1364', 34, 'White', 'Large', 24.6, 1, 0, 79, 0, 0, '8/16/2014', 7),
('PH1365', 45, 'White', 'Small', 22.5, 1, 1, 53, 0, 0, '3/31/2016', 5),
('PH1366', 61, 'Orange', 'Large', 20.2, 0, 1, 16, 0, 0, '06/01/2014', 5),
('PH1367', 83, 'Gray', 'Medium', 7.9, 1, 0, 37, 1, 1, '07/05/2017', 5),
('PH1368', 123, 'Orange', 'Small', 3.8, 1, 0, 18, 1, 0, '07/01/2016', 7),
('PH1369', 102, 'White', 'Large', 17.7, 0, 1, 20, 0, 0, '01/10/2017', 1),
('PH137', 149, 'Brown', 'Small', 24.7, 1, 0, 77, 1, 0, '03/04/2006', 1),
('PH1370', 16, 'Gray', 'Medium', 17.1, 1, 0, 46, 0, 1, '4/16/2017', 2),
('PH1371', 66, 'Brown', 'Small', 6.5, 1, 0, 2, 0, 0, '1/14/2018', 5),
('PH1372', 168, 'Orange', 'Large', 2.6, 1, 0, 87, 0, 0, '7/14/2011', 7),
('PH1373', 145, 'Orange', 'Medium', 3.3, 1, 1, 63, 0, 0, '08/04/2016', 1),
('PH1374', 119, 'Gray', 'Large', 29.8, 1, 0, 3, 0, 0, '12/16/2018', 1),
('PH1375', 162, 'Brown', 'Large', 23.7, 1, 0, 46, 0, 1, '7/26/2017', 4),
('PH1376', 124, 'Brown', 'Small', 27.7, 1, 0, 49, 1, 0, '7/19/2017', 1),
('PH1377', 144, 'Gray', 'Small', 6.7, 0, 1, 1, 0, 0, '05/05/2016', 2),
('PH1378', 102, 'Black', 'Medium', 28.9, 1, 0, 22, 0, 1, '9/17/2015', 5),
('PH1379', 66, 'Orange', 'Small', 5.1, 1, 0, 14, 0, 0, '09/07/2018', 3),
('PH138', 25, 'Brown', 'Small', 20.8, 1, 0, 40, 1, 0, '6/20/2018', 1),
('PH1380', 13, 'Orange', 'Medium', 15.8, 1, 0, 85, 1, 1, '9/26/2011', 5),
('PH1381', 111, 'White', 'Large', 25.1, 1, 0, 45, 0, 0, '05/10/2014', 6),
('PH1382', 159, 'Gray', 'Large', 11.1, 1, 0, 6, 1, 0, '10/10/2005', 5),
('PH1383', 34, 'White', 'Medium', 13.3, 1, 1, 65, 0, 0, '04/06/2015', 2),
('PH1384', 39, 'White', 'Large', 4.7, 0, 0, 21, 1, 0, '04/12/2011', 1),
('PH1385', 136, 'Brown', 'Small', 4.6, 1, 0, 4, 1, 0, '01/08/2010', 2),
('PH1386', 120, 'Orange', 'Large', 19.0, 0, 0, 3, 0, 0, '12/09/2017', 1),
('PH1387', 126, 'White', 'Small', 20.6, 1, 0, 30, 1, 0, '10/26/2014', 5),
('PH1388', 55, 'Brown', 'Medium', 23.5, 1, 0, 31, 0, 1, '6/27/2017', 2),
('PH1389', 27, 'Gray', 'Medium', 17.1, 1, 0, 34, 0, 1, '10/17/2008', 3),
('PH139', 79, 'Black', 'Small', 6.3, 1, 0, 54, 0, 0, '11/29/2012', 6),
('PH1390', 118, 'White', 'Large', 19.7, 0, 1, 83, 0, 0, '09/02/2008', 4),
('PH1391', 53, 'Orange', 'Large', 1.4, 1, 0, 20, 0, 0, '03/03/2017', 2),
('PH1392', 39, 'White', 'Small', 5.7, 0, 0, 87, 1, 0, '01/04/2017', 5),
('PH1393', 65, 'Gray', 'Small', 29.6, 0, 0, 54, 1, 0, '6/17/2016', 5),
('PH1394', 145, 'White', 'Large', 3.2, 1, 0, 25, 0, 0, '6/18/2015', 3),
('PH1395', 158, 'Orange', 'Large', 20.7, 1, 0, 15, 0, 0, '5/16/2015', 1),
('PH1396', 13, 'Brown', 'Medium', 6.1, 0, 0, 38, 0, 1, '4/13/2013', 2),
('PH1397', 21, 'Orange', 'Medium', 21.8, 0, 0, 23, 0, 1, '11/06/2018', 4),
('PH1398', 147, 'Brown', 'Medium', 21.5, 1, 0, 52, 0, 1, '06/09/2018', 1),
('PH1399', 53, 'Black', 'Large', 7.8, 1, 0, 66, 1, 0, '3/23/2015', 7),
('PH140', 68, 'Black', 'Medium', 24.8, 0, 0, 81, 0, 0, '04/09/2016', 6),
('PH1400', 19, 'Orange', 'Large', 8.8, 0, 0, 57, 0, 0, '12/31/2016', 2),
('PH1401', 57, 'Orange', 'Large', 20.0, 1, 0, 57, 0, 0, '4/30/2016', 5),
('PH1402', 25, 'Gray', 'Medium', 12.3, 1, 1, 79, 1, 0, '4/18/2013', 1),
('PH1403', 31, 'White', 'Large', 6.6, 1, 0, 52, 0, 0, '10/27/2015', 2),
('PH1404', 81, 'Brown', 'Small', 22.2, 1, 1, 35, 0, 0, '01/01/2016', 4),
('PH1405', 23, 'Brown', 'Large', 5.5, 0, 0, 74, 0, 0, '01/03/2017', 1),
('PH1406', 32, 'Gray', 'Large', 25.8, 1, 0, 14, 0, 0, '8/21/2018', 1),
('PH1407', 74, 'Gray', 'Large', 15.9, 1, 0, 14, 1, 0, '6/23/2011', 6),
('PH1408', 10, 'White', 'Large', 4.1, 1, 0, 33, 0, 1, '11/21/2004', 2),
('PH1409', 54, 'White', 'Large', 21.1, 1, 0, 52, 0, 0, '9/16/2014', 1),
('PH141', 173, 'Gray', 'Large', 13.4, 1, 0, 7, 1, 0, '6/26/2018', 7),
('PH1410', 52, 'Orange', 'Small', 16.1, 1, 0, 1, 0, 0, '07/04/2017', 6),
('PH1411', 148, 'Black', 'Small', 9.6, 0, 0, 34, 0, 0, '7/13/2018', 1),
('PH1412', 160, 'White', 'Large', 13.3, 0, 0, 19, 1, 0, '08/04/2015', 7),
('PH1413', 114, 'Gray', 'Medium', 9.7, 0, 0, 24, 1, 0, '1/16/2015', 6),
('PH1414', 14, 'White', 'Large', 8.6, 1, 1, 4, 1, 1, '07/03/2017', 4),
('PH1415', 178, 'Brown', 'Large', 5.7, 1, 0, 36, 0, 0, '10/01/2018', 2),
('PH1416', 156, 'Black', 'Large', 11.5, 1, 0, 77, 0, 1, '1/18/2011', 4),
('PH1417', 110, 'Orange', 'Medium', 8.3, 0, 0, 58, 0, 0, '11/24/2016', 7),
('PH1418', 53, 'Brown', 'Medium', 20.8, 1, 1, 32, 0, 0, '12/10/2014', 2),
('PH1419', 152, 'Brown', 'Medium', 20.8, 1, 0, 9, 0, 1, '6/23/2016', 7),
('PH142', 12, 'Orange', 'Large', 6.5, 1, 0, 17, 1, 1, '7/13/2017', 4),
('PH1420', 79, 'Black', 'Small', 15.6, 1, 0, 80, 0, 0, '02/02/2017', 3),
('PH1421', 22, 'Orange', 'Medium', 23.6, 1, 0, 67, 1, 1, '7/25/2018', 5),
('PH1422', 30, 'Gray', 'Small', 25.4, 0, 0, 20, 0, 0, '8/21/2014', 2),
('PH1423', 4, 'Orange', 'Small', 17.8, 1, 0, 74, 0, 1, '12/24/2008', 2),
('PH1424', 59, 'White', 'Medium', 18.9, 1, 0, 62, 0, 1, '6/25/2006', 6),
('PH1425', 8, 'Brown', 'Medium', 9.2, 0, 1, 58, 0, 0, '4/26/2016', 1),
('PH1426', 12, 'White', 'Medium', 27.0, 1, 1, 22, 0, 1, '12/30/2011', 4),
('PH1427', 119, 'Gray', 'Small', 1.7, 0, 0, 67, 0, 0, '8/28/2011', 7),
('PH1428', 159, 'White', 'Large', 11.1, 1, 1, 75, 0, 0, '9/15/2016', 2),
('PH1429', 34, 'Orange', 'Medium', 21.9, 1, 0, 89, 0, 1, '12/20/2015', 1),
('PH143', 32, 'Brown', 'Large', 9.2, 0, 1, 50, 1, 0, '8/22/2016', 6),
('PH1430', 82, 'White', 'Medium', 3.3, 0, 1, 48, 1, 0, '10/25/2017', 2),
('PH1431', 98, 'Gray', 'Medium', 6.3, 1, 0, 8, 0, 1, '3/25/2018', 2),
('PH1432', 127, 'Gray', 'Small', 18.1, 1, 0, 73, 0, 0, '03/08/2015', 2),
('PH1433', 75, 'Gray', 'Small', 17.2, 0, 1, 15, 0, 0, '2/24/2017', 3),
('PH1434', 105, 'Orange', 'Large', 22.4, 1, 1, 32, 0, 0, '02/09/2017', 1),
('PH1435', 49, 'Gray', 'Medium', 24.6, 0, 0, 53, 1, 0, '7/29/2018', 2),
('PH1436', 79, 'Brown', 'Small', 4.7, 1, 0, 67, 0, 1, '1/17/2017', 4),
('PH1437', 93, 'Gray', 'Large', 1.5, 0, 0, 4, 0, 0, '2/17/2016', 1),
('PH1438', 154, 'White', 'Medium', 21.0, 0, 1, 30, 1, 0, '8/27/2015', 4),
('PH1439', 18, 'White', 'Small', 9.7, 0, 0, 13, 0, 0, '08/10/2013', 7),
('PH144', 128, 'Orange', 'Small', 8.8, 1, 1, 24, 0, 0, '1/23/2019', 2),
('PH1440', 96, 'White', 'Medium', 19.2, 0, 0, 21, 0, 0, '6/19/2007', 2),
('PH1441', 38, 'Orange', 'Medium', 5.4, 1, 0, 41, 0, 1, '08/03/2016', 1),
('PH1442', 87, 'White', 'Small', 14.6, 0, 0, 19, 0, 0, '02/11/2017', 1),
('PH1443', 88, 'Orange', 'Small', 15.6, 1, 0, 48, 1, 0, '3/20/2014', 6),
('PH1444', 50, 'Orange', 'Small', 18.0, 0, 0, 86, 0, 0, '7/14/2014', 1),
('PH1445', 8, 'Gray', 'Medium', 15.9, 0, 0, 63, 0, 1, '7/28/2018', 3),
('PH1446', 169, 'Brown', 'Medium', 15.4, 1, 0, 20, 0, 1, '10/02/2016', 7),
('PH1447', 134, 'Gray', 'Large', 10.6, 1, 0, 64, 0, 0, '1/23/2011', 3),
('PH1448', 69, 'Gray', 'Medium', 3.1, 1, 0, 37, 0, 1, '7/15/2010', 1),
('PH1449', 172, 'Orange', 'Small', 3.6, 1, 0, 31, 0, 0, '06/04/2014', 1),
('PH145', 96, 'Gray', 'Medium', 16.1, 0, 0, 2, 1, 0, '6/25/2012', 2),
('PH1450', 121, 'Orange', 'Medium', 13.6, 0, 0, 74, 0, 0, '08/10/2016', 6),
('PH1451', 64, 'White', 'Large', 11.3, 1, 0, 18, 0, 0, '11/22/2014', 2),
('PH1452', 157, 'White', 'Large', 16.0, 0, 0, 20, 1, 0, '04/05/2017', 1),
('PH1453', 156, 'Gray', 'Small', 9.8, 0, 0, 82, 0, 0, '2/17/2015', 7),
('PH1454', 139, 'Black', 'Small', 20.9, 1, 0, 11, 0, 0, '4/19/2015', 1),
('PH1455', 121, 'Black', 'Large', 26.1, 1, 0, 86, 0, 0, '05/02/2015', 1),
('PH1456', 65, 'White', 'Large', 9.7, 1, 0, 44, 1, 0, '7/17/2013', 6),
('PH1457', 107, 'Black', 'Large', 6.6, 0, 1, 82, 1, 0, '08/03/2016', 6),
('PH1458', 147, 'White', 'Small', 4.4, 1, 0, 64, 1, 1, '1/28/2019', 4),
('PH1459', 137, 'Orange', 'Large', 18.9, 1, 1, 34, 0, 0, '9/15/2014', 2),
('PH146', 92, 'Brown', 'Small', 7.8, 1, 1, 83, 0, 0, '11/22/2016', 2),
('PH1460', 155, 'Gray', 'Large', 13.9, 1, 0, 87, 1, 0, '11/26/2010', 1),
('PH1461', 162, 'Brown', 'Small', 6.5, 0, 1, 65, 0, 0, '11/12/2016', 6),
('PH1462', 172, 'Gray', 'Medium', 19.9, 0, 0, 55, 0, 0, '05/05/2018', 7),
('PH1463', 100, 'White', 'Medium', 5.3, 1, 0, 74, 0, 1, '8/13/2016', 1),
('PH1464', 82, 'White', 'Large', 17.1, 1, 1, 1, 1, 0, '11/18/2015', 4),
('PH1465', 143, 'Gray', 'Medium', 16.3, 1, 0, 38, 1, 1, '7/13/2015', 3),
('PH1466', 51, 'White', 'Medium', 22.3, 1, 0, 9, 1, 1, '10/14/2013', 6),
('PH1467', 141, 'Black', 'Medium', 2.6, 0, 0, 71, 1, 0, '07/12/2017', 2),
('PH1468', 83, 'Black', 'Medium', 26.7, 1, 1, 17, 0, 0, '11/21/2011', 2),
('PH1469', 177, 'White', 'Large', 21.4, 1, 0, 52, 0, 0, '2/16/2017', 3),
('PH147', 141, 'Brown', 'Large', 4.6, 1, 0, 33, 0, 0, '11/11/2011', 2),
('PH1470', 112, 'White', 'Medium', 7.3, 0, 0, 18, 0, 0, '6/27/2011', 2),
('PH1471', 56, 'Black', 'Medium', 6.3, 0, 0, 63, 1, 0, '10/10/2010', 5),
('PH1472', 179, 'White', 'Small', 13.5, 1, 0, 33, 0, 0, '11/26/2016', 5),
('PH1473', 165, 'White', 'Large', 24.7, 1, 0, 4, 1, 0, '10/01/2018', 5),
('PH1474', 145, 'Gray', 'Small', 25.4, 1, 0, 87, 0, 0, '11/22/2017', 2),
('PH1475', 157, 'Brown', 'Small', 16.1, 0, 1, 75, 0, 0, '12/18/2017', 5),
('PH1476', 161, 'Black', 'Large', 26.0, 1, 0, 52, 0, 0, '6/21/2016', 2),
('PH1477', 60, 'Gray', 'Medium', 1.2, 0, 0, 9, 0, 0, '7/19/2017', 2),
('PH1478', 120, 'Brown', 'Small', 2.0, 1, 0, 64, 1, 0, '7/19/2013', 1),
('PH1479', 138, 'White', 'Large', 27.4, 1, 0, 30, 0, 0, '6/21/2010', 5),
('PH148', 31, 'Orange', 'Medium', 4.6, 1, 0, 21, 0, 1, '9/18/2016', 6),
('PH1480', 175, 'White', 'Medium', 23.5, 0, 0, 8, 0, 0, '8/25/2016', 7),
('PH1481', 23, 'Gray', 'Large', 14.1, 0, 0, 5, 0, 0, '11/30/2013', 2),
('PH1482', 149, 'White', 'Small', 22.9, 1, 0, 76, 0, 0, '3/28/2017', 2),