-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2_authors.sql
11176 lines (11175 loc) · 790 KB
/
2_authors.sql
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
USE qod;
INSERT INTO authors (author_id, author) VALUES (1, 'Mark Twain');
INSERT INTO authors (author_id, author) VALUES (2, 'Henry Ford');
INSERT INTO authors (author_id, author) VALUES (3, 'Kurt Vonnegut');
INSERT INTO authors (author_id, author) VALUES (4, 'Robert Frost');
INSERT INTO authors (author_id, author) VALUES (5, 'Andrew Carnegie');
INSERT INTO authors (author_id, author) VALUES (6, 'C. S. Lewis');
INSERT INTO authors (author_id, author) VALUES (7, 'Confucius');
INSERT INTO authors (author_id, author) VALUES (8, 'Eleanor Roosevelt');
INSERT INTO authors (author_id, author) VALUES (9, 'Samuel Ullman');
INSERT INTO authors (author_id, author) VALUES (10, 'Agatha Christie');
INSERT INTO authors (author_id, author) VALUES (11, 'Ralph Waldo Emerson');
INSERT INTO authors (author_id, author) VALUES (12, 'Aristotle');
INSERT INTO authors (author_id, author) VALUES (13, 'Bill Cosby');
INSERT INTO authors (author_id, author) VALUES (14, 'Francis Bacon');
INSERT INTO authors (author_id, author) VALUES (15, 'Henry David Thoreau');
INSERT INTO authors (author_id, author) VALUES (16, 'George Bernard Shaw');
INSERT INTO authors (author_id, author) VALUES (17, 'Victor Hugo');
INSERT INTO authors (author_id, author) VALUES (18, 'George Burns');
INSERT INTO authors (author_id, author) VALUES (19, 'Albert Camus');
INSERT INTO authors (author_id, author) VALUES (20, 'Bill Vaughan');
INSERT INTO authors (author_id, author) VALUES (21, 'Theodore Roosevelt');
INSERT INTO authors (author_id, author) VALUES (22, 'Maurice Chevalier');
INSERT INTO authors (author_id, author) VALUES (23, 'Sophocles');
INSERT INTO authors (author_id, author) VALUES (24, 'Rabindranath Tagore');
INSERT INTO authors (author_id, author) VALUES (25, 'Voltaire');
INSERT INTO authors (author_id, author) VALUES (26, 'Tom Stoppard');
INSERT INTO authors (author_id, author) VALUES (27, 'Bette Davis');
INSERT INTO authors (author_id, author) VALUES (28, 'Bob Hope');
INSERT INTO authors (author_id, author) VALUES (29, 'Marcus Tullius Cicero');
INSERT INTO authors (author_id, author) VALUES (30, 'T. S. Eliot');
INSERT INTO authors (author_id, author) VALUES (31, 'Pablo Picasso');
INSERT INTO authors (author_id, author) VALUES (32, 'Bette Midler');
INSERT INTO authors (author_id, author) VALUES (33, 'Sophia Loren');
INSERT INTO authors (author_id, author) VALUES (34, 'Don Marquis');
INSERT INTO authors (author_id, author) VALUES (35, 'John Adams');
INSERT INTO authors (author_id, author) VALUES (36, 'Hosea Ballou');
INSERT INTO authors (author_id, author) VALUES (37, 'Stanislaw Lec');
INSERT INTO authors (author_id, author) VALUES (38, 'Dwight L. Moody');
INSERT INTO authors (author_id, author) VALUES (39, 'Mignon McLaughlin');
INSERT INTO authors (author_id, author) VALUES (40, 'Andre Maurois');
INSERT INTO authors (author_id, author) VALUES (41, 'Margaret Mead');
INSERT INTO authors (author_id, author) VALUES (42, 'Oliver Wendell Holmes');
INSERT INTO authors (author_id, author) VALUES (43, 'Betty Friedan');
INSERT INTO authors (author_id, author) VALUES (44, 'Doris Lessing');
INSERT INTO authors (author_id, author) VALUES (45, 'Casey Stengel');
INSERT INTO authors (author_id, author) VALUES (46, 'Emily Dickinson');
INSERT INTO authors (author_id, author) VALUES (47, 'Lauren Bacall');
INSERT INTO authors (author_id, author) VALUES (48, 'James Broughton');
INSERT INTO authors (author_id, author) VALUES (49, 'Euripides');
INSERT INTO authors (author_id, author) VALUES (50, 'Brigitte Bardot');
INSERT INTO authors (author_id, author) VALUES (51, 'William Feather');
INSERT INTO authors (author_id, author) VALUES (52, 'Helen Gurley Brown');
INSERT INTO authors (author_id, author) VALUES (53, 'Judith Viorst');
INSERT INTO authors (author_id, author) VALUES (54, 'Henri Frederic Amiel');
INSERT INTO authors (author_id, author) VALUES (55, 'Sam Ewing');
INSERT INTO authors (author_id, author) VALUES (56, 'Warren Beatty');
INSERT INTO authors (author_id, author) VALUES (57, 'Frances Conroy');
INSERT INTO authors (author_id, author) VALUES (58, 'Golda Meir');
INSERT INTO authors (author_id, author) VALUES (59, 'Pope Paul VI');
INSERT INTO authors (author_id, author) VALUES (60, 'Doug Larson');
INSERT INTO authors (author_id, author) VALUES (61, 'Jane Elliot');
INSERT INTO authors (author_id, author) VALUES (62, 'Kitty O\'Neill Collins');
INSERT INTO authors (author_id, author) VALUES (63, 'Josh Billings');
INSERT INTO authors (author_id, author) VALUES (64, 'Amos Bronson Alcott');
INSERT INTO authors (author_id, author) VALUES (65, 'B. F. Skinner');
INSERT INTO authors (author_id, author) VALUES (66, 'Louis Kronenberger');
INSERT INTO authors (author_id, author) VALUES (67, 'Sting');
INSERT INTO authors (author_id, author) VALUES (68, 'Harrison Ford');
INSERT INTO authors (author_id, author) VALUES (69, 'Jean Paul');
INSERT INTO authors (author_id, author) VALUES (70, 'Charles de Gaulle');
INSERT INTO authors (author_id, author) VALUES (71, 'Alan Bleasdale');
INSERT INTO authors (author_id, author) VALUES (72, 'James Thurber');
INSERT INTO authors (author_id, author) VALUES (73, 'Katharine Graham');
INSERT INTO authors (author_id, author) VALUES (74, 'Kevin Spacey');
INSERT INTO authors (author_id, author) VALUES (75, 'Pierre Corneille');
INSERT INTO authors (author_id, author) VALUES (76, 'Christine Lahti');
INSERT INTO authors (author_id, author) VALUES (77, 'Pearl S. Buck');
INSERT INTO authors (author_id, author) VALUES (78, 'Harold Coffin');
INSERT INTO authors (author_id, author) VALUES (79, 'Doris Day');
INSERT INTO authors (author_id, author) VALUES (80, 'Holbrook Jackson');
INSERT INTO authors (author_id, author) VALUES (81, 'Logan P. Smith');
INSERT INTO authors (author_id, author) VALUES (82, 'Beverly Sills');
INSERT INTO authors (author_id, author) VALUES (83, 'J. B. Priestley');
INSERT INTO authors (author_id, author) VALUES (84, 'Leon Edel');
INSERT INTO authors (author_id, author) VALUES (85, 'Frank A. Clark');
INSERT INTO authors (author_id, author) VALUES (86, 'Max Lerner');
INSERT INTO authors (author_id, author) VALUES (87, 'Shelley Duvall');
INSERT INTO authors (author_id, author) VALUES (88, 'Gene Fowler');
INSERT INTO authors (author_id, author) VALUES (89, 'Sinclair Lewis');
INSERT INTO authors (author_id, author) VALUES (90, 'Thomas Bailey Aldrich');
INSERT INTO authors (author_id, author) VALUES (91, 'Knut Hamsun');
INSERT INTO authors (author_id, author) VALUES (92, 'Fay Weldon');
INSERT INTO authors (author_id, author) VALUES (93, 'Dorothy Canfield Fisher');
INSERT INTO authors (author_id, author) VALUES (94, 'Willard Scott');
INSERT INTO authors (author_id, author) VALUES (95, 'Susan Anton');
INSERT INTO authors (author_id, author) VALUES (96, 'Colleen McCullough');
INSERT INTO authors (author_id, author) VALUES (97, 'Muriel Spark');
INSERT INTO authors (author_id, author) VALUES (98, 'Hume Cronyn');
INSERT INTO authors (author_id, author) VALUES (99, 'Bob Wells');
INSERT INTO authors (author_id, author) VALUES (100, 'Ira Gershwin');
INSERT INTO authors (author_id, author) VALUES (101, 'Marvin Davis');
INSERT INTO authors (author_id, author) VALUES (102, 'William Ernest Hocking');
INSERT INTO authors (author_id, author) VALUES (103, 'Albert Einstein');
INSERT INTO authors (author_id, author) VALUES (104, 'Claude Pepper');
INSERT INTO authors (author_id, author) VALUES (105, 'Friedrich Nietzsche');
INSERT INTO authors (author_id, author) VALUES (106, 'Muhammad Ali');
INSERT INTO authors (author_id, author) VALUES (107, 'Mahatma Gandhi');
INSERT INTO authors (author_id, author) VALUES (108, 'William Shakespeare');
INSERT INTO authors (author_id, author) VALUES (109, 'Thomas Jefferson');
INSERT INTO authors (author_id, author) VALUES (110, 'Helen Keller');
INSERT INTO authors (author_id, author) VALUES (111, 'Ronald Reagan');
INSERT INTO authors (author_id, author) VALUES (112, 'Oscar Wilde');
INSERT INTO authors (author_id, author) VALUES (113, 'Benjamin Franklin');
INSERT INTO authors (author_id, author) VALUES (114, 'Anais Nin');
INSERT INTO authors (author_id, author) VALUES (115, 'John F. Kennedy');
INSERT INTO authors (author_id, author) VALUES (116, 'Lucille Ball');
INSERT INTO authors (author_id, author) VALUES (117, 'Marilyn Monroe');
INSERT INTO authors (author_id, author) VALUES (118, 'Oprah Winfrey');
INSERT INTO authors (author_id, author) VALUES (119, 'Eminem');
INSERT INTO authors (author_id, author) VALUES (120, 'Plato');
INSERT INTO authors (author_id, author) VALUES (121, 'Erich Fromm');
INSERT INTO authors (author_id, author) VALUES (122, 'Charlie Sheen');
INSERT INTO authors (author_id, author) VALUES (123, 'Rodney Dangerfield');
INSERT INTO authors (author_id, author) VALUES (124, 'Luis Bunuel');
INSERT INTO authors (author_id, author) VALUES (125, 'Ernest Hemingway');
INSERT INTO authors (author_id, author) VALUES (126, 'George Orwell');
INSERT INTO authors (author_id, author) VALUES (127, 'Groucho Marx');
INSERT INTO authors (author_id, author) VALUES (128, 'Aldous Huxley');
INSERT INTO authors (author_id, author) VALUES (129, 'Tony Robbins');
INSERT INTO authors (author_id, author) VALUES (130, 'John Burroughs');
INSERT INTO authors (author_id, author) VALUES (131, 'Helen Hayes');
INSERT INTO authors (author_id, author) VALUES (132, 'Barbara de Angelis');
INSERT INTO authors (author_id, author) VALUES (133, 'Coco Chanel');
INSERT INTO authors (author_id, author) VALUES (134, 'H. L. Mencken');
INSERT INTO authors (author_id, author) VALUES (135, 'Erma Bombeck');
INSERT INTO authors (author_id, author) VALUES (136, 'Clint Eastwood');
INSERT INTO authors (author_id, author) VALUES (137, 'Johann Wolfgang von Goethe');
INSERT INTO authors (author_id, author) VALUES (138, 'Douglas MacArthur');
INSERT INTO authors (author_id, author) VALUES (139, 'Stephen Fry');
INSERT INTO authors (author_id, author) VALUES (140, 'Robert Louis Stevenson');
INSERT INTO authors (author_id, author) VALUES (141, 'Dale Carnegie');
INSERT INTO authors (author_id, author) VALUES (142, 'James Joyce');
INSERT INTO authors (author_id, author) VALUES (143, 'Aphra Behn');
INSERT INTO authors (author_id, author) VALUES (144, 'Katharine Hepburn');
INSERT INTO authors (author_id, author) VALUES (145, 'Judy Garland');
INSERT INTO authors (author_id, author) VALUES (146, 'Steven Wright');
INSERT INTO authors (author_id, author) VALUES (147, 'Jeanne Moreau');
INSERT INTO authors (author_id, author) VALUES (148, 'Frank Lloyd Wright');
INSERT INTO authors (author_id, author) VALUES (149, 'Salvador Dali');
INSERT INTO authors (author_id, author) VALUES (150, 'Ogden Nash');
INSERT INTO authors (author_id, author) VALUES (151, 'Sigmund Freud');
INSERT INTO authors (author_id, author) VALUES (152, 'Princess Diana');
INSERT INTO authors (author_id, author) VALUES (153, 'Pope John XXIII');
INSERT INTO authors (author_id, author) VALUES (154, 'Avril Lavigne');
INSERT INTO authors (author_id, author) VALUES (155, 'William James');
INSERT INTO authors (author_id, author) VALUES (156, 'Jean-Paul Sartre');
INSERT INTO authors (author_id, author) VALUES (157, 'Thomas Carlyle');
INSERT INTO authors (author_id, author) VALUES (158, 'Elizabeth Taylor');
INSERT INTO authors (author_id, author) VALUES (159, 'Paulo Coelho');
INSERT INTO authors (author_id, author) VALUES (160, 'Joan Collins');
INSERT INTO authors (author_id, author) VALUES (161, 'Phyllis Diller');
INSERT INTO authors (author_id, author) VALUES (162, 'Benjamin Disraeli');
INSERT INTO authors (author_id, author) VALUES (163, 'Bertrand Russell');
INSERT INTO authors (author_id, author) VALUES (164, 'Alexander Hamilton');
INSERT INTO authors (author_id, author) VALUES (165, 'Soren Kierkegaard');
INSERT INTO authors (author_id, author) VALUES (166, 'Marie von Ebner-Eschenbach');
INSERT INTO authors (author_id, author) VALUES (167, 'Lucius Annaeus Seneca');
INSERT INTO authors (author_id, author) VALUES (168, 'Billy Graham');
INSERT INTO authors (author_id, author) VALUES (169, 'Colin Powell');
INSERT INTO authors (author_id, author) VALUES (170, 'Lord Chesterfield');
INSERT INTO authors (author_id, author) VALUES (171, 'Henry Wadsworth Longfellow');
INSERT INTO authors (author_id, author) VALUES (172, 'Satchel Paige');
INSERT INTO authors (author_id, author) VALUES (173, 'Louisa May Alcott');
INSERT INTO authors (author_id, author) VALUES (174, 'Edmund Burke');
INSERT INTO authors (author_id, author) VALUES (175, 'Ambrose Bierce');
INSERT INTO authors (author_id, author) VALUES (176, 'Abdul Kalam');
INSERT INTO authors (author_id, author) VALUES (177, 'Karl Marx');
INSERT INTO authors (author_id, author) VALUES (178, 'Timothy Leary');
INSERT INTO authors (author_id, author) VALUES (179, 'Gilbert K. Chesterton');
INSERT INTO authors (author_id, author) VALUES (180, 'Gore Vidal');
INSERT INTO authors (author_id, author) VALUES (181, 'Olivia Munn');
INSERT INTO authors (author_id, author) VALUES (182, 'Miriam Makeba');
INSERT INTO authors (author_id, author) VALUES (183, 'Dwight D. Eisenhower');
INSERT INTO authors (author_id, author) VALUES (184, 'Walter Scott');
INSERT INTO authors (author_id, author) VALUES (185, 'Tom Wilson');
INSERT INTO authors (author_id, author) VALUES (186, 'Robert Green Ingersoll');
INSERT INTO authors (author_id, author) VALUES (187, 'Michelle Obama');
INSERT INTO authors (author_id, author) VALUES (188, 'John Ruskin');
INSERT INTO authors (author_id, author) VALUES (189, 'Miguel de Unamuno');
INSERT INTO authors (author_id, author) VALUES (190, 'Francois de La Rochefoucauld');
INSERT INTO authors (author_id, author) VALUES (191, 'Liv Tyler');
INSERT INTO authors (author_id, author) VALUES (192, 'Steven Morrissey');
INSERT INTO authors (author_id, author) VALUES (193, 'Michelangelo');
INSERT INTO authors (author_id, author) VALUES (194, 'Orson Welles');
INSERT INTO authors (author_id, author) VALUES (195, 'Charles Kingsley');
INSERT INTO authors (author_id, author) VALUES (196, 'William Blake');
INSERT INTO authors (author_id, author) VALUES (197, 'Chuck Palahniuk');
INSERT INTO authors (author_id, author) VALUES (198, 'Lord Byron');
INSERT INTO authors (author_id, author) VALUES (199, 'William Wordsworth');
INSERT INTO authors (author_id, author) VALUES (200, 'Charles Dickens');
INSERT INTO authors (author_id, author) VALUES (201, 'Peace Pilgrim');
INSERT INTO authors (author_id, author) VALUES (202, 'Mary Schmich');
INSERT INTO authors (author_id, author) VALUES (203, 'Gertrude Stein');
INSERT INTO authors (author_id, author) VALUES (204, 'Billy Joel');
INSERT INTO authors (author_id, author) VALUES (205, 'Ann Coulter');
INSERT INTO authors (author_id, author) VALUES (206, 'W. Somerset Maugham');
INSERT INTO authors (author_id, author) VALUES (207, 'Arthur Schopenhauer');
INSERT INTO authors (author_id, author) VALUES (208, 'Bo Bennett');
INSERT INTO authors (author_id, author) VALUES (209, 'Simone de Beauvoir');
INSERT INTO authors (author_id, author) VALUES (210, 'Richard Dawkins');
INSERT INTO authors (author_id, author) VALUES (211, 'William Butler Yeats');
INSERT INTO authors (author_id, author) VALUES (212, 'Mason Cooley');
INSERT INTO authors (author_id, author) VALUES (213, 'Friedrich Durrenmatt');
INSERT INTO authors (author_id, author) VALUES (214, 'Jack Benny');
INSERT INTO authors (author_id, author) VALUES (215, 'Martha Graham');
INSERT INTO authors (author_id, author) VALUES (216, 'George W. Bush');
INSERT INTO authors (author_id, author) VALUES (217, 'Henry Miller');
INSERT INTO authors (author_id, author) VALUES (218, 'Samuel Johnson');
INSERT INTO authors (author_id, author) VALUES (219, 'Michel de Montaigne');
INSERT INTO authors (author_id, author) VALUES (220, 'John Galsworthy');
INSERT INTO authors (author_id, author) VALUES (221, 'Noel Coward');
INSERT INTO authors (author_id, author) VALUES (222, 'Will Durant');
INSERT INTO authors (author_id, author) VALUES (223, 'Elton John');
INSERT INTO authors (author_id, author) VALUES (224, 'Sara Blakely');
INSERT INTO authors (author_id, author) VALUES (225, 'Washington Irving');
INSERT INTO authors (author_id, author) VALUES (226, 'Alanis Morissette');
INSERT INTO authors (author_id, author) VALUES (227, 'Johnny Ball');
INSERT INTO authors (author_id, author) VALUES (228, 'Bono');
INSERT INTO authors (author_id, author) VALUES (229, 'Carl Sandburg');
INSERT INTO authors (author_id, author) VALUES (230, 'F. Scott Fitzgerald');
INSERT INTO authors (author_id, author) VALUES (231, 'Reinhold Niebuhr');
INSERT INTO authors (author_id, author) VALUES (232, 'William Osler');
INSERT INTO authors (author_id, author) VALUES (233, 'John Henrik Clarke');
INSERT INTO authors (author_id, author) VALUES (234, 'Herman Cain');
INSERT INTO authors (author_id, author) VALUES (235, 'Whitney Houston');
INSERT INTO authors (author_id, author) VALUES (236, 'Stendhal');
INSERT INTO authors (author_id, author) VALUES (237, 'Michel Foucault');
INSERT INTO authors (author_id, author) VALUES (238, 'Cindy Crawford');
INSERT INTO authors (author_id, author) VALUES (239, 'John W. Gardner');
INSERT INTO authors (author_id, author) VALUES (240, 'Virginia Woolf');
INSERT INTO authors (author_id, author) VALUES (241, 'Tommy Cooper');
INSERT INTO authors (author_id, author) VALUES (242, 'Henry Rollins');
INSERT INTO authors (author_id, author) VALUES (243, 'Mick Jagger');
INSERT INTO authors (author_id, author) VALUES (244, 'Charles Spurgeon');
INSERT INTO authors (author_id, author) VALUES (245, 'Haruki Murakami');
INSERT INTO authors (author_id, author) VALUES (246, 'Joseph Addison');
INSERT INTO authors (author_id, author) VALUES (247, 'John Kenneth Galbraith');
INSERT INTO authors (author_id, author) VALUES (248, 'Charles de Montesquieu');
INSERT INTO authors (author_id, author) VALUES (249, 'William Hazlitt');
INSERT INTO authors (author_id, author) VALUES (250, 'J. K. Rowling');
INSERT INTO authors (author_id, author) VALUES (251, 'Eric Hoffer');
INSERT INTO authors (author_id, author) VALUES (252, 'Courteney Cox');
INSERT INTO authors (author_id, author) VALUES (253, 'Robert Mugabe');
INSERT INTO authors (author_id, author) VALUES (254, 'Sophia Bush');
INSERT INTO authors (author_id, author) VALUES (255, 'Lyndon B. Johnson');
INSERT INTO authors (author_id, author) VALUES (256, 'Amelia Barr');
INSERT INTO authors (author_id, author) VALUES (257, 'George Santayana');
INSERT INTO authors (author_id, author) VALUES (258, 'Andre Gide');
INSERT INTO authors (author_id, author) VALUES (259, 'Franklin P. Adams');
INSERT INTO authors (author_id, author) VALUES (260, 'Chinua Achebe');
INSERT INTO authors (author_id, author) VALUES (261, 'Albert Ellis');
INSERT INTO authors (author_id, author) VALUES (262, 'Russell Baker');
INSERT INTO authors (author_id, author) VALUES (263, 'Francis Schaeffer');
INSERT INTO authors (author_id, author) VALUES (264, 'Ben Stein');
INSERT INTO authors (author_id, author) VALUES (265, 'Fidel Castro');
INSERT INTO authors (author_id, author) VALUES (266, 'Edward G. Bulwer-Lytton');
INSERT INTO authors (author_id, author) VALUES (267, 'John Irving');
INSERT INTO authors (author_id, author) VALUES (268, 'Margaret Atwood');
INSERT INTO authors (author_id, author) VALUES (269, 'Virgil');
INSERT INTO authors (author_id, author) VALUES (270, 'Lady Gaga');
INSERT INTO authors (author_id, author) VALUES (271, 'Baltasar Gracian');
INSERT INTO authors (author_id, author) VALUES (272, 'Marshall McLuhan');
INSERT INTO authors (author_id, author) VALUES (273, 'Charles Caleb Colton');
INSERT INTO authors (author_id, author) VALUES (274, 'Satyajit Ray');
INSERT INTO authors (author_id, author) VALUES (275, 'Lois Wyse');
INSERT INTO authors (author_id, author) VALUES (276, 'Dennis Prager');
INSERT INTO authors (author_id, author) VALUES (277, 'Desiderius Erasmus');
INSERT INTO authors (author_id, author) VALUES (278, 'E. B. White');
INSERT INTO authors (author_id, author) VALUES (279, 'Christopher Hitchens');
INSERT INTO authors (author_id, author) VALUES (280, 'Dave Barry');
INSERT INTO authors (author_id, author) VALUES (281, 'Martha Gellhorn');
INSERT INTO authors (author_id, author) VALUES (282, 'John Donne');
INSERT INTO authors (author_id, author) VALUES (283, 'Jonathan Swift');
INSERT INTO authors (author_id, author) VALUES (284, 'Paul Cezanne');
INSERT INTO authors (author_id, author) VALUES (285, 'Rita Rudner');
INSERT INTO authors (author_id, author) VALUES (286, 'Isabel Allende');
INSERT INTO authors (author_id, author) VALUES (287, 'Jean-Jacques Rousseau');
INSERT INTO authors (author_id, author) VALUES (288, 'Richard M. Nixon');
INSERT INTO authors (author_id, author) VALUES (289, 'David Bowie');
INSERT INTO authors (author_id, author) VALUES (290, 'David Herbert Lawrence');
INSERT INTO authors (author_id, author) VALUES (291, 'Doug Coupland');
INSERT INTO authors (author_id, author) VALUES (292, 'Sidonie Gabrielle Colette');
INSERT INTO authors (author_id, author) VALUES (293, 'Theodor Adorno');
INSERT INTO authors (author_id, author) VALUES (294, 'King Abdullah II');
INSERT INTO authors (author_id, author) VALUES (295, 'Liz Carpenter');
INSERT INTO authors (author_id, author) VALUES (296, 'Randall Jarrell');
INSERT INTO authors (author_id, author) VALUES (297, 'Gustave Flaubert');
INSERT INTO authors (author_id, author) VALUES (298, 'Vivien Leigh');
INSERT INTO authors (author_id, author) VALUES (299, 'Paul Klee');
INSERT INTO authors (author_id, author) VALUES (300, 'Jennifer Aniston');
INSERT INTO authors (author_id, author) VALUES (301, 'Shahrukh Khan');
INSERT INTO authors (author_id, author) VALUES (302, 'Jerry Saltz');
INSERT INTO authors (author_id, author) VALUES (303, 'Jimmy Buffett');
INSERT INTO authors (author_id, author) VALUES (304, 'Aeschylus');
INSERT INTO authors (author_id, author) VALUES (305, 'Emma Thompson');
INSERT INTO authors (author_id, author) VALUES (306, 'Lionel Blue');
INSERT INTO authors (author_id, author) VALUES (307, 'Paul Ryan');
INSERT INTO authors (author_id, author) VALUES (308, 'Amanda Seyfried');
INSERT INTO authors (author_id, author) VALUES (309, 'Michael Caine');
INSERT INTO authors (author_id, author) VALUES (310, 'David Brinkley');
INSERT INTO authors (author_id, author) VALUES (311, 'Percy Bysshe Shelley');
INSERT INTO authors (author_id, author) VALUES (312, 'Henry James');
INSERT INTO authors (author_id, author) VALUES (313, 'Salma Hayek');
INSERT INTO authors (author_id, author) VALUES (314, 'Nicolas Chamfort');
INSERT INTO authors (author_id, author) VALUES (315, 'Heidi Klum');
INSERT INTO authors (author_id, author) VALUES (316, 'Annie Dillard');
INSERT INTO authors (author_id, author) VALUES (317, 'Robert Byrne');
INSERT INTO authors (author_id, author) VALUES (318, 'Hedy Lamarr');
INSERT INTO authors (author_id, author) VALUES (319, 'Georg C. Lichtenberg');
INSERT INTO authors (author_id, author) VALUES (320, 'Mia Hamm');
INSERT INTO authors (author_id, author) VALUES (321, 'Oliver Herford');
INSERT INTO authors (author_id, author) VALUES (322, 'Friedrich Schiller');
INSERT INTO authors (author_id, author) VALUES (323, 'Jessica Savitch');
INSERT INTO authors (author_id, author) VALUES (324, 'Jackson Pollock');
INSERT INTO authors (author_id, author) VALUES (325, 'Jeff Bridges');
INSERT INTO authors (author_id, author) VALUES (326, 'W. H. Auden');
INSERT INTO authors (author_id, author) VALUES (327, 'Tom Felton');
INSERT INTO authors (author_id, author) VALUES (328, 'Peter Ustinov');
INSERT INTO authors (author_id, author) VALUES (329, 'Emeril Lagasse');
INSERT INTO authors (author_id, author) VALUES (330, 'Robertson Davies');
INSERT INTO authors (author_id, author) VALUES (331, 'Leon Trotsky');
INSERT INTO authors (author_id, author) VALUES (332, 'John Mayer');
INSERT INTO authors (author_id, author) VALUES (333, 'Martin Scorsese');
INSERT INTO authors (author_id, author) VALUES (334, 'Jawaharlal Nehru');
INSERT INTO authors (author_id, author) VALUES (335, 'Cate Blanchett');
INSERT INTO authors (author_id, author) VALUES (336, 'Hugh Jackman');
INSERT INTO authors (author_id, author) VALUES (337, 'Lindsay Lohan');
INSERT INTO authors (author_id, author) VALUES (338, 'Julie Walters');
INSERT INTO authors (author_id, author) VALUES (339, 'Tiger Woods');
INSERT INTO authors (author_id, author) VALUES (340, 'Denis Diderot');
INSERT INTO authors (author_id, author) VALUES (341, 'Adlai E. Stevenson');
INSERT INTO authors (author_id, author) VALUES (342, 'Tori Amos');
INSERT INTO authors (author_id, author) VALUES (343, 'Keanu Reeves');
INSERT INTO authors (author_id, author) VALUES (344, 'Arsene Wenger');
INSERT INTO authors (author_id, author) VALUES (345, 'David Hockney');
INSERT INTO authors (author_id, author) VALUES (346, 'Mario Andretti');
INSERT INTO authors (author_id, author) VALUES (347, 'Vivienne Westwood');
INSERT INTO authors (author_id, author) VALUES (348, 'Edward Weston');
INSERT INTO authors (author_id, author) VALUES (349, 'Karl Lagerfeld');
INSERT INTO authors (author_id, author) VALUES (350, 'Janice Dickinson');
INSERT INTO authors (author_id, author) VALUES (351, 'Sydney J. Harris');
INSERT INTO authors (author_id, author) VALUES (352, 'Pat Robertson');
INSERT INTO authors (author_id, author) VALUES (353, 'Karl Wilhelm Friedrich Schlegel');
INSERT INTO authors (author_id, author) VALUES (354, 'Bennett Cerf');
INSERT INTO authors (author_id, author) VALUES (355, 'Havelock Ellis');
INSERT INTO authors (author_id, author) VALUES (356, 'Helen Rowland');
INSERT INTO authors (author_id, author) VALUES (357, 'Amy Winehouse');
INSERT INTO authors (author_id, author) VALUES (358, 'Jean de la Bruyere');
INSERT INTO authors (author_id, author) VALUES (359, 'John Henry Newman');
INSERT INTO authors (author_id, author) VALUES (360, 'Edith Wharton');
INSERT INTO authors (author_id, author) VALUES (361, 'Fred Allen');
INSERT INTO authors (author_id, author) VALUES (362, 'Daniel Day-Lewis');
INSERT INTO authors (author_id, author) VALUES (363, 'Willie Nelson');
INSERT INTO authors (author_id, author) VALUES (364, 'Elizabeth Cady Stanton');
INSERT INTO authors (author_id, author) VALUES (365, 'Henry Louis Gates');
INSERT INTO authors (author_id, author) VALUES (366, 'Jenny McCarthy');
INSERT INTO authors (author_id, author) VALUES (367, 'Charles Kuralt');
INSERT INTO authors (author_id, author) VALUES (368, 'A. C. Benson');
INSERT INTO authors (author_id, author) VALUES (369, 'Sienna Miller');
INSERT INTO authors (author_id, author) VALUES (370, 'Simon Mainwaring');
INSERT INTO authors (author_id, author) VALUES (371, 'Novalis');
INSERT INTO authors (author_id, author) VALUES (372, 'Hannah Arendt');
INSERT INTO authors (author_id, author) VALUES (373, 'Liam Neeson');
INSERT INTO authors (author_id, author) VALUES (374, 'Florence King');
INSERT INTO authors (author_id, author) VALUES (375, 'Kareem Abdul-Jabbar');
INSERT INTO authors (author_id, author) VALUES (376, 'Noam Chomsky');
INSERT INTO authors (author_id, author) VALUES (377, 'George MacDonald');
INSERT INTO authors (author_id, author) VALUES (378, 'Wayne Gretzky');
INSERT INTO authors (author_id, author) VALUES (379, 'Mindy Kaling');
INSERT INTO authors (author_id, author) VALUES (380, 'Francis Ford Coppola');
INSERT INTO authors (author_id, author) VALUES (381, 'Kristen Stewart');
INSERT INTO authors (author_id, author) VALUES (382, 'Horace Walpole');
INSERT INTO authors (author_id, author) VALUES (383, 'Earl Warren');
INSERT INTO authors (author_id, author) VALUES (384, 'David Duchovny');
INSERT INTO authors (author_id, author) VALUES (385, 'Ang Lee');
INSERT INTO authors (author_id, author) VALUES (386, 'Ralph Nader');
INSERT INTO authors (author_id, author) VALUES (387, 'Li Ka Shing');
INSERT INTO authors (author_id, author) VALUES (388, 'Graham Greene');
INSERT INTO authors (author_id, author) VALUES (389, 'Johan Huizinga');
INSERT INTO authors (author_id, author) VALUES (390, 'Sandra Bullock');
INSERT INTO authors (author_id, author) VALUES (391, 'Joan Jett');
INSERT INTO authors (author_id, author) VALUES (392, 'Jack Nicholson');
INSERT INTO authors (author_id, author) VALUES (393, 'Arthur C. Clarke');
INSERT INTO authors (author_id, author) VALUES (394, 'David Ogilvy');
INSERT INTO authors (author_id, author) VALUES (395, 'Morgan Freeman');
INSERT INTO authors (author_id, author) VALUES (396, 'Francesca Annis');
INSERT INTO authors (author_id, author) VALUES (397, 'Annie Lennox');
INSERT INTO authors (author_id, author) VALUES (398, 'Julia Roberts');
INSERT INTO authors (author_id, author) VALUES (399, 'Birch Bayh');
INSERT INTO authors (author_id, author) VALUES (400, 'Thomas Hardy');
INSERT INTO authors (author_id, author) VALUES (401, 'Shirley MacLaine');
INSERT INTO authors (author_id, author) VALUES (402, 'Maria Sharapova');
INSERT INTO authors (author_id, author) VALUES (403, 'Phoebe Cary');
INSERT INTO authors (author_id, author) VALUES (404, 'Garrison Keillor');
INSERT INTO authors (author_id, author) VALUES (405, 'James Wolcott');
INSERT INTO authors (author_id, author) VALUES (406, 'Plautus');
INSERT INTO authors (author_id, author) VALUES (407, 'William Ralph Inge');
INSERT INTO authors (author_id, author) VALUES (408, 'Herman Melville');
INSERT INTO authors (author_id, author) VALUES (409, 'Elizabeth Gilbert');
INSERT INTO authors (author_id, author) VALUES (410, 'Carol Burnett');
INSERT INTO authors (author_id, author) VALUES (411, 'Queen Latifah');
INSERT INTO authors (author_id, author) VALUES (412, 'Nicole Kidman');
INSERT INTO authors (author_id, author) VALUES (413, 'Jock Sturges');
INSERT INTO authors (author_id, author) VALUES (414, 'Helena Bonham Carter');
INSERT INTO authors (author_id, author) VALUES (415, 'Margaret Walker');
INSERT INTO authors (author_id, author) VALUES (416, 'Shimon Peres');
INSERT INTO authors (author_id, author) VALUES (417, 'Colin Firth');
INSERT INTO authors (author_id, author) VALUES (418, 'Mia Wasikowska');
INSERT INTO authors (author_id, author) VALUES (419, 'Pete Townshend');
INSERT INTO authors (author_id, author) VALUES (420, 'Michael Phelps');
INSERT INTO authors (author_id, author) VALUES (421, 'Oliver Wendell Holmes, Jr.');
INSERT INTO authors (author_id, author) VALUES (422, 'Russell Means');
INSERT INTO authors (author_id, author) VALUES (423, 'Hesiod');
INSERT INTO authors (author_id, author) VALUES (424, 'Benjamin Spock');
INSERT INTO authors (author_id, author) VALUES (425, 'Douglas Horton');
INSERT INTO authors (author_id, author) VALUES (426, 'Betty White');
INSERT INTO authors (author_id, author) VALUES (427, 'Rowan Atkinson');
INSERT INTO authors (author_id, author) VALUES (428, 'Michael Bloomberg');
INSERT INTO authors (author_id, author) VALUES (429, 'Mikhail Baryshnikov');
INSERT INTO authors (author_id, author) VALUES (430, 'Danica McKellar');
INSERT INTO authors (author_id, author) VALUES (431, 'Christina Ricci');
INSERT INTO authors (author_id, author) VALUES (432, 'Tom Hanks');
INSERT INTO authors (author_id, author) VALUES (433, 'Ani DiFranco');
INSERT INTO authors (author_id, author) VALUES (434, 'Ron Fournier');
INSERT INTO authors (author_id, author) VALUES (435, 'Diablo Cody');
INSERT INTO authors (author_id, author) VALUES (436, 'Thomas Browne');
INSERT INTO authors (author_id, author) VALUES (437, 'Alan Alda');
INSERT INTO authors (author_id, author) VALUES (438, 'Marian Wright Edelman');
INSERT INTO authors (author_id, author) VALUES (439, 'Lisa Leslie');
INSERT INTO authors (author_id, author) VALUES (440, 'Elizabeth Wurtzel');
INSERT INTO authors (author_id, author) VALUES (441, 'John Polkinghorne');
INSERT INTO authors (author_id, author) VALUES (442, 'William J. Clinton');
INSERT INTO authors (author_id, author) VALUES (443, 'Larry Hagman');
INSERT INTO authors (author_id, author) VALUES (444, 'Rod Stewart');
INSERT INTO authors (author_id, author) VALUES (445, 'David Bailey');
INSERT INTO authors (author_id, author) VALUES (446, 'Jessica Lange');
INSERT INTO authors (author_id, author) VALUES (447, 'Charlotte Bronte');
INSERT INTO authors (author_id, author) VALUES (448, 'Flannery O\'Connor');
INSERT INTO authors (author_id, author) VALUES (449, 'Dee Dee Myers');
INSERT INTO authors (author_id, author) VALUES (450, 'Brandon Boyd');
INSERT INTO authors (author_id, author) VALUES (451, 'Alexander McQueen');
INSERT INTO authors (author_id, author) VALUES (452, 'Jason Kidd');
INSERT INTO authors (author_id, author) VALUES (453, 'Thomas Frank');
INSERT INTO authors (author_id, author) VALUES (454, 'Mary Wollstonecraft');
INSERT INTO authors (author_id, author) VALUES (455, 'Brian Clough');
INSERT INTO authors (author_id, author) VALUES (456, 'Willa Cather');
INSERT INTO authors (author_id, author) VALUES (457, 'Jewel');
INSERT INTO authors (author_id, author) VALUES (458, 'George Clooney');
INSERT INTO authors (author_id, author) VALUES (459, 'Meryl Streep');
INSERT INTO authors (author_id, author) VALUES (460, 'Evel Knievel');
INSERT INTO authors (author_id, author) VALUES (461, 'Joni Mitchell');
INSERT INTO authors (author_id, author) VALUES (462, 'Cher');
INSERT INTO authors (author_id, author) VALUES (463, 'Dixie Lee Ray');
INSERT INTO authors (author_id, author) VALUES (464, 'Bruce Barton');
INSERT INTO authors (author_id, author) VALUES (465, 'Daniel Goleman');
INSERT INTO authors (author_id, author) VALUES (466, 'Vin Diesel');
INSERT INTO authors (author_id, author) VALUES (467, 'Jackie Joyner-Kersee');
INSERT INTO authors (author_id, author) VALUES (468, 'Navjot Singh Sidhu');
INSERT INTO authors (author_id, author) VALUES (469, 'Kim Cattrall');
INSERT INTO authors (author_id, author) VALUES (470, 'Arthur Miller');
INSERT INTO authors (author_id, author) VALUES (471, 'Lena Dunham');
INSERT INTO authors (author_id, author) VALUES (472, 'Malcolm Muggeridge');
INSERT INTO authors (author_id, author) VALUES (473, 'John Cusack');
INSERT INTO authors (author_id, author) VALUES (474, 'Clive Owen');
INSERT INTO authors (author_id, author) VALUES (475, 'Michelle Malkin');
INSERT INTO authors (author_id, author) VALUES (476, 'Martha Beck');
INSERT INTO authors (author_id, author) VALUES (477, 'Spike Lee');
INSERT INTO authors (author_id, author) VALUES (478, 'Jack White');
INSERT INTO authors (author_id, author) VALUES (479, 'Magic Johnson');
INSERT INTO authors (author_id, author) VALUES (480, 'Daniel Craig');
INSERT INTO authors (author_id, author) VALUES (481, 'Jon Bon Jovi');
INSERT INTO authors (author_id, author) VALUES (482, 'Christopher Lasch');
INSERT INTO authors (author_id, author) VALUES (483, 'Michael Rapaport');
INSERT INTO authors (author_id, author) VALUES (484, 'Amanda Peet');
INSERT INTO authors (author_id, author) VALUES (485, 'David Wilkerson');
INSERT INTO authors (author_id, author) VALUES (486, 'Vaclav Havel');
INSERT INTO authors (author_id, author) VALUES (487, 'Patti Smith');
INSERT INTO authors (author_id, author) VALUES (488, 'Denzel Washington');
INSERT INTO authors (author_id, author) VALUES (489, 'David Mamet');
INSERT INTO authors (author_id, author) VALUES (490, 'Alvin Toffler');
INSERT INTO authors (author_id, author) VALUES (491, 'Aung San Suu Kyi');
INSERT INTO authors (author_id, author) VALUES (492, 'James Buchan');
INSERT INTO authors (author_id, author) VALUES (493, 'Chris Brown');
INSERT INTO authors (author_id, author) VALUES (494, 'John Dryden');
INSERT INTO authors (author_id, author) VALUES (495, 'Robert Browning');
INSERT INTO authors (author_id, author) VALUES (496, 'Rita Mae Brown');
INSERT INTO authors (author_id, author) VALUES (497, 'Gary Oldman');
INSERT INTO authors (author_id, author) VALUES (498, 'James Hillman');
INSERT INTO authors (author_id, author) VALUES (499, 'Edmond de Goncourt');
INSERT INTO authors (author_id, author) VALUES (500, 'Christopher Walken');
INSERT INTO authors (author_id, author) VALUES (501, 'Anna Kendrick');
INSERT INTO authors (author_id, author) VALUES (502, 'Bryan Adams');
INSERT INTO authors (author_id, author) VALUES (503, 'Jason Mraz');
INSERT INTO authors (author_id, author) VALUES (504, 'Ralph Lauren');
INSERT INTO authors (author_id, author) VALUES (505, 'John Jay Chapman');
INSERT INTO authors (author_id, author) VALUES (506, 'Jim Bishop');
INSERT INTO authors (author_id, author) VALUES (507, 'Gary L. Francione');
INSERT INTO authors (author_id, author) VALUES (508, 'Lillie Langtry');
INSERT INTO authors (author_id, author) VALUES (509, 'Giorgio Armani');
INSERT INTO authors (author_id, author) VALUES (510, 'Joyce Maynard');
INSERT INTO authors (author_id, author) VALUES (511, 'Carrie Underwood');
INSERT INTO authors (author_id, author) VALUES (512, 'Ellie Goulding');
INSERT INTO authors (author_id, author) VALUES (513, 'Julia Stiles');
INSERT INTO authors (author_id, author) VALUES (514, 'Bruce Springsteen');
INSERT INTO authors (author_id, author) VALUES (515, 'Robert. L. Ehrlich');
INSERT INTO authors (author_id, author) VALUES (516, 'Harlan Coben');
INSERT INTO authors (author_id, author) VALUES (517, 'Trey Anastasio');
INSERT INTO authors (author_id, author) VALUES (518, 'Lawrence Clark Powell');
INSERT INTO authors (author_id, author) VALUES (519, 'Jonathan Sacks');
INSERT INTO authors (author_id, author) VALUES (520, 'Thomas Szasz');
INSERT INTO authors (author_id, author) VALUES (521, 'Edward Koch');
INSERT INTO authors (author_id, author) VALUES (522, 'J. J. Abrams');
INSERT INTO authors (author_id, author) VALUES (523, 'Harvey Weinstein');
INSERT INTO authors (author_id, author) VALUES (524, 'Anne Burrell');
INSERT INTO authors (author_id, author) VALUES (525, 'Iain Duncan Smith');
INSERT INTO authors (author_id, author) VALUES (526, 'Richard Attenborough');
INSERT INTO authors (author_id, author) VALUES (527, 'Diane Kruger');
INSERT INTO authors (author_id, author) VALUES (528, 'Eddie Van Halen');
INSERT INTO authors (author_id, author) VALUES (529, 'Nicolas Cage');
INSERT INTO authors (author_id, author) VALUES (530, 'Cameron Diaz');
INSERT INTO authors (author_id, author) VALUES (531, 'Isak Dinesen');
INSERT INTO authors (author_id, author) VALUES (532, 'Haile Gebrselassie');
INSERT INTO authors (author_id, author) VALUES (533, 'Tom Colicchio');
INSERT INTO authors (author_id, author) VALUES (534, 'Maya Lin');
INSERT INTO authors (author_id, author) VALUES (535, 'Adam Clayton');
INSERT INTO authors (author_id, author) VALUES (536, 'Adam Carolla');
INSERT INTO authors (author_id, author) VALUES (537, 'Miuccia Prada');
INSERT INTO authors (author_id, author) VALUES (538, 'Julie Burchill');
INSERT INTO authors (author_id, author) VALUES (539, 'Clarence Day');
INSERT INTO authors (author_id, author) VALUES (540, 'Bernard Baruch');
INSERT INTO authors (author_id, author) VALUES (541, 'Liz Phair');
INSERT INTO authors (author_id, author) VALUES (542, 'Charlie Kaufman');
INSERT INTO authors (author_id, author) VALUES (543, 'Dorothy Thompson');
INSERT INTO authors (author_id, author) VALUES (544, 'Kiefer Sutherland');
INSERT INTO authors (author_id, author) VALUES (545, 'Edward Norton');
INSERT INTO authors (author_id, author) VALUES (546, 'Greer Garson');
INSERT INTO authors (author_id, author) VALUES (547, 'Rosalyn S. Yalow');
INSERT INTO authors (author_id, author) VALUES (548, 'Giacomo Casanova');
INSERT INTO authors (author_id, author) VALUES (549, 'Monica Edwards');
INSERT INTO authors (author_id, author) VALUES (550, 'Carlos Ghosn');
INSERT INTO authors (author_id, author) VALUES (551, 'Bryan Cranston');
INSERT INTO authors (author_id, author) VALUES (552, 'George Saunders');
INSERT INTO authors (author_id, author) VALUES (553, 'Rem Koolhaas');
INSERT INTO authors (author_id, author) VALUES (554, 'Zoe Saldana');
INSERT INTO authors (author_id, author) VALUES (555, 'Al Pacino');
INSERT INTO authors (author_id, author) VALUES (556, 'Jane Fonda');
INSERT INTO authors (author_id, author) VALUES (557, 'Saul Williams');
INSERT INTO authors (author_id, author) VALUES (558, 'Elijah Wood');
INSERT INTO authors (author_id, author) VALUES (559, 'Fiona Apple');
INSERT INTO authors (author_id, author) VALUES (560, 'Jeffrey Kluger');
INSERT INTO authors (author_id, author) VALUES (561, 'Maggie Smith');
INSERT INTO authors (author_id, author) VALUES (562, 'Gabrielle Union');
INSERT INTO authors (author_id, author) VALUES (563, 'Ezra Pound');
INSERT INTO authors (author_id, author) VALUES (564, 'Vera Farmiga');
INSERT INTO authors (author_id, author) VALUES (565, 'Eddie Vedder');
INSERT INTO authors (author_id, author) VALUES (566, 'Janet Jackson');
INSERT INTO authors (author_id, author) VALUES (567, 'Kathleen Turner');
INSERT INTO authors (author_id, author) VALUES (568, 'Rupert Everett');
INSERT INTO authors (author_id, author) VALUES (569, 'Roberto Cavalli');
INSERT INTO authors (author_id, author) VALUES (570, 'Theodore Bikel');
INSERT INTO authors (author_id, author) VALUES (571, 'George Michael');
INSERT INTO authors (author_id, author) VALUES (572, 'Blanche Lincoln');
INSERT INTO authors (author_id, author) VALUES (573, 'Puff Daddy');
INSERT INTO authors (author_id, author) VALUES (574, 'Irvin S. Cobb');
INSERT INTO authors (author_id, author) VALUES (575, 'A. N. Wilson');
INSERT INTO authors (author_id, author) VALUES (576, 'Camille Pissarro');
INSERT INTO authors (author_id, author) VALUES (577, 'Garrett Hedlund');
INSERT INTO authors (author_id, author) VALUES (578, 'Katherine Jenkins');
INSERT INTO authors (author_id, author) VALUES (579, 'Lascelles Abercrombie');
INSERT INTO authors (author_id, author) VALUES (580, 'John le Carre');
INSERT INTO authors (author_id, author) VALUES (581, 'Gary Bauer');
INSERT INTO authors (author_id, author) VALUES (582, 'Jon Hamm');
INSERT INTO authors (author_id, author) VALUES (583, 'Maggie Kuhn');
INSERT INTO authors (author_id, author) VALUES (584, 'Len Wein');
INSERT INTO authors (author_id, author) VALUES (585, 'Thomas Moore');
INSERT INTO authors (author_id, author) VALUES (586, 'James Dyson');
INSERT INTO authors (author_id, author) VALUES (587, 'J. G. Ballard');
INSERT INTO authors (author_id, author) VALUES (588, 'Kyle Chandler');
INSERT INTO authors (author_id, author) VALUES (589, 'Naguib Mahfouz');
INSERT INTO authors (author_id, author) VALUES (590, 'Cat Cora');
INSERT INTO authors (author_id, author) VALUES (591, 'Terry Eagleton');
INSERT INTO authors (author_id, author) VALUES (592, 'Geoffrey Chaucer');
INSERT INTO authors (author_id, author) VALUES (593, 'Henry A. Wallace');
INSERT INTO authors (author_id, author) VALUES (594, 'Seann William Scott');
INSERT INTO authors (author_id, author) VALUES (595, 'Judy Biggert');
INSERT INTO authors (author_id, author) VALUES (596, 'Shawn Johnson');
INSERT INTO authors (author_id, author) VALUES (597, 'Robert Morgan');
INSERT INTO authors (author_id, author) VALUES (598, 'Walter Savage Landor');
INSERT INTO authors (author_id, author) VALUES (599, 'Cesar Romero');
INSERT INTO authors (author_id, author) VALUES (600, 'Lawrence Durrell');
INSERT INTO authors (author_id, author) VALUES (601, 'Florida Scott-Maxwell');
INSERT INTO authors (author_id, author) VALUES (602, 'Joshua Foer');
INSERT INTO authors (author_id, author) VALUES (603, 'Debra Winger');
INSERT INTO authors (author_id, author) VALUES (604, 'Florence Welch');
INSERT INTO authors (author_id, author) VALUES (605, 'Jane Pauley');
INSERT INTO authors (author_id, author) VALUES (606, 'Joshua Lederberg');
INSERT INTO authors (author_id, author) VALUES (607, 'Leighton Meester');
INSERT INTO authors (author_id, author) VALUES (608, 'Estelle Getty');
INSERT INTO authors (author_id, author) VALUES (609, 'Bjork');
INSERT INTO authors (author_id, author) VALUES (610, 'Victoria Abril');
INSERT INTO authors (author_id, author) VALUES (611, 'Craig Ferguson');
INSERT INTO authors (author_id, author) VALUES (612, 'Leona Lewis');
INSERT INTO authors (author_id, author) VALUES (613, 'George Sand');
INSERT INTO authors (author_id, author) VALUES (614, 'Alison Sweeney');
INSERT INTO authors (author_id, author) VALUES (615, 'Holly Madison');
INSERT INTO authors (author_id, author) VALUES (616, 'Gary Vaynerchuk');
INSERT INTO authors (author_id, author) VALUES (617, 'Clive Bell');
INSERT INTO authors (author_id, author) VALUES (618, 'Nikki Giovanni');
INSERT INTO authors (author_id, author) VALUES (619, 'Jamie Lee Curtis');
INSERT INTO authors (author_id, author) VALUES (620, 'Bede Griffiths');
INSERT INTO authors (author_id, author) VALUES (621, 'David Mitchell');
INSERT INTO authors (author_id, author) VALUES (622, 'Dean Kamen');
INSERT INTO authors (author_id, author) VALUES (623, 'Tim McGraw');
INSERT INTO authors (author_id, author) VALUES (624, 'John Mellencamp');
INSERT INTO authors (author_id, author) VALUES (625, 'Jarvis Cocker');
INSERT INTO authors (author_id, author) VALUES (626, 'Mira Nair');
INSERT INTO authors (author_id, author) VALUES (627, 'George Foreman');
INSERT INTO authors (author_id, author) VALUES (628, 'Roger Zelazny');
INSERT INTO authors (author_id, author) VALUES (629, 'Miroslav Vitous');
INSERT INTO authors (author_id, author) VALUES (630, 'James Truslow Adams');
INSERT INTO authors (author_id, author) VALUES (631, 'Jamie Foxx');
INSERT INTO authors (author_id, author) VALUES (632, 'Patti Stanger');
INSERT INTO authors (author_id, author) VALUES (633, 'Barbara Corcoran');
INSERT INTO authors (author_id, author) VALUES (634, 'Tom Peters');
INSERT INTO authors (author_id, author) VALUES (635, 'Raymond Chandler');
INSERT INTO authors (author_id, author) VALUES (636, 'Michael Stipe');
INSERT INTO authors (author_id, author) VALUES (637, 'Maria Callas');
INSERT INTO authors (author_id, author) VALUES (638, 'Frederick Jackson Turner');
INSERT INTO authors (author_id, author) VALUES (639, 'Emily Blunt');
INSERT INTO authors (author_id, author) VALUES (640, 'Roger Moore');
INSERT INTO authors (author_id, author) VALUES (641, 'Angela Carter');
INSERT INTO authors (author_id, author) VALUES (642, 'Juliette Binoche');
INSERT INTO authors (author_id, author) VALUES (643, 'S. I. Hayakawa');
INSERT INTO authors (author_id, author) VALUES (644, 'Bobby Darin');
INSERT INTO authors (author_id, author) VALUES (645, 'Danica Patrick');
INSERT INTO authors (author_id, author) VALUES (646, 'Wim Wenders');
INSERT INTO authors (author_id, author) VALUES (647, 'Bill Bryson');
INSERT INTO authors (author_id, author) VALUES (648, 'Philip Larkin');
INSERT INTO authors (author_id, author) VALUES (649, 'Lea Michele');
INSERT INTO authors (author_id, author) VALUES (650, 'Heather Mills');
INSERT INTO authors (author_id, author) VALUES (651, 'Demi Moore');
INSERT INTO authors (author_id, author) VALUES (652, 'Michael Symon');
INSERT INTO authors (author_id, author) VALUES (653, 'Nadia Comaneci');
INSERT INTO authors (author_id, author) VALUES (654, 'Sri Aurobindo');
INSERT INTO authors (author_id, author) VALUES (655, 'Lucinda Williams');
INSERT INTO authors (author_id, author) VALUES (656, 'Jon Fishman');
INSERT INTO authors (author_id, author) VALUES (657, 'Diane Keaton');
INSERT INTO authors (author_id, author) VALUES (658, 'Alexander McCall Smith');
INSERT INTO authors (author_id, author) VALUES (659, 'Helen Reddy');
INSERT INTO authors (author_id, author) VALUES (660, 'Amber Heard');
INSERT INTO authors (author_id, author) VALUES (661, 'Jodi Picoult');
INSERT INTO authors (author_id, author) VALUES (662, 'Chris O\'Dowd');
INSERT INTO authors (author_id, author) VALUES (663, 'Arthur Smith');
INSERT INTO authors (author_id, author) VALUES (664, 'Rachel Bilson');
INSERT INTO authors (author_id, author) VALUES (665, 'Bernie Sanders');
INSERT INTO authors (author_id, author) VALUES (666, 'Bonnie Raitt');
INSERT INTO authors (author_id, author) VALUES (667, 'Bear Grylls');
INSERT INTO authors (author_id, author) VALUES (668, 'Eric Liu');
INSERT INTO authors (author_id, author) VALUES (669, 'Alfred Nobel');
INSERT INTO authors (author_id, author) VALUES (670, 'Marlee Matlin');
INSERT INTO authors (author_id, author) VALUES (671, 'Matthew Simpson');
INSERT INTO authors (author_id, author) VALUES (672, 'Corey Feldman');
INSERT INTO authors (author_id, author) VALUES (673, 'Bob Barker');
INSERT INTO authors (author_id, author) VALUES (674, 'Walker Percy');
INSERT INTO authors (author_id, author) VALUES (675, 'Josh Radnor');
INSERT INTO authors (author_id, author) VALUES (676, 'Tommy Hilfiger');
INSERT INTO authors (author_id, author) VALUES (677, 'Julius Erving');
INSERT INTO authors (author_id, author) VALUES (678, 'Ron Perlman');
INSERT INTO authors (author_id, author) VALUES (679, 'Nicki Minaj');
INSERT INTO authors (author_id, author) VALUES (680, 'T. D. Jakes');
INSERT INTO authors (author_id, author) VALUES (681, 'Matthew Arnold');
INSERT INTO authors (author_id, author) VALUES (682, 'Luciano Pavarotti');
INSERT INTO authors (author_id, author) VALUES (683, 'E. Joseph Cossman');
INSERT INTO authors (author_id, author) VALUES (684, 'Andrew Weil');
INSERT INTO authors (author_id, author) VALUES (685, 'Barbara Mikulski');
INSERT INTO authors (author_id, author) VALUES (686, 'Madonna Ciccone');
INSERT INTO authors (author_id, author) VALUES (687, 'Jack Antonoff');
INSERT INTO authors (author_id, author) VALUES (688, 'Portia de Rossi');
INSERT INTO authors (author_id, author) VALUES (689, 'Tom Lehrer');
INSERT INTO authors (author_id, author) VALUES (690, 'Lev Grossman');
INSERT INTO authors (author_id, author) VALUES (691, 'Ed Koch');
INSERT INTO authors (author_id, author) VALUES (692, 'Eric Alterman');
INSERT INTO authors (author_id, author) VALUES (693, 'Diane Lane');
INSERT INTO authors (author_id, author) VALUES (694, 'Minnie Driver');
INSERT INTO authors (author_id, author) VALUES (695, 'Norman Douglas');
INSERT INTO authors (author_id, author) VALUES (696, 'Lee Trevino');
INSERT INTO authors (author_id, author) VALUES (697, 'Joan D. Vinge');
INSERT INTO authors (author_id, author) VALUES (698, 'Nancy Kerrigan');
INSERT INTO authors (author_id, author) VALUES (699, 'Junior Seau');
INSERT INTO authors (author_id, author) VALUES (700, 'Thom Yorke');
INSERT INTO authors (author_id, author) VALUES (701, 'Michael Haneke');
INSERT INTO authors (author_id, author) VALUES (702, 'Rita Dove');
INSERT INTO authors (author_id, author) VALUES (703, 'Paul Feig');
INSERT INTO authors (author_id, author) VALUES (704, 'Kellan Lutz');
INSERT INTO authors (author_id, author) VALUES (705, 'Jane Seymour');
INSERT INTO authors (author_id, author) VALUES (706, 'Roger Daltrey');
INSERT INTO authors (author_id, author) VALUES (707, 'Jean Claude Van Damme');
INSERT INTO authors (author_id, author) VALUES (708, 'Delta Goodrem');
INSERT INTO authors (author_id, author) VALUES (709, 'Andy Serkis');
INSERT INTO authors (author_id, author) VALUES (710, 'Gloria Swanson');
INSERT INTO authors (author_id, author) VALUES (711, 'Alexander Payne');
INSERT INTO authors (author_id, author) VALUES (712, 'Jeremy Rifkin');
INSERT INTO authors (author_id, author) VALUES (713, 'Jenson Button');
INSERT INTO authors (author_id, author) VALUES (714, 'Kristen Wiig');
INSERT INTO authors (author_id, author) VALUES (715, 'Patrick J. Kennedy');
INSERT INTO authors (author_id, author) VALUES (716, 'Samantha Morton');
INSERT INTO authors (author_id, author) VALUES (717, 'Anthony Horowitz');
INSERT INTO authors (author_id, author) VALUES (718, 'John Stamos');
INSERT INTO authors (author_id, author) VALUES (719, 'Francis Parker Yockey');
INSERT INTO authors (author_id, author) VALUES (720, 'Jack Kevorkian');
INSERT INTO authors (author_id, author) VALUES (721, 'Ben Barnes');
INSERT INTO authors (author_id, author) VALUES (722, 'Stevie Nicks');
INSERT INTO authors (author_id, author) VALUES (723, 'Dan Stevens');
INSERT INTO authors (author_id, author) VALUES (724, 'Ann-Margret');
INSERT INTO authors (author_id, author) VALUES (725, 'Carl Hiaasen');
INSERT INTO authors (author_id, author) VALUES (726, 'Vita Sackville-West');
INSERT INTO authors (author_id, author) VALUES (727, 'Mitch Daniels');
INSERT INTO authors (author_id, author) VALUES (728, 'John Legend');
INSERT INTO authors (author_id, author) VALUES (729, 'Ringo Starr');
INSERT INTO authors (author_id, author) VALUES (730, 'Lance Bass');
INSERT INTO authors (author_id, author) VALUES (731, 'Lydia M. Child');
INSERT INTO authors (author_id, author) VALUES (732, 'Idris Elba');
INSERT INTO authors (author_id, author) VALUES (733, 'James Ellroy');
INSERT INTO authors (author_id, author) VALUES (734, 'Bob Geldof');
INSERT INTO authors (author_id, author) VALUES (735, 'Rachel Roy');
INSERT INTO authors (author_id, author) VALUES (736, 'Felix Frankfurter');
INSERT INTO authors (author_id, author) VALUES (737, 'Thomas B. Macaulay');
INSERT INTO authors (author_id, author) VALUES (738, 'Jeremy Bentham');
INSERT INTO authors (author_id, author) VALUES (739, 'Rowan D. Williams');
INSERT INTO authors (author_id, author) VALUES (740, 'Thomas More');
INSERT INTO authors (author_id, author) VALUES (741, 'Donna Mills');
INSERT INTO authors (author_id, author) VALUES (742, 'Brigham Young');
INSERT INTO authors (author_id, author) VALUES (743, 'Anne Tyler');
INSERT INTO authors (author_id, author) VALUES (744, 'Steve Irwin');
INSERT INTO authors (author_id, author) VALUES (745, 'George Washington');
INSERT INTO authors (author_id, author) VALUES (746, 'Chanakya');
INSERT INTO authors (author_id, author) VALUES (747, 'Audrey Hepburn');
INSERT INTO authors (author_id, author) VALUES (748, 'Wayne Dyer');
INSERT INTO authors (author_id, author) VALUES (749, 'Maya Angelou');
INSERT INTO authors (author_id, author) VALUES (750, 'George Carlin');
INSERT INTO authors (author_id, author) VALUES (751, 'Paul Tillich');
INSERT INTO authors (author_id, author) VALUES (752, 'Martin Luther');
INSERT INTO authors (author_id, author) VALUES (753, 'Anne Hathaway');
INSERT INTO authors (author_id, author) VALUES (754, 'Charlie Chaplin');
INSERT INTO authors (author_id, author) VALUES (755, 'Blaise Pascal');
INSERT INTO authors (author_id, author) VALUES (756, 'Tennessee Williams');
INSERT INTO authors (author_id, author) VALUES (757, 'Jodie Foster');
INSERT INTO authors (author_id, author) VALUES (758, 'B. R. Ambedkar');
INSERT INTO authors (author_id, author) VALUES (759, 'Ellen Burstyn');
INSERT INTO authors (author_id, author) VALUES (760, 'Emily Carr');
INSERT INTO authors (author_id, author) VALUES (761, 'Yousuf Karsh');
INSERT INTO authors (author_id, author) VALUES (762, 'John Barrymore');
INSERT INTO authors (author_id, author) VALUES (763, 'Drew Barrymore');
INSERT INTO authors (author_id, author) VALUES (764, 'Dido Armstrong');
INSERT INTO authors (author_id, author) VALUES (765, 'Justin Timberlake');
INSERT INTO authors (author_id, author) VALUES (766, 'Nora Ephron');
INSERT INTO authors (author_id, author) VALUES (767, 'Joseph Conrad');
INSERT INTO authors (author_id, author) VALUES (768, 'Hermann Hesse');
INSERT INTO authors (author_id, author) VALUES (769, 'Tecumseh');
INSERT INTO authors (author_id, author) VALUES (770, 'Robert M. Pirsig');
INSERT INTO authors (author_id, author) VALUES (771, 'Guru Nanak');
INSERT INTO authors (author_id, author) VALUES (772, 'Greta Garbo');
INSERT INTO authors (author_id, author) VALUES (773, 'Martin Heidegger');
INSERT INTO authors (author_id, author) VALUES (774, 'Frida Kahlo');
INSERT INTO authors (author_id, author) VALUES (775, 'Gene Simmons');
INSERT INTO authors (author_id, author) VALUES (776, 'Charles Bukowski');
INSERT INTO authors (author_id, author) VALUES (777, 'Mortimer Adler');
INSERT INTO authors (author_id, author) VALUES (778, 'Boethius');
INSERT INTO authors (author_id, author) VALUES (779, 'Lily Tomlin');
INSERT INTO authors (author_id, author) VALUES (780, 'Octavio Paz');
INSERT INTO authors (author_id, author) VALUES (781, 'Charles Lindbergh');
INSERT INTO authors (author_id, author) VALUES (782, 'Arnold Rothstein');
INSERT INTO authors (author_id, author) VALUES (783, 'Yoko Ono');
INSERT INTO authors (author_id, author) VALUES (784, 'Elizabeth I');
INSERT INTO authors (author_id, author) VALUES (785, 'Maxwell Maltz');
INSERT INTO authors (author_id, author) VALUES (786, 'Roy Orbison');
INSERT INTO authors (author_id, author) VALUES (787, 'Robert Anton Wilson');
INSERT INTO authors (author_id, author) VALUES (788, 'Jim Bakker');
INSERT INTO authors (author_id, author) VALUES (789, 'Paul Tournier');
INSERT INTO authors (author_id, author) VALUES (790, 'Joseph Gordon-Levitt');
INSERT INTO authors (author_id, author) VALUES (791, 'Edward Young');
INSERT INTO authors (author_id, author) VALUES (792, 'Zsa Zsa Gabor');
INSERT INTO authors (author_id, author) VALUES (793, 'Jules Renard');
INSERT INTO authors (author_id, author) VALUES (794, 'Paula Abdul');
INSERT INTO authors (author_id, author) VALUES (795, 'Phil McGraw');
INSERT INTO authors (author_id, author) VALUES (796, 'Joel Edgerton');
INSERT INTO authors (author_id, author) VALUES (797, 'Conor Oberst');
INSERT INTO authors (author_id, author) VALUES (798, 'Eileen Caddy');
INSERT INTO authors (author_id, author) VALUES (799, 'Evelyn Waugh');
INSERT INTO authors (author_id, author) VALUES (800, 'Cathy Freeman');
INSERT INTO authors (author_id, author) VALUES (801, 'Paul Newman');
INSERT INTO authors (author_id, author) VALUES (802, 'Swami Vivekananda');
INSERT INTO authors (author_id, author) VALUES (803, 'Thomas Merton');
INSERT INTO authors (author_id, author) VALUES (804, 'Calvin Coolidge');
INSERT INTO authors (author_id, author) VALUES (805, 'Cyrano de Bergerac');
INSERT INTO authors (author_id, author) VALUES (806, 'Albert Pike');
INSERT INTO authors (author_id, author) VALUES (807, 'Robert A. Heinlein');
INSERT INTO authors (author_id, author) VALUES (808, 'Charles Stanley');
INSERT INTO authors (author_id, author) VALUES (809, 'Anne Frank');
INSERT INTO authors (author_id, author) VALUES (810, 'George Edward Moore');
INSERT INTO authors (author_id, author) VALUES (811, 'John Quincy Adams');
INSERT INTO authors (author_id, author) VALUES (812, 'E. O. Wilson');
INSERT INTO authors (author_id, author) VALUES (813, 'Dr. Seuss');
INSERT INTO authors (author_id, author) VALUES (814, 'Booker T. Washington');
INSERT INTO authors (author_id, author) VALUES (815, 'Alice Koller');
INSERT INTO authors (author_id, author) VALUES (816, 'Ayn Rand');
INSERT INTO authors (author_id, author) VALUES (817, 'Elbert Hubbard');
INSERT INTO authors (author_id, author) VALUES (818, 'Napoleon Hill');
INSERT INTO authors (author_id, author) VALUES (819, 'Ferdinand Marcos');
INSERT INTO authors (author_id, author) VALUES (820, 'Marcel Proust');
INSERT INTO authors (author_id, author) VALUES (821, 'Orison Swett Marden');
INSERT INTO authors (author_id, author) VALUES (822, 'Anthony Burgess');
INSERT INTO authors (author_id, author) VALUES (823, 'Demetri Martin');
INSERT INTO authors (author_id, author) VALUES (824, 'Patrick Henry');
INSERT INTO authors (author_id, author) VALUES (825, 'Mitt Romney');
INSERT INTO authors (author_id, author) VALUES (826, 'W. Clement Stone');
INSERT INTO authors (author_id, author) VALUES (827, 'Robert Plant');
INSERT INTO authors (author_id, author) VALUES (828, 'Terry Pratchett');
INSERT INTO authors (author_id, author) VALUES (829, 'Elizabeth Bowen');
INSERT INTO authors (author_id, author) VALUES (830, 'Charles Wesley');
INSERT INTO authors (author_id, author) VALUES (831, 'Anne Morrow Lindbergh');
INSERT INTO authors (author_id, author) VALUES (832, 'Pierre Teilhard de Chardin');
INSERT INTO authors (author_id, author) VALUES (833, 'Thornton Wilder');
INSERT INTO authors (author_id, author) VALUES (834, 'Deborah Tannen');
INSERT INTO authors (author_id, author) VALUES (835, 'Horace');
INSERT INTO authors (author_id, author) VALUES (836, 'Leo Tolstoy');
INSERT INTO authors (author_id, author) VALUES (837, 'Hubert H. Humphrey');
INSERT INTO authors (author_id, author) VALUES (838, 'Hillary Clinton');
INSERT INTO authors (author_id, author) VALUES (839, 'Carl Jung');
INSERT INTO authors (author_id, author) VALUES (840, 'Rainer Maria Rilke');
INSERT INTO authors (author_id, author) VALUES (841, 'John C. Maxwell');
INSERT INTO authors (author_id, author) VALUES (842, 'Henry A. Kissinger');
INSERT INTO authors (author_id, author) VALUES (843, 'Edward Abbey');
INSERT INTO authors (author_id, author) VALUES (844, 'Pericles');
INSERT INTO authors (author_id, author) VALUES (845, 'Stephen Hawking');
INSERT INTO authors (author_id, author) VALUES (846, 'Denis Waitley');
INSERT INTO authors (author_id, author) VALUES (847, 'Epictetus');
INSERT INTO authors (author_id, author) VALUES (848, 'Rudyard Kipling');
INSERT INTO authors (author_id, author) VALUES (849, 'William Alexander');
INSERT INTO authors (author_id, author) VALUES (850, 'Jim Carrey');
INSERT INTO authors (author_id, author) VALUES (851, 'Jane Austen');
INSERT INTO authors (author_id, author) VALUES (852, 'James Dean');
INSERT INTO authors (author_id, author) VALUES (853, 'Honore de Balzac');
INSERT INTO authors (author_id, author) VALUES (854, 'Oliver Goldsmith');
INSERT INTO authors (author_id, author) VALUES (855, 'W. E. B. Du Bois');
INSERT INTO authors (author_id, author) VALUES (856, 'James Russell Lowell');
INSERT INTO authors (author_id, author) VALUES (857, 'Elie Wiesel');
INSERT INTO authors (author_id, author) VALUES (858, 'James Madison');
INSERT INTO authors (author_id, author) VALUES (859, 'Deepak Chopra');
INSERT INTO authors (author_id, author) VALUES (860, 'Ingrid Bergman');
INSERT INTO authors (author_id, author) VALUES (861, 'Emo Philips');
INSERT INTO authors (author_id, author) VALUES (862, 'John Muir');
INSERT INTO authors (author_id, author) VALUES (863, 'Alfred Lord Tennyson');
INSERT INTO authors (author_id, author) VALUES (864, 'Rene Descartes');
INSERT INTO authors (author_id, author) VALUES (865, 'Thomas Fuller');
INSERT INTO authors (author_id, author) VALUES (866, 'Christian Lous Lange');
INSERT INTO authors (author_id, author) VALUES (867, 'Janis Joplin');
INSERT INTO authors (author_id, author) VALUES (868, 'Jesus Christ');
INSERT INTO authors (author_id, author) VALUES (869, 'Heraclitus');
INSERT INTO authors (author_id, author) VALUES (870, 'Lena Horne');
INSERT INTO authors (author_id, author) VALUES (871, 'Paramahansa Yogananda');
INSERT INTO authors (author_id, author) VALUES (872, 'David Walliams');
INSERT INTO authors (author_id, author) VALUES (873, 'Harry Connick, Jr.');
INSERT INTO authors (author_id, author) VALUES (874, 'Marie Antoinette');
INSERT INTO authors (author_id, author) VALUES (875, 'Richard Pryor');
INSERT INTO authors (author_id, author) VALUES (876, 'Sivananda');
INSERT INTO authors (author_id, author) VALUES (877, 'Billy Idol');
INSERT INTO authors (author_id, author) VALUES (878, 'Ellen G. White');
INSERT INTO authors (author_id, author) VALUES (879, 'Kin Hubbard');
INSERT INTO authors (author_id, author) VALUES (880, 'Peabo Bryson');
INSERT INTO authors (author_id, author) VALUES (881, 'Alexander Pope');
INSERT INTO authors (author_id, author) VALUES (882, 'Ludwig van Beethoven');
INSERT INTO authors (author_id, author) VALUES (883, 'Anton Chekhov');
INSERT INTO authors (author_id, author) VALUES (884, 'Menachem Mendel Schneerson');
INSERT INTO authors (author_id, author) VALUES (885, 'Wayne Coyne');
INSERT INTO authors (author_id, author) VALUES (886, 'Bertolt Brecht');
INSERT INTO authors (author_id, author) VALUES (887, 'R. Buckminster Fuller');
INSERT INTO authors (author_id, author) VALUES (888, 'St. Jerome');
INSERT INTO authors (author_id, author) VALUES (889, 'Susan Taylor');
INSERT INTO authors (author_id, author) VALUES (890, 'Steve Martin');
INSERT INTO authors (author_id, author) VALUES (891, 'Louis L\'Amour');
INSERT INTO authors (author_id, author) VALUES (892, 'Chief Joseph');
INSERT INTO authors (author_id, author) VALUES (893, 'Sandra Day O\'Connor');
INSERT INTO authors (author_id, author) VALUES (894, 'Joseph Smith, Jr.');
INSERT INTO authors (author_id, author) VALUES (895, 'John Locke');
INSERT INTO authors (author_id, author) VALUES (896, 'Leonard Peltier');
INSERT INTO authors (author_id, author) VALUES (897, 'Franz Kafka');
INSERT INTO authors (author_id, author) VALUES (898, 'Laurence Sterne');
INSERT INTO authors (author_id, author) VALUES (899, 'Billy Connolly');
INSERT INTO authors (author_id, author) VALUES (900, 'Max Muller');
INSERT INTO authors (author_id, author) VALUES (901, 'Tallulah Bankhead');
INSERT INTO authors (author_id, author) VALUES (902, 'Edwin Markham');
INSERT INTO authors (author_id, author) VALUES (903, 'Simone Weil');
INSERT INTO authors (author_id, author) VALUES (904, 'Philip Zimbardo');
INSERT INTO authors (author_id, author) VALUES (905, 'Joseph Joubert');
INSERT INTO authors (author_id, author) VALUES (906, 'Mao Zedong');
INSERT INTO authors (author_id, author) VALUES (907, 'Ovid');
INSERT INTO authors (author_id, author) VALUES (908, 'James A. Garfield');
INSERT INTO authors (author_id, author) VALUES (909, 'Halle Berry');
INSERT INTO authors (author_id, author) VALUES (910, 'Anthony de Mello');
INSERT INTO authors (author_id, author) VALUES (911, 'Chantal Kreviazuk');
INSERT INTO authors (author_id, author) VALUES (912, 'Paul McCartney');
INSERT INTO authors (author_id, author) VALUES (913, 'Paul Valery');
INSERT INTO authors (author_id, author) VALUES (914, 'Don Rickles');
INSERT INTO authors (author_id, author) VALUES (915, 'Mother Jones');
INSERT INTO authors (author_id, author) VALUES (916, 'Jason Schwartzman');
INSERT INTO authors (author_id, author) VALUES (917, 'Brendan Behan');
INSERT INTO authors (author_id, author) VALUES (918, 'Eliot Engel');
INSERT INTO authors (author_id, author) VALUES (919, 'Daniel Radcliffe');
INSERT INTO authors (author_id, author) VALUES (920, 'Henrik Ibsen');
INSERT INTO authors (author_id, author) VALUES (921, 'Keith Richards');
INSERT INTO authors (author_id, author) VALUES (922, 'P. G. Wodehouse');
INSERT INTO authors (author_id, author) VALUES (923, 'Johnny Carson');
INSERT INTO authors (author_id, author) VALUES (924, 'Novak Djokovic');
INSERT INTO authors (author_id, author) VALUES (925, 'David Hume');
INSERT INTO authors (author_id, author) VALUES (926, 'Alicia Keys');
INSERT INTO authors (author_id, author) VALUES (927, 'Elayne Boosler');
INSERT INTO authors (author_id, author) VALUES (928, 'Tori Spelling');
INSERT INTO authors (author_id, author) VALUES (929, 'Lisa Marie Presley');
INSERT INTO authors (author_id, author) VALUES (930, 'Joe Rogan');
INSERT INTO authors (author_id, author) VALUES (931, 'Dag Hammarskjold');
INSERT INTO authors (author_id, author) VALUES (932, 'Stuart Appleby');
INSERT INTO authors (author_id, author) VALUES (933, 'Laurence J. Peter');
INSERT INTO authors (author_id, author) VALUES (934, 'Jerome K. Jerome');
INSERT INTO authors (author_id, author) VALUES (935, 'Anne Lamott');
INSERT INTO authors (author_id, author) VALUES (936, 'Larry Wilcox');
INSERT INTO authors (author_id, author) VALUES (937, 'Louis D. Brandeis');
INSERT INTO authors (author_id, author) VALUES (938, 'Horace Mann');
INSERT INTO authors (author_id, author) VALUES (939, 'Igor Stravinsky');
INSERT INTO authors (author_id, author) VALUES (940, 'Jules Verne');
INSERT INTO authors (author_id, author) VALUES (941, 'Cesare Pavese');
INSERT INTO authors (author_id, author) VALUES (942, 'Dorothy Hamill');
INSERT INTO authors (author_id, author) VALUES (943, 'Richard Thompson');
INSERT INTO authors (author_id, author) VALUES (944, 'Adriana Lima');
INSERT INTO authors (author_id, author) VALUES (945, 'Abu Bakar Bashir');
INSERT INTO authors (author_id, author) VALUES (946, 'Jimmy Carter');
INSERT INTO authors (author_id, author) VALUES (947, 'Norman Schwarzkopf');
INSERT INTO authors (author_id, author) VALUES (948, 'Black Elk');
INSERT INTO authors (author_id, author) VALUES (949, 'Josh McDowell');
INSERT INTO authors (author_id, author) VALUES (950, 'Paul Kane');
INSERT INTO authors (author_id, author) VALUES (951, 'Danielle Berry');
INSERT INTO authors (author_id, author) VALUES (952, 'Brandy Norwood');
INSERT INTO authors (author_id, author) VALUES (953, 'Barbara Boxer');
INSERT INTO authors (author_id, author) VALUES (954, 'Lena Headey');
INSERT INTO authors (author_id, author) VALUES (955, 'Jeanette Winterson');
INSERT INTO authors (author_id, author) VALUES (956, 'Claire Danes');
INSERT INTO authors (author_id, author) VALUES (957, 'Mary Baker Eddy');
INSERT INTO authors (author_id, author) VALUES (958, 'Slavoj Zizek');
INSERT INTO authors (author_id, author) VALUES (959, 'Jackie Kennedy');
INSERT INTO authors (author_id, author) VALUES (960, 'Johnny Cash');
INSERT INTO authors (author_id, author) VALUES (961, 'David Cameron');
INSERT INTO authors (author_id, author) VALUES (962, 'Shia LaBeouf');
INSERT INTO authors (author_id, author) VALUES (963, 'Ashley Montagu');
INSERT INTO authors (author_id, author) VALUES (964, 'Elizabeth Edwards');
INSERT INTO authors (author_id, author) VALUES (965, 'Georg Solti');
INSERT INTO authors (author_id, author) VALUES (966, 'Brendan Francis');
INSERT INTO authors (author_id, author) VALUES (967, 'Herodotus');
INSERT INTO authors (author_id, author) VALUES (968, 'Glenn Beck');
INSERT INTO authors (author_id, author) VALUES (969, 'Peter Abrahams');
INSERT INTO authors (author_id, author) VALUES (970, 'James Baldwin');
INSERT INTO authors (author_id, author) VALUES (971, 'Jennifer Lopez');
INSERT INTO authors (author_id, author) VALUES (972, 'Anna Letitia Barbauld');
INSERT INTO authors (author_id, author) VALUES (973, 'Jefferson Davis');
INSERT INTO authors (author_id, author) VALUES (974, 'Audre Lorde');
INSERT INTO authors (author_id, author) VALUES (975, 'Madeleine Albright');
INSERT INTO authors (author_id, author) VALUES (976, 'James Whistler');
INSERT INTO authors (author_id, author) VALUES (977, 'George Canning');
INSERT INTO authors (author_id, author) VALUES (978, 'Leonardo DiCaprio');
INSERT INTO authors (author_id, author) VALUES (979, 'Ibrahim Babangida');
INSERT INTO authors (author_id, author) VALUES (980, 'Thor Heyerdahl');
INSERT INTO authors (author_id, author) VALUES (981, 'Olivier Martinez');
INSERT INTO authors (author_id, author) VALUES (982, 'Alfred Eisenstaedt');
INSERT INTO authors (author_id, author) VALUES (983, 'Maurice Sendak');
INSERT INTO authors (author_id, author) VALUES (984, 'Ludwig Mies van der Rohe');
INSERT INTO authors (author_id, author) VALUES (985, 'Quintilian');
INSERT INTO authors (author_id, author) VALUES (986, 'Susan Orlean');
INSERT INTO authors (author_id, author) VALUES (987, 'Friedensreich Hundertwasser');
INSERT INTO authors (author_id, author) VALUES (988, 'Thurgood Marshall');
INSERT INTO authors (author_id, author) VALUES (989, 'Karl Jaspers');
INSERT INTO authors (author_id, author) VALUES (990, 'Louis C. K.');
INSERT INTO authors (author_id, author) VALUES (991, 'Marilyn vos Savant');
INSERT INTO authors (author_id, author) VALUES (992, 'Joseph Hume');
INSERT INTO authors (author_id, author) VALUES (993, 'Benito Mussolini');
INSERT INTO authors (author_id, author) VALUES (994, 'Sam Abell');
INSERT INTO authors (author_id, author) VALUES (995, 'Mehmet Oz');
INSERT INTO authors (author_id, author) VALUES (996, 'Wallace Stevens');
INSERT INTO authors (author_id, author) VALUES (997, 'Thomas Wolfe');
INSERT INTO authors (author_id, author) VALUES (998, 'Oscar Levant');