-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathny_features_fixed.csv
We can't make this file beautiful and searchable because it's too large.
8312 lines (8312 loc) · 614 KB
/
ny_features_fixed.csv
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
"Millsap's Double-Double Leads Hawks Over Grizzlies, 116-101"", 0, 0, 0, 0, 7
'U.S. Citizens Might Be Present at Mali Hotel: State Department', 4, 2, 0, 2, 10
'China to Restructure Poorly Performing State Firms-Assets Supervisor', 1, 1, 0, 0, 8
'High-Profile Chinese Investor Xu Xiang Detained', 0, 0, 0, 0, 6
'Molly McCormick and Mark Street: Did Someone Play \xe2\x80\x98Come Fly With Me\xe2\x80\x99?', 3, 0, 3, 0, 12
'‘Crescent to Cross’ by Richard Long Is at Sperone Westwater', 4, 2, 2, 0, 10
'Republican Gov. Phil Bryant Wins Second Term in Mississippi', 3, 1, 2, 0, 9
'Illinois: Attorney General Seeks Release of a Police Video ', 0, 0, 0, 0, 9
"Egypt's Military Controlling Repatriation of Russian Passengers: Russian Deputy PM"", 0, 0, 0, 0, 10
'High School Player Dies', 0, 0, 0, 0, 4
"Jets' Maccagnan Goes From Behind Scenes to Sudden Celebrity"", 0, 0, 0, 0, 9
'Detective Shoots Man Who Tried to Rob Officers in Brooklyn, Police Say', 0, 0, 0, 0, 12
'A World War I Memorial in Kansas City Is a Tribute to Giving', 2, 2, 0, 0, 13
'Baku Thinks Big and Small for F1 Debut', 1, 1, 0, 0, 8
'Restoring a Temple of Love as a Yonkers Eden Is Revived', 0, 0, 0, 0, 11
"Palestinian 'Day of Rage' claims victims"", 0, 0, 0, 0, 6
'Watches that Take the Plunge', 0, 0, 0, 0, 5
'The Latest: Prosecutors: Man Eyed Targets After Brother Shot', 0, 0, 0, 0, 9
'Part Exhibitionism, Part Surveillance', 0, 0, 0, 0, 4
'Second Win for Sunderland', 1, 1, 0, 0, 4
'Migrants Cling to Hungarian Train West, Lawmakers Debate Sealing Border', 0, 0, 0, 0, 10
'Amy Winehouse Documentary Team Tackling Oasis in Upcoming Film', 2, 0, 2, 0, 9
'In Uganda, Pope Honors Christian Martyrs, Meets Youth', 0, 0, 0, 0, 8
'Abid Naseer Receives 40-Year Sentence for Bomb Plot', 2, 0, 2, 0, 8
'Staying in Afghanistan: The Ambassador\xe2\x80\x99s View', 0, 0, 0, 0, 6
'Judge Hears Arguments on Fantasy Sports', 0, 0, 0, 0, 6
'Ellen DeGeneres Interview Offers Hillary Clinton Chance to Connect With Women', 4, 0, 4, 0, 11
"Royals' Orlando Becomes First Brazilian in World Series"", 1, 1, 0, 0, 8
'The Latest: 2 Victims Stabbed Inside Classroom, 2 Outdoors', 0, 0, 0, 0, 9
'Apple Beats Earnings Estimates, Issues Healthy Forecast', 0, 0, 0, 0, 7
'E.C.B. Expected to Expand Stimulus, as Questions of Effects Remain', 0, 0, 0, 0, 10
'Theft of a Boxer\xe2\x80\x99s Championship Belts Devastates His Upstate Hometown', 0, 0, 0, 0, 10
'Iraq says its forces advance towards Ramadi', 2, 2, 0, 0, 7
'Tracey Stewart\xe2\x80\x99s Animal Planet', 1, 0, 1, 0, 4
'River God, Drought Blamed for Power Shortages in Africa', 1, 1, 0, 0, 9
'After Missing Podium, Armstrong Must Reset Olympic Goals', 0, 0, 0, 0, 8
'Date Night With the Democrats', 0, 0, 0, 0, 5
'Ferguson Announces Hiring of New City Manager', 1, 0, 1, 0, 7
'South Africa Boss Issues Rally Cry for Boks Amid Race Row', 2, 2, 0, 0, 11
'Getting Names Wrong', 0, 0, 0, 0, 3
'Lawyers for Winston, Kinsman Unhappy on Eve of Documentary', 0, 0, 0, 0, 9
'\xe2\x80\x98Paris\xe2\x80\x99 Is a Six-Part Mini-Series From France', 1, 1, 0, 0, 7
'Rivals at Democratic Debate Attack Hillary Clinton', 2, 0, 2, 0, 7
'Standing Still Not an Option for All Blacks', 2, 0, 0, 2, 8
'Central American Nation of Belize Holds Legislative Election', 1, 1, 0, 0, 8
'Evening Hours | A Monumental Celebration and More', 0, 0, 0, 0, 8
'New Dinosaur Species That Lived Above Arctic Circle Is Discovered', 0, 0, 0, 0, 10
'Coldplay Designs T-Shirts and More Shopping Events and Sales Happening in New York', 2, 2, 0, 0, 13
'Two Palestinian Assailants Shot Dead in West Bank Stabbing Attempts: Israel', 3, 3, 0, 0, 11
'UNLV Hangs On for 72-69 Win Over No. 13 Indiana', 2, 1, 0, 1, 10
'Back to School With Thom Browne and Rodarte', 3, 0, 3, 0, 8
'Carson Defends Relationship With Dentist Convicted of Fraud', 1, 0, 1, 0, 8
'Scope of National Security Inquiry Is Revealed ', 0, 0, 0, 0, 7
'California Wildfire Evacuees Return Home, Find Charred Ruins', 1, 1, 0, 0, 8
'Hispanics in Congress Ask Treasury to Prevent \xe2\x80\x98Catastrophe\xe2\x80\x99 in Puerto Rico', 5, 2, 0, 3, 11
"With Climate at 'Breaking Point', Leaders Urge Breakthrough in Paris"", 1, 1, 0, 0, 10
'History Looms as World Cup Quarter-Finalists Fine-Tune', 0, 0, 0, 0, 7
'Review: The Weeknd Tiptoes Toward Intimacy, Then Retreats', 0, 0, 0, 0, 8
'NATO Invites Montenegro to Join Alliance, Defying Russia', 3, 2, 0, 1, 8
'Elder Bush Says His Son Was Served Badly by Aides', 1, 0, 1, 0, 10
'Chlo\xc3\xab\xc2\xa0Sevigny\xe2\x80\x99s Wild Gucci Dress', 0, 0, 0, 0, 4
'Touch-Screen Counseling', 0, 0, 0, 0, 2
'More Kids Kept Safe From Household Medicines, ER Trend Says', 0, 0, 0, 0, 10
"Deal Reached in Syria's Homs for Fighters to Leave"", 0, 0, 0, 0, 9
"Students at Washington's Howard University Complain About Mold, Rats"", 4, 0, 0, 4, 9
'In DC, Public Housing Tenants Forced Out, Then Homes Flipped', 0, 0, 0, 0, 10
'Givenchy\xe2\x80\x99s Bejeweled Masks and (Almost) Bare Faces', 0, 0, 0, 0, 7
'Police: Man Threatened Students Learning to Parallel Park', 0, 0, 0, 0, 8
'Source: OPCW Believes Syrian Insurgents Used Mustard Gas', 1, 0, 0, 1, 8
'Burkina Faso to Choose First New Leader in Three Decades', 2, 0, 2, 0, 10
'Fuel Shortages Reported in Rebel-Controlled Eastern Ukraine', 1, 1, 0, 0, 7
'11 Killed as Pakistanis Vote in Local Government Polls', 0, 0, 0, 0, 9
'Rain Washes Out Third Straight Day in Bengaluru', 0, 0, 0, 0, 8
'Woman Stops by Colorado Police Station to Hug Officer', 3, 0, 0, 3, 9
"Royals' Volquez to Start Possible Clincher After Dad's Death"", 1, 0, 1, 0, 9
'Leasing Begins for New York\xe2\x80\x99s First Micro-Apartments', 0, 0, 0, 0, 7
'Getting Hot and Heavy in the 1980s', 0, 0, 0, 0, 7
'Landmark Metro Theater in Manhattan Will Be Reborn as a Planet Fitness', 1, 1, 0, 0, 12
'Chick-fil-A and the Politics of Eating', 0, 0, 0, 0, 6
'$9.8 Billion Valuation for Ferrari', 1, 0, 0, 1, 5
'You Can’t Please Everyone', 0, 0, 0, 0, 4
'Groupies, From Sex Symbols to Style Icons', 0, 0, 0, 0, 7
'Truth and Lies: The Orwellian World of Politics', 0, 0, 0, 0, 8
'Recalling the Eloquent Loneliness of the Playwright Brian Friel', 2, 0, 2, 0, 9
'California Aid in Dying', 1, 1, 0, 0, 4
'In Rachel Rossin\xe2\x80\x99s \xe2\x80\x98Lossy,\xe2\x80\x99 the Virtual Reality of Living in a Painting', 2, 0, 2, 0, 12
'Greece: Poll Shows Syriza Pulling Ahead in Election Run-Up', 0, 0, 0, 0, 9
'The Allure of the Unknown', 0, 0, 0, 0, 5
'I Got a Mystery Tattoo From Scott Campbell', 2, 0, 2, 0, 8
'Reaction to Christmas Island Riots', 0, 0, 0, 0, 5
'Cassils: Transgender Artist Goes to Extremes', 0, 0, 0, 0, 6
'Canada Pushes Back Deadline for Accepting 25,000 Syrian Refugees', 1, 1, 0, 0, 9
'Tom Buckley, Versatile and Colorful Times Reporter, Dies at 87', 1, 0, 1, 0, 10
'Iran Expects Nuclear Deal to Be Implemented in Early January', 1, 1, 0, 0, 10
'Portugal Gets a New Government, but Probably Not for Long', 1, 1, 0, 0, 10
'Schwartzel Leads by 3 Shots at Alfred Dunhill Championship', 1, 0, 1, 0, 9
'To Weld, Perchance, to Dream', 0, 0, 0, 0, 5
'Spooked by Sugar, Americans Search for Healthier Halloween Treats', 0, 0, 0, 0, 9
'Former Pro Wrestler Charged in Girlfriend\xe2\x80\x99s 1983 Death', 0, 0, 0, 0, 8
'Review: Fall for Dance Opens With Miami Ballet and Che Malambo', 4, 2, 2, 0, 11
'Paid Notice: Deaths GAYNOR, PHIL', 0, 0, 0, 0, 5
"Ronaldo and Messi Headline Ballon d'Or Shortlist"", 4, 0, 4, 0, 7
'Presidential Candidates on Syrian No-Fly Zone', 0, 0, 0, 0, 6
'Is Cultural Appropriation Always Wrong?', 0, 0, 0, 0, 5
'How to Win the Broadway Ticket Lottery ', 0, 0, 0, 0, 7
'\xe2\x80\x98Unforgettable,\xe2\x80\x99 Apparently Forever', 0, 0, 0, 0, 3
'\xe2\x80\x98The Song Machine,\xe2\x80\x99 by John Seabrook', 2, 0, 2, 0, 6
'Homegrown pharma push to boost Chinese drugmakers', 0, 0, 0, 0, 7
'Oregon governor says community college shooter is deceased', 1, 1, 0, 0, 8
'Ask a Show Runner: Submit Questions for Sarah Treem of \xe2\x80\x98The Affair\xe2\x80\x99', 2, 0, 2, 0, 12
'Sam Raimi’s Evil Dead Rise Again on Television', 1, 0, 1, 0, 8
'A Slice of Kreuzberg in an East Village Bar', 1, 1, 0, 0, 9
'Bill Gates Expected to Create Billion-Dollar Fund for Clean Energy', 0, 0, 0, 0, 10
'Universal Theme Parks Record Highest Summer Attendance', 0, 0, 0, 0, 7
'Air France Officials Swarmed by Workers', 0, 0, 0, 0, 6
'\xe2\x80\x98The Evolution of Everything,\xe2\x80\x99 by Matt Ridley', 2, 0, 2, 0, 7
'Pope Hints Central African Republic Visit Could Be Canceled', 0, 0, 0, 0, 9
'Janet Jackson, Shy Pop Star', 0, 0, 0, 0, 5
'Euro Slightly Weaker in Early Trading Against Dollar', 0, 0, 0, 0, 8
"Atlanta Fed's Lockhart Says Rate Case 'Compelling' Ahead of Last Review"", 1, 1, 0, 0, 11
'Mali Attack Weighing on Airline Stocks-Traders', 1, 1, 0, 0, 6
'The Great British Immigration Debate', 0, 0, 0, 0, 5
"Egypt's Lost Queen Nefertiti May Lie Concealed in King Tut's Tomb"", 1, 0, 1, 0, 11
'U.S. Store Sales Down Slightly for Thanksgiving and Black Friday', 1, 1, 0, 0, 10
'Pope blesses sick, celebrates Mass in Uganda', 1, 1, 0, 0, 7
'Mother Who Locked Girl in Closet Found Guilty of Child Abuse', 0, 0, 0, 0, 11
'Drugmakers Pfizer, Allergan Considering a Combination: WSJ', 0, 0, 0, 0, 7
'Dutch Report on Malaysia Flight 17', 1, 1, 0, 0, 6
'Recasting Rodin\xe2\x80\x99s Life and Work', 0, 0, 0, 0, 5
'From Barbara Taylor Bradford: A Life Story That Dazzles', 2, 0, 2, 0, 9
'Gordon Takes Pole', 1, 0, 1, 0, 3
'Diverse Paris Mourns Together After Indiscriminate Violence', 1, 1, 0, 0, 7
'Cindy Holland of Netflix: Learning to Lead on a Pair of Water Skis', 2, 0, 2, 0, 13
'Connor McDavid Excited About Making NHL Debut', 2, 0, 2, 0, 7
'Asian-Americans and Stereotypes', 0, 0, 0, 0, 3
'Fox, SiriusXM Launch Headline News Service', 0, 0, 0, 0, 6
'In Religious Arbitration, Scripture Is the Rule of Law', 0, 0, 0, 0, 9
'Review: At Fall for Dance Festival, Female Power', 0, 0, 0, 0, 8
"Koscielny 'Deeply Affected' by Paris Attacks, Says Wenger"", 3, 1, 2, 0, 8
'ACLU, CAIR, Muslim Inmates Sue Over Miami-Dade Jail Meals', 0, 0, 0, 0, 9
'Salt and Pepper Roast Chicken', 0, 0, 0, 0, 5
'The Grown-Ups Take the Stage at the Democratic Debate', 0, 0, 0, 0, 9
'Baltimore Police Assailed for Response After Freddie Gray\xe2\x80\x99s Death', 1, 1, 0, 0, 9
'Report: Plane Likely Overweight in Crash That Killed 4', 0, 0, 0, 0, 9
'Obama Heads to a Crowded Iowa, but Will Stay Off the Trail', 1, 0, 1, 0, 12
'Zafgen Reports Second Death in Key Drug Study', 0, 0, 0, 0, 8
'Cisse Keen to Win Back Starting Place at Newcastle', 1, 1, 0, 0, 9
'World\xe2\x80\x99s Biggest Animal Cloning Center Set for \xe2\x80\x9916 in a Skeptical China', 1, 1, 0, 0, 12
"New York Man Creates 'Sovereign Nation' in Utah"", 3, 3, 0, 0, 8
'Channel Tunnel Migrant Emerges at Center of Asylum Debate', 0, 0, 0, 0, 9
'When Buying Gift Cards, Know Your Audience (and Their Age)', 0, 0, 0, 0, 10
'German Prosecutors Charge Suspected Islamist for Preparing Bombing', 0, 0, 0, 0, 8
"Republicans Want Tougher Response to ISIS 'War'"", 1, 0, 0, 1, 7
'U.S. Senators Call for 20,000 Troops in Syria and Iraq', 3, 3, 0, 0, 10
'The Latest: Illinois Attorney General Asks for Federal Probe', 1, 1, 0, 0, 9
'Corporation to Oversee New Hudson Rail Tunnel, With U.S. and Amtrak Financing Half', 6, 1, 0, 5, 13
'The Real Problem With the Economy', 0, 0, 0, 0, 6
'Review: Michel Houellebecq\xe2\x80\x99s \xe2\x80\x98Submission\xe2\x80\x99 Imagines France as a Muslim State', 5, 1, 2, 2, 10
'Paid Notice: Memorials BRODMAN, DR. L. ELIZABETH B. NOVEMBER 23, 1918, OCTOBER 19, 2015. ADORED MOTHER, SPOUSE AND SISTER, COMPASSIONATE AND GROUND BREAKING PHYSICIAN, DIED AT HOME IN STAMFORD, CONNECTICUT, EARLY IN THE MORNING ON OCTOBER 19, 2015, HAVING GRACEFULLY WITNESSED THE WORST AND EXEMPLIFIED THE BEST CHANGES IN AMERICA IN THE LAST ONE HUNDRED YEARS. NAMED AFTER HER ANCESTORS, SHE WAS BORN LILLE ELIZABETH BEEKLEY ON NOVEMBER 23, 1918, TWO YEARS BEFORE WOMEN GOT THE RIGHT TO VOTE, ON A FARM IN GLENDALE, OHIO, TO A FAMILY THAT TRACES ITS HISTORY TO THE SETTLEMENT OF GREENWICH, CONNECTICUT IN 1640, AND PARTICIPATED IN THE AMERICAN REVOLUTION. SHE WAS THE COURAGEOUS OLDEST OF FIVE SISTERS. WHEN ELIZABETH WAS JUST SEVEN YEARS OLD, HER MOTHER DIED OF PNEUMONIA. UNABLE TO CARE FOR ALL FIVE SIBLINGS, THEIR FATHER PLACED ELIZABETH AND NEXT OLDEST, RUTH, IN BETHANY HOME, RUN BY THE EPISCOPAL SISTERS. EVENTUALLY, BY HIGH SCHOOL, BOTH GIRLS RETURNED TO LIVE WITH THEIR FATHER AND ADORED PATERNAL GRANDMOTHER, HER GRAMMAR, WITH WHOM ELIZABETH SHARED A BED. AT GLENDALE HIGH SCHOOL, EVER FOCUSED AND SELF, DEFINED, ELIZABETH TOOK UP THE TROMBONE AND ALSO PLAYED ON THE BASKETBALL TEAM. SHE GRADUATED HIGH SCHOOL IN A CLASS OF SIXTEEN STUDENTS. IN THE LATE 1930S, ELIZABETH ENTERED MIAMI UNIVERSITY IN OHIO, ARRIVING WITH A WARDROBE SHE HAD SEWN HERSELF. SHE GRADUATED FROM COLLEGE WITH HONORS IN BIOLOGY. SHE THEN ATTENDED THE UNIVERSITY OF CINCINNATI SCHOOL OF MEDICINE WHERE SHE WORKED AT NIGHT AS A LABORATORY TECHNICIAN. SHE WAS ONE OF TWO WOMEN IN HER 1945 GRADUATING CLASS OF 86. DURING HER CLINICAL YEARS IN MEDICAL SCHOOL, WHEN THE CLASS WAS DIVIDED BETWEEN MEDICINE AND SURGERY, SHE PITCHED IN THE SOFTBALL GAMES. THE YEAR ELIZABETH GRADUATED MEDICAL SCHOOL WAS THE FIRST YEAR HARVARD MEDICAL SCHOOL ADMITTED WOMEN. HAD SHE NOT MET AND MARRIED HER FUTURE HUSBAND IN MEDICAL SCHOOL, DR. HAROLD BRODMAN, WHO PURSUED HER WITH ZEAL, ELIZABETH LIKELY WOULD HAVE SPENT LIFE AS A DOCTOR HELPING CHILDREN IN THE 3RD WORLD. INSTEAD, SHE BEGAN HER MEDICAL PRACTICE AND BECAME A MOTHER ALL AT ONCE. THERE IS A LOVELY PHOTOGRAPH DOCUMENTING THIS TIME, OF ELIZABETH IN CAP AND BURSTING GOWN, EVIDENCING HER JOY. SOON AFTER THE PHOTO WAS TAKEN, ELIZABETH, JUST SIX AND ONE HALF MONTHS PREGNANT WITH TWIN BOYS, WENT INTO PRECIPITOUS LABOR; IT WAS THE LAST DAY OF HER STATE BOARD EXAMINATIONS. BUT WITH THE SEEMING EASE AND DETERMINATION SHE SHOWED THROUGHOUT HER LIFE, ELIZABETH COMPLETED THE EXAM AND THEN WENT TO ST. FRANCIS HOSPITAL IN COLUMBUS, WHERE HER SONS CHARLES AND RICHARD WERE BORN. EIGHT YEARS LATER SHE GAVE BIRTH TO HER DAUGHTER, LOUISE. IN THOSE YEARS, DR. ELIZABETH BRODMAN CONTINUED WORK AS A PHYSICIAN, JUGGLING PARENTHOOD, ALWAYS FINDING TIME FOR HER CHILDREN. A TALENTED PAINTER, SHE ALSO FOUND TIME TO STUDY AT THE ARTS STUDENTS LEAGUE IN NEW YORK WITH REGINALD MARSH. THEN, WHEN HER SONS WENT OFF TO COLLEGE AND HER DAUGHTER WAS A BIT MORE INDEPENDENT, SHE TOOK A RESIDENCY IN ANESTHESIOLOGY AT ALBERT EINSTEIN COLLEGE OF MEDICINE AND FOLLOWING, CONTINUED WORK FULL TIME AS AN ATTENDING AND ASSOCIATE PROFESSOR AT ALBERT EINSTEIN COLLEGE OF MEDICINE. THERE, SHE CREATED THE PEDIATRIC ANESTHESIA SPECIALTY AND BECAME ASSISTANT PROFESSOR OF PEDIATRICS AND THE CLINICAL DIRECTOR OF THE DEPARTMENT OF ANESTHESIA. SHE WAS PERFECTLY SUITED FOR PEDIATRICS, SHE LOVED CHILDREN, WOULD COMPASSIONATELY READY HER YOUNG PATIENTS FOR SURGERY, AND COMFORTINGLY ALLAY THEIR FEARS. RETURNING IN LATER YEARS TO HER CORE DESIRE TO HELP THOSE WITHOUT RESOURCES, DR. BRODMAN VOLUNTEERED WITH HER HUSBAND TO WORK IN THIRD WORLD COUNTRIES, GIVING ANESTHESIA FOR THE NEEDY AND TEACHING FOREIGN PHYSICIANS IN THEIR OWN LANDS, USING MATERIALS AVAILABLE THERE TO TEACH NEW TECHNIQUES. IN 1972 SHE WORKED AT THE AVICENNA HOSPITAL IN KABUL, AFGHANISTAN; IN 1975 IN SURAKARTA AND MALANG, JAVA; IN 1991 IN HANGCHOU, CHINA AND IN 1992 AT THE LUTHERAN HOSPITAL ON THE WEST BANK IN ISRAEL. IN AFGHANISTAN DR. BRODMAN EXECUTED AND TAUGHT THE CENTRAL VENOUS MONITORING TECHNIQUE, THE FIRST SUCH PROCEDURE IN CENTRAL ASIA. IN CHINA AND ISRAEL SHE WAS ESPECIALLY FOND OF THE WORK, CORRECTING FACIAL DEFORMITIES OF CHILDREN TO GIVE THEM A NEW CHANCE IN LIFE. IN 1995 AT HER 50TH MEDICAL SCHOOL REUNION, DR. BRODMAN WAS GIVEN THE DISTINGUISHED ALUMNI AWARD FOR THE CLASS OF 1945. DR. BRODMAN WAS A RESPECTED MEMBER OF THE AMERICAN SOCIETY OF ANESTHESIOLOGISTS, THE NEW YORK STATE SOCIETY OF ANESTHESIOLOGISTS AND THE INTERNATIONAL ANESTHESIA RESEARCH SOCIETY. IN ADDITION, SHE AUTHORED AND CO, AUTHORED NUMEROUS COMMUNICATIONS IN REVIEWED JOURNALS AS WELL AS SEVERAL BOOKS, BOOK CHAPTERS, REVIEW ARTICLES AND ABSTRACTS. DR. BRODMAN RETIRED FROM MEDICINE AT AGE 76, AS SHE SAID, ""BEFORE SHE MADE ANY MISTAKES."" SHE WOULD HAVE LIKED TO HAVE DIED WITH HER BOOTS ON, PRACTICING MEDICINE. NEVER LIKING TO BE INACTIVE, SHE RETURNED AFTER RETIRING FROM MEDICINE TO STUDYING PAINTING WITH THE ARTS STUDENTS LEAGUE AT THE VYTLACIL CAMPUS IN SPARKILL, NY. ALWAYS A DEEP SORROW, ELIZABETH WAS PREDECEASED BY HER SON CHARLES IN 1977 WHEN HE WAS 31, A HEART BREAKING LOSS FOR THE FAMILY WHICH ELIZABETH HELD TOGETHER WITH NOTHING SHORT OF GRACE, LOVE, AND HER ASTONISHING STRENGTH OF WILL. A YEAR LATER, ELIZABETH SUFFERED ANOTHER TERRIBLE LOSS, HER GREATEST CONFIDANT AND FRIEND, HER SISTER MIDGE, DIED IN A CAR ACCIDENT. AGAIN ELIZABETH DID NOT LET LOSS, THOUGH EVER PRESENT, DEFINE HER; SHE QUIETLY, COMPASSIONATELY, AND LOVINGLY PERSEVERED. ELIZABETH B. BRODMAN IS SURVIVED BY HER DEVOTED AND ADORING FAMILY: HER HUSBAND OF ALMOST 72 YEARS, DR. HAROLD BRODMAN, A GENERAL SURGEON, HER SON DR. RICHARD BRODMAN, A CARDIOTHORACIC SURGEON, HER DAUGHTER, LOUISE, AN ARCHITECT, HER GRANDDAUGHTER, ALEXANDRA, A NASSAU COUNTY ASSISTANT DISTRICT ATTORNEY, AND THEIR SPOUSES, AS WELL AS HERO AND HARLEY, POODLES WHO BROUGHT SOME LIGHT HEARTED PLAY TO ELIZABETH IN HER LAST YEARS. THE MOST GENEROUS OF SOULS, AN ENVIRONMENTALIST BEFORE THE WORD BECAME KNOWN, A COURAGEOUS AND FUN LOVING ADVENTURER WHO CANOED WHITE WATER AND TRAVELED THE WORLD WITH THE DESIRE TO HELP OTHERS, A PAINTER WHO LOVED THE BEAUTY OF THE NATURAL WORLD AS WELL AS THE WONDERS OF SCIENTISTS AND ARTISTS, A LOVING MOTHER AND SPOUSE, ELIZABETH MADE EVERYONE BETTER FOR HAVING KNOWN HER. DESPITE THE SORROWS SHE SUFFERED OVER HER REMARKABLE LIFE, SHE MADE EVERYTHING SEEM EFFORTLESS, AND JOYFUL. SHE LIVED BY HER OWN EXPECTATIONS AND INTERESTS. SHE LOVED AND WAS LOVED. 1', 44, 13, 31, 0, 1056
"Republican Bush Says Rival Rubio Has 'Given Up'"", 1, 0, 1, 0, 8
'Market Slides on Concerns of Cooling Global Economy', 0, 0, 0, 0, 8
'Germany vs. Netherlands Friendly to Symbolize Unity: Loew', 2, 2, 0, 0, 8
'The Limits of the \xe2\x80\x98Tobacco Strategy\xe2\x80\x99 on Climate Change', 0, 0, 0, 0, 9
'Mark Penn\xe2\x80\x99s Stagwell Group Will Acquire SKDKnickerbocker', 0, 0, 0, 0, 7
'Rosberg Fastest in Final Mexican Practice', 1, 0, 1, 0, 6
'German Industry Orders Unexpectedly Fall in August', 0, 0, 0, 0, 7
'Review: ‘Breathe,’ the Story of a Scary Teenage Romance', 0, 0, 0, 0, 9
'North Korea to Hold Convention for Workers\xe2\x80\x99 Party', 2, 2, 0, 0, 8
'Charleston Voters Choose First New Mayor in Four Decades', 1, 1, 0, 0, 9
'How Drunk? Estimates Questioned in Drunken-Driving Cases', 0, 0, 0, 0, 7
'Samantha Bee to Be Among Guests at BookCon in 2016', 2, 0, 2, 0, 10
'Two Finals Entail Two Surfaces for Andy Murray', 2, 0, 2, 0, 8
'Ban Ki-moon Urges Paris Climate Deal', 0, 0, 0, 0, 6
'3 Startups That Want to Get Millennials Saving Money', 0, 0, 0, 0, 9
'Detroit Symphony Tackles an Adventurous Premiere', 0, 0, 0, 0, 6
'VW Reveals It Misstated Emissions of Gas Cars', 1, 0, 0, 1, 8
'Travel News: BYO Crockpot; Cocktail Conference; 1-Year Tour', 0, 0, 0, 0, 8
'US Reaches $95.5M Settlement in For-Profit Education Case', 1, 1, 0, 0, 8
'Lindsey Graham to Make His Voice Heard During Debate, on Social Media', 2, 0, 2, 0, 12
'Trial for Church Shooting Suspect Friend Moved to Charleston', 1, 1, 0, 0, 9
'With \xe2\x80\x98Product,\xe2\x80\x99 Sophie Swarms the Senses With Synthetic Sounds', 2, 0, 2, 0, 9
'Loss to Penn Ends Streak of 22 Wins for Harvard', 3, 0, 3, 0, 10
"Paris gunmen 'no older than 25': survivor"", 1, 1, 0, 0, 7
'At Home \xe2\x80\x94 and on the Hunt for Antiques \xe2\x80\x94 With Heidi Julavits', 2, 0, 2, 0, 13
"Breeders' Cup Classic Winners"", 0, 0, 0, 0, 4
'Consumer Spending Posts Smallest Gain in 8 Months', 0, 0, 0, 0, 8
'James Prideaux, Writer for Stage and for Television, Dies at 88', 1, 0, 1, 0, 11
"Real's Bale Fit and Ready for 'Clasico' Battle"", 0, 0, 0, 0, 8
'The Third Trail', 0, 0, 0, 0, 3
"'Say Something' Slogan, Born of Terror, Adopted for Schools"", 0, 0, 0, 0, 9
'3 of a Kind: Rare Identical Triplets Born in Baltimore', 1, 1, 0, 0, 10
"High Speed, Mountains Blunt Hurricane Patricia's Blow in Mexico"", 1, 1, 0, 0, 9
'They\xe2\x80\x99re Coming for Your Cigarettes. But That\xe2\x80\x99s O.K.', 0, 0, 0, 0, 8
'Endangered White Rhino Dies at San Diego-Area Zoo', 3, 3, 0, 0, 8
"Leicester's Vardy Has Van Nistelrooy Record in Sight"", 4, 0, 4, 0, 8
'Busta Rhymes Sentenced to Time Served in Protein Shake Incident', 0, 0, 0, 0, 10
'Record Setting Quarter for Aerospace and Defence M&A-Report', 0, 0, 0, 0, 8
'Panel: Cooking With The Times', 0, 0, 0, 0, 5
'In This Festival, All the Films Are Dogs', 0, 0, 0, 0, 8
'Match Shares Gain on Their Debut', 0, 0, 0, 0, 6
"BHP Billiton Says Keeping Solid 'A' Balance Sheet Is Top Priority"", 2, 0, 0, 2, 11
"The Clockmakers' Museum: Keeping Time"", 0, 0, 0, 0, 5
'Fecal Transplants Made (Somewhat) More Palatable', 0, 0, 0, 0, 6
'Analysis-Other Central Banks Set to Act, but Swiss Policy Cupboard Bare', 0, 0, 0, 0, 11
'The Showcase That Sets a Home Apart From Others', 0, 0, 0, 0, 9
'Paris and London, in Their Annual Art Showdown', 1, 1, 0, 0, 8
"New York Assembly Speaker's Conviction Renews Call to Ban Outside Income"", 3, 0, 0, 3, 11
'Whistleblower Letter Backs Lloyds Investor Claims Over HBOS Purchase-Lawyers', 0, 0, 0, 0, 9
'Rosberg Blames Gust of Wind for Austin Error', 1, 0, 1, 0, 8
'Friday Night Music: The Lone Bellow Cover The Rolling Stones', 0, 0, 0, 0, 10
'U.S. Investors Interested in Buying Marussia', 1, 1, 0, 0, 6
'Ukraine Leaves Sabotaged Power Lines to Russian-Annexed Crimea in Mud', 2, 2, 0, 0, 10
"'Mad Max: Fury Road' Is Surprise Best Film Choice of Board of Review"", 8, 0, 0, 8, 13
'Leftist Alliance Moves Closer to Power in Portugal', 1, 1, 0, 0, 8
'The California Wildfires: What\xe2\x80\x99s Making This Season So Wild?', 1, 1, 0, 0, 9
'John Doyle to Be Artistic Director of the Classic Stage Company', 2, 0, 2, 0, 11
'Paid Notice: Deaths LEEDS, HERBERT ALAN DIED PEACEFULLY OCTOBER 5', 2, 0, 2, 0, 10
'One Bourbon, One Scotch, One Meal', 0, 0, 0, 0, 6
'Brad Pitt, Ryan Gosling and Other Stars at \xe2\x80\x98The Big Short\xe2\x80\x99 Premiere', 4, 0, 4, 0, 12
'Test of Will and Patience Follows Days of Preparation for Hillary Clinton', 2, 0, 2, 0, 12
'Beyond Monticello and Mount Vernon: The Other Presidents\xe2\x80\x99 Houses', 0, 0, 0, 0, 9
'Lancashire Shares Hit Record High on Special Dividend', 1, 0, 0, 1, 8
'Exxon Taps High-Profile Lawyer to Fight N.Y. Climate Change Probe', 0, 0, 0, 0, 10
'Texas Mother Teaches Textbook Company a Lesson on Accuracy', 5, 0, 0, 5, 9
'A Show of Appreciation at U.C.L.A.', 0, 0, 0, 0, 6
'EasyJet Expects Resilient Demand to Withstand Security Fears', 1, 0, 0, 1, 8
"Prosecutor: Cause of 3-Year-Old Boy's Death Undetermined"", 0, 0, 0, 0, 7
'Running Away With the Circus', 0, 0, 0, 0, 5
'Fiji Intend to Finish With a Flourish', 1, 1, 0, 0, 7
'Almost Missing Summer', 0, 0, 0, 0, 3
'Advice on Lending to Adult Children', 0, 0, 0, 0, 6
'U.S. Clears Genetically Modified Salmon for Human Consumption', 1, 1, 0, 0, 8
'Virtual Tour of Off-Limits Ellis Island Site Now Available', 1, 0, 1, 0, 9
'Spanish Woman Arrested for IS Group Links', 0, 0, 0, 0, 7
'Hungary Waits on Austria, Germany Before Sealing Off Croatian Border', 2, 2, 0, 0, 10
'Fire in Coal Mine Kills at Least 21 in China', 1, 1, 0, 0, 10
'Bronx Baby Thrown Out Window Dies; Mother Is Charged With Murder', 0, 0, 0, 0, 11
"'Brexit' Wouldn't Ruin Northern Ireland Economy-Leadership Favorite"", 0, 0, 0, 0, 7
'Greek Fortress, Key to Ancient Jerusalem, Uncovered, Researchers Say', 0, 0, 0, 0, 9
'Jeb Bush Says He Would Have Probably Skipped Climate Conference', 2, 0, 2, 0, 10
'John Thain of CIT Group Will Step Down as Chief Executive', 7, 0, 2, 5, 11
'NATO Invites Montenegro to Join, as Russia Plots Response', 3, 2, 0, 1, 9
"Christie's to Auction Margaret Thatcher's Clothes, Handbags"", 1, 0, 1, 0, 7
'Airlines Reroute Flights After Russian Crash in Egypt', 1, 1, 0, 0, 8
'Punish Russian Officials, Not Athletes for Doping-Shobukhova', 0, 0, 0, 0, 7
'Paid Notice: Memorials PARKER, H. LAWRENCE. RETIRED MANAGING DIRECTOR AT MORGAN STANLEY, DIES AT 89. AFTER A LENGTHY BATTLE WITH CANCER, H. LAWRENCE, ""LARRY,"" PARKER DIED PEACEFULLY ON OCTOBER 21ST, SURROUNDED BY FAMILY AT HIS HOME IN HOBE SOUND, FLORIDA. HE IS SURVIVED BY HIS WIFE, REGGIE HAWES PARKER, HIS DAUGHTER, KATHERINE GOLDSMITH, AND HIS TWO SONS, RICHARD AND MICHAEL. A SON, DOUGLAS, PREDECEASED LARRY IN 1976. HIS FAMILY ALSO INCLUDES SEVEN GRANDCHILDREN AND EIGHT GREAT, GRANDCHILDREN. HE IS ALSO SURVIVED BY HIS TWO SISTERS, NANCY WELBOURN AND ALICE OBER. BORN AND RAISED IN THE NORTHEASTERN U.S., HE ATTENDED ST. ANDREWS SCHOOL IN MIDDLETON, DELAWARE AND ENLISTED IN THE MARINE CORPS DAYS AFTER GRADUATION IN JUNE, 1944. ""PFC"" PARKER SERVED DURING WORLD WAR II ABOARD THE U.S.S. ATLANTA AND WAS AMONG THOSE PARTICIPATING IN THE FIRST LANDING OF AMERICAN TROOPS ON JAPAN IN LATE AUGUST, 1945. THE HONOR OF SERVING AS A MARINE WAS AS STRONG AT THE END OF HIS LIFE AS IT WAS IN 1944. LARRY GRADUATED FROM YALE UNIVERSITY, THEN IMMEDIATELY WENT TO WORK FOR MORGAN STANLEY & COMPANY IN 1950. RAPIDLY DISTINGUISHING HIMSELF FOR DILIGENCE AND FOR CULTIVATING TRUSTING AND CLOSE RELATIONSHIPS WITH CLIENTS, LARRY WAS THE YOUNGEST MAN TO BE MADE GENERAL PARTNER EVER IN 1959. OVER THE YEARS HE MANAGED KEY ACCOUNTS LIKE GMAC, THE WORLD BANK, AND WEYERHAEUSER AND ALSO SERVED AS CHAIRMAN OF MORGAN STANLEY CANADA LIMITED FROM 1979, 1983. HE ALSO SERVED A TERM AS PRESIDENT OF THE INVESTMENT BANKERS ASSOCIATION OF AMERICA, HIS NATIONAL ORGANIZATION, FROM 1969, 70. HE HAD A DISTINGUISHED CAREER AT MORGAN STANLEY AND RETIRED AS A MANAGING DIRECTOR IN 1983. DURING THESE YEARS, LARRY HOSTED HIS FAMILY FOR FOUR, SEASON ACTIVITY DURING VACATIONS IN STOWE, VERMONT. AFTER RETIREMENT LARRY DIVIDED HIS TIME BETWEEN CATTLE RANCHING IN DANIEL, WYOMING AND HIS LIFE IN HOBE SOUND. ALWAYS A LOVER OF HORSES AND THE MOUNTAINS, LARRY JOINED HIS NEIGHBORS IN FROSTY DAWN CATTLE DRIVES AND HAY CUTTING MARATHONS AND JOURNEYED INTO THE WIND RIVER RANGE WITH FRIENDS AND FAMILY ON PACK TRIPS AND ELK HUNTING EXCURSIONS. IN FLORIDA LARRY WAS VERY ACTIVE RAISING MONEY FOR THE JUPITER MEDICAL CENTER FOUNDATION AND WORKING AT KEY VOLUNTEER ROLES AT THE JUPITER ISLAND CLUB, MOST NOTABLY AS CHAIRMAN OF THE GOLF AND GREEN COMMITTEES. THROUGHOUT HIS LIFE, SERVICE TO OTHERS WAS IMPORTANT. HE ALSO SERVED AS COMMODORE OF THE HOBE SOUND YACHT CLUB AND WAS AN ACTIVE MEMBER IN THE UNITED STATES SENIORS\' GOLF ASSOCIATION. HE WAS A MEMBER AT AUGUSTA NATIONAL GOLF CLUB FOR OVER 40 YEARS AND SERVED ON THE ADMISSION COMMITTEE AND WAS CHAIRMAN OF THE COMMITTEE RESPONSIBLE FOR THE PRODUCTION OF THE ANNUAL FILM OF THE MASTERS TOURNAMENT FOR OVER THREE DECADES. LARRY IS REMEMBERED BY FRIENDS AND FAMILY AS A TRUE GENTLEMAN. HIS GENEROSITY, KINDNESS, RESPECT FOR ALL, LOVE OF THE OUTDOORS, AND ZEST FOR LIFE INSPIRED THOSE WHO KNEW HIM. NOTHING WAS MORE IMPORTANT TO HIM THAN HIS FAMILY. LARRY PARKER, ""THE PARD"" A LIFE WELL LIVED. IN LIEU OF FLOWERS, PLEASE SEND DONATIONS IN LARRY\'S HONOR TO THE JUPITER MEDICAL CENTER FOUNDATION AT 1210 SOUTH OLD DIXIE HIGHWAY, BUILDING EAST 1002, JUPITER, FLORIDA 33458. A MEMORIAL SERVICE WILL BE HELD ON JUPITER ISLAND, JANUARY 23RD AT 4:30 AT CHRIST MEMORIAL CHAPEL. 1', 33, 15, 10, 8, 547
'New Details in Akron Plane Crash', 1, 1, 0, 0, 6
'Bucs, Dolphins, Jags Already Falling Short of Expectations', 0, 0, 0, 0, 8
'Tales of a Warmer Planet', 0, 0, 0, 0, 5
'Plants That Won\xe2\x80\x99t Drain You', 0, 0, 0, 0, 5
'Travel New and Now: NYC Winter, DC Video Show, Lonely Planet', 0, 0, 0, 0, 11
'Joseph Silverstein, Violinist and Boston Symphony Concertmaster, Dies at 83', 3, 0, 1, 2, 10
'$1,175,000 Homes in Hawaii, Colorado and Washington, D.C.', 2, 2, 0, 0, 8
'Devils Owner Apologizes to Youths', 0, 0, 0, 0, 5
'Is Carly Fiorina a Feminist?', 2, 0, 2, 0, 5
'Nigerian Security Agencies Searching for Kidnapped Poles', 0, 0, 0, 0, 7
'Why an Iowa Poll Is Unfair to Bernie Sanders', 3, 1, 2, 0, 9
'Greece Improving Border Control, Cooperation-EU Chair', 1, 1, 0, 0, 6
'Tell Consumers What They Are Eating', 0, 0, 0, 0, 6
'Q & A with Austin Meyer, 2015 Win-a-Trip Winner', 1, 0, 1, 0, 9
'A Local Team Reflects Values and Culture of Employees and Customers', 0, 0, 0, 0, 11
'How the H-1B Visa System Can Hurt American Workers ', 0, 0, 0, 0, 9
'Fetty Wap Throws Wads of Money Over Balcony to Fans at Mall', 0, 0, 0, 0, 12
'A 3-Year-Old Syrian Refugee\xe2\x80\x99s Life Cut Short', 0, 0, 0, 0, 7
'Celtics Run Away From Wizards 111-78', 0, 0, 0, 0, 6
'Houston\xe2\x80\x99s Vote on an Anti-Bias Law', 0, 0, 0, 0, 6
'Kim Birdies Last to Claim Stunning Victory in China', 2, 1, 1, 0, 9
"South Africa's PIC Says All SABMiller Shareholders Be Treated Equally"", 0, 0, 0, 0, 10
'Man City Back on Top After Bore Draw, Klopp Still Awaiting Win', 0, 0, 0, 0, 12
'U.N. Report Shows Women Inching Slowly, Unevenly Towards Equality', 1, 0, 0, 1, 9
'Acquittals Are Greeted With Good Cheer in Queens', 1, 1, 0, 0, 8
'The Week of the Woman', 0, 0, 0, 0, 5
'A Mammoth Find', 0, 0, 0, 0, 3
'Feting Alice, Forever Young at 150', 0, 0, 0, 0, 6
'Hillary Rodham Clinton on ISIS', 4, 0, 3, 1, 5
'US Rig Count Declines by 13 This Week to 744', 1, 1, 0, 0, 10
'North Carolina: 3-year-old Thrown Into Pond Dies ', 0, 0, 0, 0, 7
'Google in Talks to Invest in Chat Company Symphony: Source', 1, 0, 0, 1, 10
'Islamic State Leader Probably Not in Targeted Convoy: Iraqi Security Officials', 0, 0, 0, 0, 11
'As Lobsters Dwindle in Long Island Sound, Oysters Thrive', 2, 2, 0, 0, 9
'Mexico: International Gang of Credit Card Skimmers Captured', 0, 0, 0, 0, 8
'Mother buries her son in somber ceremony', 0, 0, 0, 0, 7
'Hannover Midfielder Kiyotake Breaks Foot With Japan', 2, 2, 0, 0, 7
'9 Foreigners Killed in Mali Are Identified', 1, 1, 0, 0, 7
'Divers Tow Plane Wreckage From New York Reservoir to Shore', 3, 3, 0, 0, 10
"Britain's economic recovery loses steam"", 0, 0, 0, 0, 5
'Movie Review: \xe2\x80\x98Beasts of No Nation\xe2\x80\x99', 0, 0, 0, 0, 6
'Green-Wood Is the Brooklyn Cemetery With a Velvet Rope', 2, 2, 0, 0, 9
"Dijsselbloem: Refugee Crisis Could Trigger 'Mini-Schengen'"", 0, 0, 0, 0, 6
"Kuwait's Sheikh Ahmad in His Element in City of Politics"", 1, 0, 1, 0, 10
'Auction Houses, Wealthy Kenyans Boost East African Art Scene', 0, 0, 0, 0, 9
'Flight Attendant Accused of Attacks Appears in Court', 0, 0, 0, 0, 8
'Sturridge Could Return for Liverpool', 2, 0, 1, 1, 5
'\xe2\x80\x98Star Wars\xe2\x80\x99 Doesn\xe2\x80\x99t Belong to George Lucas. It Belongs to the Fans.', 1, 0, 1, 0, 12
'The Future of Touch Beyond Apple Watch', 0, 0, 0, 0, 7
"AP Exclusive: 17 Seconds of Terror in Gov't Office Shooting"", 0, 0, 0, 0, 10
"Father of 2 Missing Minnesota Girls 'Ecstatic' They're Found"", 0, 0, 0, 0, 9
"North Korean Leader's Aunt Sues Defectors in South for Defamation"", 1, 1, 0, 0, 10
'Battered Transport Stocks Could Attract on Price', 0, 0, 0, 0, 7
'For Auto Enthusiasts, the Right to Tinker With Cars\xe2\x80\x99 Software', 0, 0, 0, 0, 10
'Rams Hope Case Keenum Is Cleared to Play', 0, 0, 0, 0, 8
'Rafael Earns Lyon a Point at 10-Man Monaco', 4, 1, 3, 0, 8
'Paid Notice: Deaths BASS, BARBARA ', 1, 0, 1, 0, 5
'Pope Brings Peace Message to Central African Republic', 0, 0, 0, 0, 8
"Drowned Syrian Boy's Aunt Says Family Will Settle in Canada"", 1, 1, 0, 0, 10
"Venus' Twin? Earth-Size Planet Is Hot, May Have Atmosphere"", 0, 0, 0, 0, 9
'China Says Must Learn From Paris Attacks', 6, 1, 0, 5, 7
'Fact Sheet: 2016 Volvo V60 Cross Country', 0, 0, 0, 0, 7
'\xe2\x80\x98American Horror Story\xe2\x80\x99 Season 5, Episode 6: Impersonation of Love', 0, 0, 0, 0, 10
'Correction: Wealthiest Donors-Glance Story', 0, 0, 0, 0, 4
'Suspect in Planned Parenthood Attack Hears Murder Charge', 0, 0, 0, 0, 8
'Review: Tried-and-True Cuisine at Cugino\xe2\x80\x99s in Hartford', 1, 1, 0, 0, 7
'Roethlisberger Frustrated but Relieved After Knee Injury', 1, 0, 1, 0, 7
"Spieth Named to Headline Singapore Open's 2016 Return"", 1, 1, 0, 0, 8
'At the First InStyle Awards, Everyone Wins', 0, 0, 0, 0, 7
'Appalachia Grasps for Hope as Coal Loses Its Grip', 1, 1, 0, 0, 9
'Call to Freeze Liquor Licenses in Inwood for a Year', 1, 1, 0, 0, 10
'Boston Symphony Presents a Stunning “Elektra” at Carnegie Hall', 2, 0, 0, 2, 9
'Court Tosses Defamation Suits by Founder of Rock Band Boston', 3, 0, 0, 3, 10
'Michigan: Flint Will Receive Money to Switch Source of Drinking Water', 0, 0, 0, 0, 11
"Serenity Now: True Beauty of Washington's Deception Pass"", 0, 0, 0, 0, 8
'Readers\xe2\x80\x99 Summer Highlight Reel', 0, 0, 0, 0, 4
"Japan Manufacturers' Mood Down Again Amid Recession Fears-Reuters Tankan"", 1, 1, 0, 0, 9
"The Latest: California Man's Rape Convictions Exonerated"", 1, 1, 0, 0, 7
'Cuban Peers Dispute Ted Cruz\xe2\x80\x99s Father\xe2\x80\x99s Story of Fighting for Castro', 1, 0, 1, 0, 11
'Hillary Clinton Wins Again', 2, 0, 2, 0, 4
'More Gay and Transgender Characters Are on TV, Report Shows ', 0, 0, 0, 0, 10
'Site Raises $400K for 4 Siblings After Halloween Tragedy', 0, 0, 0, 0, 9
"Channel 4 weather presenter flawlessly pronounces Europe's longest place name"", 0, 0, 0, 0, 10
'United to Let Travelers Use Miles for In-Flight Wifi', 0, 0, 0, 0, 9
'Swiss Court Convicts Ex-HSBC Employee for Leaking Bank Data', 3, 0, 0, 3, 9
'The Short-Order Sofa', 0, 0, 0, 0, 3
'Your Weekend Briefing', 0, 0, 0, 0, 3
'The New Romantics in the Computer Age', 0, 0, 0, 0, 7
'Benzema Should Not Play for France, Says Prime Minister', 0, 0, 0, 0, 9
'General to Investigate U.S. Airstrike on Doctors Without Borders Hospital', 3, 0, 0, 3, 10
'Heat Check: Auburn Proving Prognosticators Wrong So Far', 0, 0, 0, 0, 8
'Giving Art a Role in Society', 0, 0, 0, 0, 6
'Memories of Things Unseen', 0, 0, 0, 0, 4
"Prosecutor Won't Charge Ex-Lawmaker's Husband With Extortion"", 0, 0, 0, 0, 7
'Ground Combat Element Integrated Task Force Assessment', 0, 0, 0, 0, 7
'Edie Jackson: Signer With the Band', 1, 0, 1, 0, 6
"Former Dewey Executives 'Lied, Schemed and Defrauded,' Jury Told"", 0, 0, 0, 0, 9
'Suspected jihadists arrested in Europe', 1, 1, 0, 0, 5
'The Enduring Appeal of Metalpoint', 0, 0, 0, 0, 5
'Manhattan Man Charged in Wife\xe2\x80\x99s Killing Is Barred From Talking to Anyone but Lawyer', 1, 1, 0, 0, 14
'Japanese Whaling Fleet Set to Leave for Antarctic', 1, 1, 0, 0, 8
'Duffy Waldorf Misses Chance for 59 in Toshiba Classic', 2, 0, 2, 0, 9
'Top 25 Capsules', 0, 0, 0, 0, 3
'Should You Watch Fox\xe2\x80\x99s \xe2\x80\x98Minority Report\xe2\x80\x99?', 0, 0, 0, 0, 6
'Two dead in Germany train crash', 1, 1, 0, 0, 6
'Rain, Ice Storms Batter Central U.S., Deaths in Texas, Kansas', 1, 1, 0, 0, 10
'Amazon starts Black Friday early', 1, 0, 0, 1, 5
"There's a Holiday Gift to Make Every TV Fan Happy"", 0, 0, 0, 0, 10
'Posthumous Pardon for Delaware Man Who Helped Slaves Escape in 1847', 1, 1, 0, 0, 11
'Julianne Michelle, Karl Reeves', 4, 0, 4, 0, 4
"VP Biden to Address Ukraine's Parliament During Kiev Visit"", 1, 0, 1, 0, 9
'Bond Villains: Can\xe2\x80\x99t Fault Their Drive', 0, 0, 0, 0, 6
'Fantasy Sports\xe2\x80\x99 Real Crime: Dehumanizing the Athletes', 0, 0, 0, 0, 7
'Euroleague Holders Real Stutter as Six Rivals Advance', 0, 0, 0, 0, 8
"Scientists, Ethicists Tackle Gene Editing's Ethics, Promise"", 0, 0, 0, 0, 7
'Record for Goal-King Vardy as Leicester Hold United', 5, 0, 2, 3, 8
'Column: DraftKings, FanDuel Wrong for Now, but on Right Side', 0, 0, 0, 0, 10
'Hurricane and Rainstorm Are Locked in a Dangerous Dance', 0, 0, 0, 0, 9
'D.C. United Clinches Playoff Spot', 2, 0, 0, 2, 5
"Oklahoma Sheriff's Exit Won't End Scrutiny of Agency"", 1, 1, 0, 0, 8
'Cyber Monday sales jump', 0, 0, 0, 0, 4
'Pakistan destroys drink and drugs haul', 1, 1, 0, 0, 6
'Militants Attack Hotel in Egypt\xe2\x80\x99s Sinai Peninsula, Killing at Least 7', 0, 0, 0, 0, 11
'Holiday Favorites and a Celebration of the New', 0, 0, 0, 0, 8
'New York Today: The Tipping Point', 2, 2, 0, 0, 6
'Know Your Risks, but Meat Still Isn\xe2\x80\x99t the Enemy', 0, 0, 0, 0, 9
'Relatives grieve Russian plane crash as investigators head to site', 0, 0, 0, 0, 10
'Men Do More at Home, but Not as Much as They Think', 0, 0, 0, 0, 12
'The Best-Selling Sports Books', 0, 0, 0, 0, 4
'Capitals’ Four-Goal Spurt Helps Topple the Avalanche ', 0, 0, 0, 0, 7
'Modi and Obama at Climate Talks', 2, 0, 2, 0, 6
'Klitschko Wants Heavyweight Rematch With Fury', 1, 0, 1, 0, 6
'Airstrike Hits Doctors Without Borders Hospital in Afghanistan', 1, 1, 0, 0, 8
'Police Stop Google Self-Driving Car for Going Too Slowly', 1, 0, 0, 1, 9
'California: Baby Giraffe Is Killed ', 0, 0, 0, 0, 5
"What's eating Portuguese voters?"", 0, 0, 0, 0, 4
'In Paris, Managing Humanity’s Relationship with Earth’s Climate Becomes Normal', 0, 0, 0, 0, 10
'Letters: \xe2\x80\x98Reclaiming Conversation\xe2\x80\x99', 0, 0, 0, 0, 3
'Burundi Opposition Asks U.N. to Send Peacekeepers Quickly', 2, 1, 0, 1, 8
'Another promise to act from Draghi', 1, 0, 1, 0, 6
'British Benefit Proposals Most Difficult in EU Talks-Chief Negotiator', 1, 1, 0, 0, 9
'4 Children, 1 Adult Killed in Interstate Crash', 0, 0, 0, 0, 8
'Good Nights', 0, 0, 0, 0, 2
'French police raid apartment, two killed', 0, 0, 0, 0, 6
'No Elevator Service at Carlsbad Caverns National Park', 0, 0, 0, 0, 8
'Enberg Says 2016 Will Be His Final Season in Padres Booth', 1, 0, 1, 0, 11
"Ed Sheeran Likes to Perform When He's Feeling Hung Over"", 2, 0, 2, 0, 10
"Federal Investigators Probe Busy Court Clerk's Office"", 0, 0, 0, 0, 7
"Cop Pays Thief's Tab for Stolen Birthday Cake Ingredients"", 0, 0, 0, 0, 9
'Local Sheriffs Oppose Moving Guantanamo Detainees to Colorado', 1, 1, 0, 0, 8
'German Court Declares Auschwitz Suspect Fit for Trial', 0, 0, 0, 0, 8
'Mercedes-Benz Recalls 126,000 Vehicles Over Problems With Airbags', 1, 0, 0, 1, 8
'Rick Nash Knows the Score: Rangers Pay Him to Do More', 2, 0, 2, 0, 11
'Trevor Noah\xe2\x80\x99s Debut as \xe2\x80\x98Daily Show\xe2\x80\x99 Host', 1, 0, 1, 0, 7
'\xe2\x80\x98Battling the Gods: Atheism in the Ancient World,\xe2\x80\x99 by Tim Whitmarsh', 2, 0, 2, 0, 11
'FBI Director Says No Credible Threat of Paris-Type Attack in U.S', 2, 1, 0, 1, 11
'Oldest US Park Ranger to Light White House Christmas Tree', 1, 1, 0, 0, 10
'UK Interest Rates Expected to Stay Low for Longer', 1, 1, 0, 0, 9
'Lawyer: Woman Denies Role in Killings of Connecticut Couple', 2, 0, 0, 2, 9
'As Head-Up Displays Become Common, Distraction Becomes an Issue', 0, 0, 0, 0, 9
'Study Cites Lower Standards in Law School Admissions', 3, 0, 0, 3, 8
"Penn State's Sandusky Settlements Now Total Nearly $93M"", 2, 1, 0, 1, 8
'When Dinner Proves Divisive: One Strategy, Many Dishes', 0, 0, 0, 0, 8
'1965: Rhodesia Claims Independence', 1, 1, 0, 0, 4
'Ground Broken in Chile for Giant Magellan Telescope', 1, 1, 0, 0, 8
'A $1,000 Day in New York City for $100', 3, 3, 0, 0, 9
'Israel Chemicals Suffers Third Quarter Profit Slip, to Transform UK Plant', 1, 1, 0, 0, 11
'Wild and Wonderful', 0, 0, 0, 0, 3
'Sociedad Discard Moyes and Turn to Eusebio', 2, 0, 2, 0, 7
'Border Play Center Provides Some Respite for Young Refugees', 0, 0, 0, 0, 9
'Donald Trump\xe2\x80\x99s Not-So-Fond Farewell on \xe2\x80\x98Saturday Night Live\xe2\x80\x99', 1, 0, 1, 0, 8
'Argentina readies for Sunday presidential run-off vote', 1, 1, 0, 0, 7
'China Plans to Upgrade Coal Plants', 1, 1, 0, 0, 6
"Ex-Indiana U. Student's Lawyer Says He's Horrified by Attack"", 0, 0, 0, 0, 9
'Oklahoma Governor Declares State of Emergency After Storms Hit State', 1, 1, 0, 0, 10
'Buffalo Wild Wings Pulls Ads With Comedian Who Lied About 9/11', 3, 0, 0, 3, 11
'IAC/InterActiveCorp Offers to Buy Angie\xe2\x80\x99s List', 0, 0, 0, 0, 6
'Review: \xe2\x80\x98Kill Floor,\xe2\x80\x99 a Drama About the Beef Dividing a Mother and Son', 0, 0, 0, 0, 13
'Brazil: River Polluted After Dam Burst', 0, 0, 0, 0, 6
"Rivals Unmoved by Carson's Complaints on Scrutiny of His Bio"", 0, 0, 0, 0, 10
'The Latest: Guatemala Ex-Leader Escorted to Jail', 1, 1, 0, 0, 7
'Millennials and Cutting the Cord', 0, 0, 0, 0, 5
"Trump: It's 'Beautiful' to Watch GOP Rivals Drop Out"", 0, 0, 0, 0, 9
'Cheese-Eating Job Creators', 0, 0, 0, 0, 3
'In Big Game, Rangers Slip on Home Ice', 0, 0, 0, 0, 8
'New York Today: Book Drop', 2, 2, 0, 0, 5
'Chartreuse: Holiday Greenery in a Cocktail Coupe', 0, 0, 0, 0, 7
'Germany Says Wants to Keep Schengen in Current Form', 1, 1, 0, 0, 9
'Review: Naomi Wallace\xe2\x80\x99s \xe2\x80\x98Night Is a Room\xe2\x80\x99 Unfurls a Complex Reunion', 1, 0, 1, 0, 11
'Four-Way Tie in Mexico', 1, 1, 0, 0, 4
'Woman Rescued From Oregon Mountain After Husband Plunges to Death', 0, 0, 0, 0, 10
'Texas Homecoming Brings Displays of Full-Frontal Corsages', 1, 1, 0, 0, 7
'200,000 Vehicles in Germany Affected by Latest VW Findings: Ministry', 1, 1, 0, 0, 10
'Siemens Sees Return to Growth After Year of Upheaval', 1, 0, 0, 1, 9
'Liberal Canadian Government Drops Niqab Appeal', 6, 0, 0, 6, 6
'A Seattle Start-Up Studio, Pioneer Square Labs, Starts With Prominent Backers', 1, 1, 0, 0, 11
'Prosecutor: Peru Army Officer Got $10K Per Cocaine Planeload', 1, 1, 0, 0, 9
"Europeans Should Be Horrified by Migrant Deaths-ECB's Draghi"", 1, 0, 1, 0, 8
'Obama Issues Rare Apology Over Bombing of Doctors Without Borders Hospital in Afghanistan', 2, 1, 1, 0, 13
'Campbell Soup Recalls 355,000 Cans of SpaghettiOs', 2, 0, 0, 2, 7
'China\'s Jinping hails ""profound friendship"" with UK', 2, 1, 1, 0, 7
'Kenya Official: Extremist Suspect Grabs Gun, Attempts Escape', 1, 1, 0, 0, 8
"Texas Jury Convicts Surgeon in Pathologist's Murder-For-Hire"", 1, 1, 0, 0, 7
'South African Court Lifts 2009 Ban on Domestic Rhino Horn Trade', 0, 0, 0, 0, 11
'HUD Homes at Half Price', 1, 0, 0, 1, 5
'Pope drops by homeless shelter', 0, 0, 0, 0, 5
'Making It Harder to Prove White-Collar Crimes', 0, 0, 0, 0, 7
'Paul Ryan’s Whiskers Prompt Look at House Precedent', 1, 0, 1, 0, 8
'Paid Notice: Memorials USDAN, NATHANIEL (DUKE) THE BOARD OF DIRECTORS AND THE MEMBERS OF QUAKER RIDGE GOLF CLUB ARE SADDENED BY THE PASSING OF OUR BELOVED FRIEND AND ESTEEMED MEMBER OF MORE THAN 60 YEARS, DUKE USDAN. WE EXTEND OUR HEARTFELT SYMPATHY TO HIS WIFE TARA AND THE ENTIRE FAMILY IN THEIR TIME OF SORROW. MARC FRIEDMAN, PRESIDENT 1', 3, 0, 1, 2, 59
'Germany Increases Security Staff to Manage Refugee Influx', 1, 1, 0, 0, 8
"ACC's Complicated Bowl Picture Starting to Take Shape"", 0, 0, 0, 0, 8
'Every day is Black Friday now at Amazon', 1, 1, 0, 0, 8
'The Chore Wars: Tales of Houses Divided', 0, 0, 0, 0, 7
'More Than Half of Entire Species of Saigas Gone in Mysterious Die-Off', 0, 0, 0, 0, 12
'1915: Goal of American Red Cross', 3, 0, 0, 3, 6
'Philly Businesses Wary, Excited by Prospect of Papal Crowds', 1, 1, 0, 0, 9
'City Room, a Blog With a Broad Mandate, Is Retiring', 0, 0, 0, 0, 10
'AR Capital to Stop Creating Nontraded REITs', 0, 0, 0, 0, 7
"E. Coli Outbreak Tests Chipotle's Vow to Track Ingredients"", 0, 0, 0, 0, 9
'Review: Madboots Dance Ignores Gender Boundaries', 0, 0, 0, 0, 6
'Vast Majority of Chicago Teachers Ready to Strike: Reports', 1, 1, 0, 0, 9
'Ole Miss Removes State Flag That Features Confederate Emblem', 0, 0, 0, 0, 9
'The Hard-Working Italian Origins of the Rockefeller Center Christmas Tree', 0, 0, 0, 0, 10
'Belgium alert status raised', 1, 1, 0, 0, 4
'CNBC Sets Qualification Rules for Prime-Time U.S. Republican Debate', 2, 1, 0, 1, 9
'Sumner Redstone Is Mentally Capable, Says Viacom Board Member', 5, 0, 2, 3, 9
'\xe2\x80\x98Everything, Everything,\xe2\x80\x99 by Nicola Yoon', 2, 0, 2, 0, 5
'Racial Tension and Protests on Campuses Across the Country', 0, 0, 0, 0, 9
'Fantasy Football Week 2: Waiver Wire Picks', 0, 0, 0, 0, 7
'Review: In \xe2\x80\x98The Good Dinosaur,\xe2\x80\x99 a Reptile Tends to His Human Pet', 0, 0, 0, 0, 12
'Man Who Gave Psychics $718,000 \xe2\x80\x98Just Got Sucked In\xe2\x80\x99', 0, 0, 0, 0, 9
'Tiny Eibar Looking to Play David to Real Goliath', 1, 0, 1, 0, 9
'A Panic Button for the Phone', 0, 0, 0, 0, 6
'Waiting for the Republican Shakeout ', 0, 0, 0, 0, 5
'Exxon Mobil Investigated for Possible Climate Change Lies by New York Attorney General', 10, 2, 0, 8, 13
'Sharp Expects First-Half Operating Loss Due to Falling Prices for Smartphone Displays', 0, 0, 0, 0, 12
'Grim Search in the Aftermath of a Flood', 0, 0, 0, 0, 8
'Indonesia Says Australia Forced Back Asylum Seekers', 2, 2, 0, 0, 7
"China lawyer denounces son's asylum bid"", 1, 1, 0, 0, 6
'Canada Knows How to Respond to a Refugee Crisis', 1, 1, 0, 0, 9
'A Taqueria\xc2\xa0Holds an Immigrant Family Together', 0, 0, 0, 0, 6
'What to Watch Tonight', 0, 0, 0, 0, 4
'3 Major California Wildfires Remain Largely Out of Control', 0, 0, 0, 0, 9
"About 43 Percent of Islamic State's Oil Revenues Affected by U.S.-Led Strikes: Dunford"", 1, 0, 1, 0, 13
'Beijing Air Pollution Reaches Hazardous Levels', 1, 1, 0, 0, 6
'Paid Notice: Deaths POLIO, JOHN', 0, 0, 0, 0, 5
'Oklahoma Driver\xe2\x80\x99s Family Members Speak', 1, 1, 0, 0, 5
'Tunnel to Grand Central Rolling Along at $1M Per Foot', 0, 0, 0, 0, 10
'No Second Spinner for Australia in Adelaide', 2, 2, 0, 0, 7
'EU Member States Agree Higher Fines for Firms for Privacy Violations', 1, 0, 0, 1, 11
'Martin O’Malley Receives Support From Obama’s Finance Circle', 1, 0, 1, 0, 8
'6-Year-Old Boy Fatally Shoots 3-Year-Old Brother in Chicago', 1, 1, 0, 0, 8
'Carly Fiorina Raised $6.8 Million This Summer, Topping Previous Fund-Raising', 2, 0, 2, 0, 10
'Chicago Gun Laws Not as Strict as They Once Were', 1, 1, 0, 0, 10
'Slovenia Says Does Not Plan to Limit the Entry of Migrants', 1, 1, 0, 0, 11
'Factories Still Struggling as U.S. Rate Hike Looms', 0, 0, 0, 0, 8
'Joyce Mitchell, Ex-Prison Worker, Is Told to Pay for Damage Done in Breakout', 2, 0, 2, 0, 13
'NATO Unveils Plans to Grow, Drawing Fury and Threats From Russia', 2, 1, 0, 1, 11
'Kevin Love Is Back With Cavs and More Determined', 2, 0, 2, 0, 9
"New Still Added as Part of Maker's Mark Expansion"", 0, 0, 0, 0, 9
'Arizona Shooting Victim Remembered for Uplifting Personality', 0, 0, 0, 0, 7
'How Donald Trump Leverages America\xe2\x80\x99s Fault Lines', 2, 0, 2, 0, 7
'The Morning Agenda: The Privatization of the Justice System', 0, 0, 0, 0, 9
'Billions of People Depend on Water From Shrinking Snowpacks', 2, 0, 0, 2, 9
"Electrocomponents' Reorganisation Plan Lifts Shares"", 0, 0, 0, 0, 5
"McDonald's Stock Hits Record High as Turnaround Takes Hold"", 0, 0, 0, 0, 9
'Clues to U.S. Relationships Can Be Seen in U.N. Body Language', 2, 1, 0, 1, 11
'Promoting Environmental Awareness Among Practicing Hindus', 0, 0, 0, 0, 6
'Finding the Right \xe2\x80\x98Nutcracker\xe2\x80\x99 for You and Yours', 0, 0, 0, 0, 8
'Girl Testifies Against Parents in Arizona Imprisonment Case', 1, 1, 0, 0, 8
'42nd Street, Then and Now', 0, 0, 0, 0, 5
'6 Arrested in Air France Fracas That Sent Managers Fleeing', 0, 0, 0, 0, 10
'A Philharmonic Menu of Young Composers', 0, 0, 0, 0, 6
"Putin 'fully mobilized' to face Turkey: Kremlin"", 2, 1, 1, 0, 7
'Facebook to Appeal a Belgian Court\xe2\x80\x99s Ruling on Data Privacy', 1, 0, 0, 1, 10
'China Says Taiwan Election Putting Off Tourists From Visiting', 2, 2, 0, 0, 9
'Broncos, Seahawks, Packers Colts No Longer Elite', 0, 0, 0, 0, 7
'Review: Jos\xc3\xa9 Lim\xc3\xb3n International Dance Festival at the Joyce Theater', 0, 0, 0, 0, 10
'Sri Lanka Says It Will Quickly Process Tamil Prisoners', 2, 2, 0, 0, 9
'This Halloween, Be the Talk of the Party', 0, 0, 0, 0, 8
'Energy shares power stocks', 0, 0, 0, 0, 4
'Pharrell Celebrates His Career as a ‘Weirdo’ at a Q. & A. Session at Town Hall', 1, 0, 1, 0, 16
'Electric Series Plans Driverless Championship', 0, 0, 0, 0, 5
'Volvo Car Group Sales Hit Record High in November', 1, 0, 0, 1, 9
"NTSB: Recall System for Faulty Tires Is 'Broken'"", 0, 0, 0, 0, 8
"Australia Weather Bureau Won't Comment on Cyberattack Report"", 3, 0, 0, 3, 8
'Spend New Year’s Day With ‘Sherlock’', 0, 0, 0, 0, 6
"Yellen: U.S. economy 'performing well'"", 1, 1, 0, 0, 5
'Teaching Peace in Elementary School', 0, 0, 0, 0, 5
"'Truly Sad' Pettersen Sorry for Lack of Sportsmanship"", 0, 0, 0, 0, 8
'Total Says Expects Yamal LNG to Get Funding by Year-End-RIA', 0, 0, 0, 0, 10
'SeaWorld, Busch Gardens Ticket Prices Increase', 0, 0, 0, 0, 6
'Tourism-Related Stocks Drag on FTSE 100', 0, 0, 0, 0, 6
'Israel to Begin Enlisting HIV-Positive Soldiers', 1, 1, 0, 0, 6
'Oh, Deer: Vermont Hotel to Serve $75 Road Kill-Inspired Menu', 1, 1, 0, 0, 10
'Death Penalty to Be Sought in 2-State Slaying Spree', 0, 0, 0, 0, 9
'LivingSocial Offers a Cautionary Tale to Today\xe2\x80\x99s Unicorns ', 0, 0, 0, 0, 8
'Carney Continues to See Strong UK Domestic Demand', 1, 0, 1, 0, 8
'Paris attacks likely to bruise tourism', 1, 1, 0, 0, 6
'Review: In \xe2\x80\x98The Keeping Room,\xe2\x80\x99 3 Women Under Siege in the Civil War', 0, 0, 0, 0, 13
'Hamilton Just Wants to Have Fun Now', 1, 0, 1, 0, 7
'Some Conservatives Quietly Campaign Against Ryan for Speaker', 1, 0, 1, 0, 8
"'Free!:' Aging Mobster Acquitted in 1978 'Goodfellas' Heist"", 0, 0, 0, 0, 8
'Gov. Christie Doesn\xe2\x80\x99t Want Your Vote', 1, 0, 1, 0, 6
'Obama: No Credible Intelligence About Plot Against US', 0, 0, 0, 0, 8
'Colorado Victims Identified as Iraq Veteran and Woman From Hawaii', 5, 2, 0, 3, 10
'Flash Was Detected as Russian Jet Broke Apart, U.S. Military Officials Say', 1, 1, 0, 0, 12
"Jimmy Buffet's Margaritaville Resort Opens on Florida Beach"", 3, 2, 1, 0, 8
'Fresh Anguish for Germanwings Volunteers Caught in Paris Stadium', 2, 2, 0, 0, 9
'How I Learned to Stop Worrying and Love A.I.', 0, 0, 0, 0, 9
'Daily Report: Tech Culture Across Continents, From Hacker to Satire', 0, 0, 0, 0, 10
'Mary Karr Thinks You Shouldn\xe2\x80\x99t Google Yourself', 4, 0, 2, 2, 7
'10 Unconventional Halloween Diversions', 0, 0, 0, 0, 4
"Russian Aviation Source on Egypt Crash: Examining Version of 'Something Stowed' on Board"", 1, 1, 0, 0, 13
'In Japan, a Couple Is of Two Minds About Presents', 0, 0, 0, 0, 10
'When Gold Isn\xe2\x80\x99t Worth the Price', 0, 0, 0, 0, 6
'News Headlines Inspire Adult Halloween Costumes', 0, 0, 0, 0, 6
'Missouri: Judge Strikes Down Law Increasing St. Louis’s Minimum Wage ', 0, 0, 0, 0, 10
'Carmelo Anthony Breaks Out in Knicks\xe2\x80\x99 Road Win', 4, 0, 4, 0, 8
'Water Conservation Order Is Extended in California', 1, 1, 0, 0, 7
'Your Weekend Briefing: Mali, Brussels, Chicago', 1, 1, 0, 0, 6
'AP Interview: US Must Address Waste, Fraud in Afghan Aid', 1, 1, 0, 0, 10
'Columbus Beat D.C. to Secure First-Round Playoff Bye', 3, 3, 0, 0, 8
'Biden \xe2\x80\x98Proud\xe2\x80\x99 of Debate Candidates', 1, 0, 1, 0, 5
'The Latest: Police Say Speed Was a Factor in Bus Crash', 0, 0, 0, 0, 11
'Review: In \xe2\x80\x98Hotel Transylvania 2,\xe2\x80\x99 Dracula Yearns for a Little Monster of a Grandson', 1, 1, 0, 0, 14
'Removing the Ability to Sue', 0, 0, 0, 0, 5
'Ben Carson Sinks on Doubts About His Foreign Policy', 3, 0, 3, 0, 9
'Does Exercise Slow the Aging Process?', 0, 0, 0, 0, 6
'Review: In \xe2\x80\x98Going Away,\xe2\x80\x99 Everyone Is Leaving', 0, 0, 0, 0, 7
'Daniel Murphy Hit Them High and Far, but Couldn\xe2\x80\x99t Reach Down Low', 2, 0, 2, 0, 12
'Statement Suits at a White-Shoe Law Firm', 0, 0, 0, 0, 7
'\xe2\x80\x98I Will Be Vindicated,\xe2\x80\x99 Silver Says', 0, 0, 0, 0, 6
'Coe Quits Ambassadorial Role With Nike', 0, 0, 0, 0, 6
"Fed's Tarullo Says Worried About Too-Low Inflation"", 0, 0, 0, 0, 7
'Catify to Satisfy: Home Enhancement Tips for Cat Owners', 0, 0, 0, 0, 9
'Deadly Building Collapse in Manhattan', 1, 1, 0, 0, 5
'In Ancient DNA, Evidence of Plague Much Earlier Than Previously Known', 0, 0, 0, 0, 11
'Obama Urges Congress to Pass Budget Deal Soon', 3, 0, 0, 3, 8
'Berkshire Hathaway Still Has Cash to Invest, Buffett Says', 3, 0, 1, 2, 9
'Vintage Art Jackets With Cult Appeal', 0, 0, 0, 0, 6
'Names of 18 Deceased Officers Added to NYPD Memorial Wall', 0, 0, 0, 0, 10
'Carly Callahan, Justin Bristol', 3, 0, 3, 0, 4
'Tito King\xe2\x80\x99s Kitchen and Bago Join a Filipino Feast in the East Village', 3, 3, 0, 0, 13
'New York Military Academy’s Sudden Closing, After 126 Years', 3, 0, 0, 3, 9
"Doubters Question 'Strange' Stock Market Rebound"", 0, 0, 0, 0, 6
"Remember the Alamo Because It's Getting a Facelift"", 0, 0, 0, 0, 8
'When Cupid Is a Prying Journalist', 0, 0, 0, 0, 6
'Tyson Recalls Chicken Wings on Complaints They Smelled Bad', 4, 0, 0, 4, 9
'Cabela’s, Under Pressure, May Consider Offers ', 0, 0, 0, 0, 6
'Charlie Crist, Ex-Governor of Florida, Announces Run for Congress', 2, 0, 1, 1, 9
'When Army Black Knights Air It Out, the Play Develops at 4,000 Feet', 4, 0, 0, 4, 13
'Diver Removes Famous Fake Skeletons From Colorado River', 2, 2, 0, 0, 8
'Paid Notice: Deaths KROHN, BARBARA EHRENWALD OF NEW YORK CITY', 4, 3, 1, 0, 10
'Middle School Kids Charged With Sending Porn of Classmates', 0, 0, 0, 0, 9
'The Hidden Bars of Sydney', 1, 1, 0, 0, 5
'How to Explain the Rivalries Among Women', 0, 0, 0, 0, 7
'With a Home or Without, Children\xe2\x80\x99s Schooling Is Front and Center', 0, 0, 0, 0, 11
'Review: In Fellipe Barbosa\xe2\x80\x99s \xe2\x80\x98Casa Grande,\xe2\x80\x99 a Teenager Awakens to His Father\xe2\x80\x99s Financial Ruin and More', 0, 0, 0, 0, 16
'Union to Detail Strike Plans at Lufthansa on Friday', 1, 0, 0, 1, 9
'Series of Highway Shootings Unnerves Phoenix', 1, 1, 0, 0, 6
'A Drone\xe2\x80\x99s Vantage Point of a Melting Greenland', 1, 1, 0, 0, 8
'Japan Ready to Submit Proposal for Australia Submarine Deal', 2, 2, 0, 0, 9
'At 100, the Abrons Arts Center Revels in the Risky', 3, 0, 0, 3, 10
'Review: Trevor Noah Keeps \xe2\x80\x98Daily Show\xe2\x80\x99 DNA in Debut', 2, 0, 2, 0, 9
'Advocates of Israel Boycott Dismayed by Colbert\xe2\x80\x99s Hummus Ad', 1, 1, 0, 0, 9
'UEFA Seeks Quick Ruling', 1, 0, 0, 1, 4
'Bournemouth Striker Blames Pitches for Injuries', 1, 1, 0, 0, 6
'Lots of Trees to Hug: Study Counts 3 Trillion Trees on Earth', 1, 1, 0, 0, 12
'The House of Lords: The Constitutional Dinosaur Britain Can\xe2\x80\x99t Kill', 1, 1, 0, 0, 10
'Jeb Bush\xe2\x80\x99s New Show of Confidence Is Failing to Connect With Republicans', 0, 0, 0, 0, 12
"Egyptian PM Says No 'Irregular' Activities Believed Behind Crash"", 0, 0, 0, 0, 9
'4.7 Magnitude Earthquake Among 7 Recorded in Oklahoma', 1, 1, 0, 0, 8
'Keeping the Poor Out of Jail', 0, 0, 0, 0, 6
'First Data Prices IPO at $16 Per Share: Source', 0, 0, 0, 0, 9
"Valencia's Negredo Has Surgery for Acute Appendicitis"", 0, 0, 0, 0, 7
'Mets’ Sudden Crowd Comes Up Empty ', 0, 0, 0, 0, 6
"Monchi's Method: The Soccer Man Everyone Wants in Europe"", 1, 1, 0, 0, 9
'Taliban Leader Mullah Mansour Wounded in Shootout: Sources', 2, 0, 2, 0, 8
'Learning to Forgive After War', 0, 0, 0, 0, 5
'From Racing to Rum, Things to Know About Year-End Tax Breaks', 0, 0, 0, 0, 11
'Wine and Tapas? Taco Bell to Serve Them in Chicago', 3, 1, 0, 2, 10
'The Mexican Bulldog Lets the Mixing Take Place as You Sip', 0, 0, 0, 0, 11
'Stocks smile at Fed rate statement', 1, 0, 0, 1, 6
'Artificial Patients, Real Learning', 0, 0, 0, 0, 4
'Ford Escape Updates Onboard Communications for 2016', 0, 0, 0, 0, 7
'Parents Spending Less on Back-to-School Season Despite Growing Lists of Supplies', 0, 0, 0, 0, 11
"Jolie Pitt Tapped Grief Over Mother's Death in 'By The Sea'"", 2, 0, 2, 0, 11
'Shirt Photos Offer Sometimes Awkward Moments of APEC Unity', 2, 0, 0, 2, 9
'Bob Ross\xe2\x80\x99s Strange Afterlife', 0, 0, 0, 0, 4
'Taliban Appoint Top Official to Qatar Political Office', 0, 0, 0, 0, 8
'Spain Linchpin Fabregas Sure Form Will Improve', 1, 1, 0, 0, 7
'Readers Will Rule, Says The Times, So Don’t Be Shy', 0, 0, 0, 0, 10
'A Sotheby\xe2\x80\x99s Folk Art Auction With an Edge', 0, 0, 0, 0, 8
'Going Mausoleum Hopping in Brooklyn', 1, 1, 0, 0, 5
'Singularly Special Holiday Gifts', 0, 0, 0, 0, 4
'Sonia Manzano\xe2\x80\x99s \xe2\x80\x98Becoming Maria\xe2\x80\x99 and Margarita Engle\xe2\x80\x99s \xe2\x80\x98Enchanted Air\xe2\x80\x99', 2, 0, 2, 0, 9
'The Scout Who Loved Daniel Murphy\xe2\x80\x99s Swing Before Anyone Else', 1, 0, 1, 0, 10
'Mariners Hire Scott Servais as New Manager', 3, 0, 2, 1, 7
'Mayor of Juneau, Alaska, Died of Natural Causes', 0, 0, 0, 0, 8
'Meat Consumption by the Numbers', 0, 0, 0, 0, 5
"Argentina's candidates cast votes to succeed Fernandez"", 1, 0, 1, 0, 7
'Spanish Clubs Make Impressive Champions League Start', 0, 0, 0, 0, 7
'Doctors Without Borders Says It Is Leaving Kunduz After Strike on Hospital', 1, 1, 0, 0, 12
"Syrian family's new challenges in the U.S."", 1, 1, 0, 0, 7
'Rise, an Unpretentious Gay Bar, Opens in Hell\xe2\x80\x99s Kitchen', 0, 0, 0, 0, 9
'No ruling yet on fantasy sports feud', 0, 0, 0, 0, 7
'Refreshed Bayern Ready for First Test of the Season', 0, 0, 0, 0, 9
"Dalai Lama Says Climate Change Destroying Tibet's 'Roof of the World'"", 2, 0, 2, 0, 11
"Ray Stymies Dodgers Through 6 in D-Backs' 8-0 Win"", 0, 0, 0, 0, 9
'Here We Go Again: Paris Attacks May Renew Encryption Debate', 1, 1, 0, 0, 10
'Obama Says \xe2\x80\x98Enough Is Enough\xe2\x80\x99 After Colorado Shooting', 1, 0, 1, 0, 8
'Police Say Toddler Found Alone Days After Grandmother Dies', 0, 0, 0, 0, 9
'Lawyer: US Needs to Present Better Data in Encryption Debate', 1, 1, 0, 0, 10
'Chile Football Chief Served Subpoena, Takes Unexpected Medical Leave', 1, 1, 0, 0, 9
'$1,250,000 Homes in California, Kansas and Delaware', 2, 2, 0, 0, 7
'Newton Throws 5 TDs, Unbeaten Panthers Top Redskins 44-16', 1, 0, 1, 0, 9
'Review: Yefim Bronfman Plays Prokofiev at Carnegie, Channeling Rage and Grief', 4, 0, 4, 0, 11
'For Paolo Sorrentino\xe2\x80\x99s \xe2\x80\x98Youth,\xe2\x80\x99 David Lang Strives for an Unusually Emotional Melody', 2, 0, 2, 0, 12
'Parisian Grieving Slain Wife Sends Open Letter to IS', 0, 0, 0, 0, 9
'UK Launches Inquiry Into Vehicle Type Approval After VW Scandal', 1, 1, 0, 0, 10
'The Doctor Who Saved 100,000 Eyes', 0, 0, 0, 0, 6
'Migrants’ Attempts to Enter U.S. via Mexico Stoke Fears About Jihadists', 2, 2, 0, 0, 11
'How Texas Teaches History', 0, 0, 0, 0, 4
'Gains for New York, and a Real Estate Behemoth, in the Stuyvesant Town Sale', 3, 3, 0, 0, 14
'Death Penalty Repeal Officially on Hold Until 2016 Election', 0, 0, 0, 0, 9
'Thinking Critically: Reading and Writing Culture Reviews', 0, 0, 0, 0, 7
'Chilean Mom Restricted Access to Baby for Smoking Marijuana', 0, 0, 0, 0, 9
'Wall Street steady ahead of holiday', 0, 0, 0, 0, 6
'Pulling Off Fendi\xe2\x80\x99s Improperly Placed Eyeliner', 0, 0, 0, 0, 6
'New Technique Can Classify a Fingerprint as Male or Female', 0, 0, 0, 0, 10
"Van Gaal 'Sick' of Questions About Rooney's Struggles"", 2, 0, 2, 0, 8
'Erica Jong\xe2\x80\x99s \xe2\x80\x98Fear of Dying\xe2\x80\x99', 2, 0, 2, 0, 5
'Protesters Gather for Thanksgiving Meal in Minneapolis', 1, 1, 0, 0, 7
'Migrants at British RAF Base on Cyprus Given Asylum Deadline', 0, 0, 0, 0, 10
'Review: In \xe2\x80\x98The Seedbed,\xe2\x80\x99 an Uneasy Marital Truce Frays Over Dinner', 0, 0, 0, 0, 11
'The Top 10 Audiobooks on Audible.com', 0, 0, 0, 0, 6
'Cover-Up in Chicago', 1, 1, 0, 0, 3
'Guests at Chanel Spring 2016 Collection', 0, 0, 0, 0, 6
'Visiting Kunduz, a Taliban Target, Afghan Leader Urges Security Overhaul', 1, 0, 0, 1, 10
'Islanders Edge Predators', 0, 0, 0, 0, 3
"Jolie Pitt Turns Grief Over Mom's Death Into 'By the Sea'"", 2, 0, 2, 0, 11
"Paid Notice: Memorials HARNETT, THE HONORABLE BERTRAM HARNETT WAS ONE OF THE FOUNDING MEMBERS OF CHILDREN'S MEDICAL FUND AND CHAIRMAN EMERITUS. HE HELPED COUNTLESS CHILDREN IN NEED AND WILL BE GREATLY MISSED. 1"", 2, 0, 2, 0, 33
'Review: \xe2\x80\x98Commedia Rapunzel,\xe2\x80\x99 With a Bit of Seasonal Spice', 0, 0, 0, 0, 9
'Credit Suisse Cuts Forecast for Global Household Wealth Growth', 0, 0, 0, 0, 9
'NY Lawmaker Who Lied to FBI Gets House Arrest After Cancer Diagnosis', 1, 0, 0, 1, 12
'Thai PM Says 4G Auction Funds Will Be Spent on Infrastructure, Farmers', 0, 0, 0, 0, 12
'Rolls Royce hit by Asia turbulence', 2, 1, 1, 0, 6
'Astronauts Needed: NASA Wants to Make Mars Your Corner Office', 1, 0, 0, 1, 10
"Gender Fluidity and Family Love Star in 'About Ray'"", 0, 0, 0, 0, 9
'WHO Removes Nigeria From List of Polio-Endemic Countries', 1, 1, 0, 0, 8
'Margaret Keane of Synchrony Financial: When Hardship Informs Leadership', 2, 0, 2, 0, 9
'Review: \xe2\x80\x98The Armor of Light\xe2\x80\x99 Follows 2 Unlikely Allies Against Gun Violence', 0, 0, 0, 0, 12
'Bridgestone to Buy Pep Boys for $835 Million', 1, 0, 0, 1, 8
'Hillary Clinton Bets on Future With Spending Spree to Build Campaign Infrastructure', 2, 0, 2, 0, 12
'Justin Bieber Storms Out of a Concert in Norway', 3, 1, 2, 0, 9
'Review: \xe2\x80\x98All Things Must Pass\xe2\x80\x99 Tells Story of Tower Records', 0, 0, 0, 0, 10
'Lab-Grown Vocal Cords Offer Hope of Treating Voice Disorders', 0, 0, 0, 0, 9
'Romanian PM Name Yet to Emerge, Further Talks Expected Next Week', 0, 0, 0, 0, 11
'God Actor Morgan Freeman Seeks Answers in Jerusalem', 3, 1, 2, 0, 8
'Police Say Man Set His Father on Fire', 0, 0, 0, 0, 8
'U.N. Agreement Will Allow Satellite Tracking of Planes ', 1, 0, 0, 1, 8
'U.S. Business Inventories Rise; Third-Quarter Growth Likely to Be Raised', 1, 1, 0, 0, 10
'Newark Launching Community Schools With Facebook Money', 1, 1, 0, 0, 7
'\xe2\x80\x98Thirteen Ways of Looking,\xe2\x80\x99 by Colum McCann', 2, 0, 2, 0, 7
'Fiji Try? Remind Me What Happened Please-Warburton', 1, 1, 0, 0, 7
'Rangers Respond to Coach With Demolition of Sharks', 0, 0, 0, 0, 8
'Review: \xe2\x80\x98India\xe2\x80\x99s Daughter\xe2\x80\x99 Explores a Gang Rape and Its Galvanizing Aftermath', 0, 0, 0, 0, 11
"Malaysia's Image Needs Restoring, Says PM's Brother"", 0, 0, 0, 0, 7
'Should Voting Be Mandatory?', 0, 0, 0, 0, 4
'\xe2\x80\x98Out of Darkness,\xe2\x80\x99 by Ashley Hope P\xc3\xa9rez', 3, 0, 3, 0, 7
"George Lucas to New 'Star Wars' Film: I'm Your Divorced Father"", 2, 0, 2, 0, 11
'Marlon James Wins Man Booker Prize', 6, 0, 6, 0, 6
'Tribute to Lennon at Symphony Space Endures in 35th Year', 1, 0, 1, 0, 10
'European Car Market Grows, but Expansion Is Slowing ', 0, 0, 0, 0, 8
'U.S. GDP Growth Raised for Third Quarter', 1, 1, 0, 0, 7
'Pope Francis Opens Vatican Synod on Family Issues', 1, 0, 1, 0, 8
'Bangladesh Pushes Back as Warnings of ISIS Expansion Gather Steam', 2, 1, 0, 1, 10
"In Erdogan's Turkey, Dissent May Be Bad for Business"", 0, 0, 0, 0, 9
'Oil prices help lift stocks', 0, 0, 0, 0, 5
'FMC Seeks Growth Outside Main U.S. Market', 2, 1, 0, 1, 7
'Mars Shows Signs of Having Flowing Water, Possible Niches for Life, NASA Says', 1, 0, 0, 1, 13
'Ferrari Gets 2.5 Billion Euros in Funding', 0, 0, 0, 0, 7
'Local Government Cuts Hit Mitie Healthcare Business', 3, 0, 0, 3, 7
'E.L.L. Practice | Setting and Reaching Goals, in Soccer and in Life', 0, 0, 0, 0, 12
"Ryan's Hometown Looks for Him to Bridge Partisan Divide"", 0, 0, 0, 0, 9
'UN Investigator Urges Myanmar to Allow Muslims to Vote', 2, 1, 0, 1, 9
'Senior Secret Service Official Proposed Embarrassing a Critic in Congress', 1, 0, 0, 1, 10
'Giving Old Phones to Charity', 0, 0, 0, 0, 5
'Israelis Condemn E.U. Labeling Move', 0, 0, 0, 0, 5
'Indiana Man Admits Taking Brain Samples From Medical Museum', 1, 1, 0, 0, 9
'Q&A: Driven by Protests, US Minimum Wage Vaults Onto Agenda', 1, 1, 0, 0, 10
'Review: In \xe2\x80\x98The Improbability of Love\xe2\x80\x99 by Hannah Rothschild, an Art-World Caper', 1, 0, 1, 0, 12
'Subway to Transition to Meat Raised Without Antibiotics', 0, 0, 0, 0, 8
'Cola, a New Start-up, Introduces Ways to Do More in Text Messages', 0, 0, 0, 0, 12
"Attorney Seeks Surveillance Video Related to Girl's Death"", 0, 0, 0, 0, 8
'Cheap gas has travelers going the distance', 0, 0, 0, 0, 7
'When Death Comes, and the Obituary Quickly Follows', 0, 0, 0, 0, 8
'Does Europe Need a New Surveillance System?', 0, 0, 0, 0, 7
'Turn Off Your Devices? Sometimes Plays Turn Them On', 0, 0, 0, 0, 9
'Domestic Violence Charges Against Greg Hardy Are Erased', 2, 0, 2, 0, 8
"Bad Weather Delays Recovery of Climber's Body"", 0, 0, 0, 0, 7
'Fixing Credit Report Errors Online Gets Added Heft', 0, 0, 0, 0, 8
'\xe2\x80\x98A Good Friend Is Better Than a Noncommittal Lover\xe2\x80\x99: Readers Respond to a Dating Dilemma', 0, 0, 0, 0, 15
'Evening Clutches for Holiday Parties', 0, 0, 0, 0, 5
'Past Extremist Attacks in Western Europe', 2, 2, 0, 0, 6
'A Bit of Housekeeping Removes a Confederate Flag in a U.S. Capitol Building', 1, 1, 0, 0, 13
'China diplomats shot in Philippines', 2, 2, 0, 0, 5
'What’s Going On in This Picture? | Nov. 30, 2015', 0, 0, 0, 0, 10
'Driven | 2016 Mercedes-Maybach S600', 0, 0, 0, 0, 5
'Kurt Busch Hopeful Phoenix Finish Earns Him Title Chance', 2, 0, 2, 0, 9
'Drone Carrying Drugs, Contraband Seized at Oklahoma Prison', 2, 2, 0, 0, 8
'Scott Storms to Early Lead in Melbourne', 3, 1, 2, 0, 7
'Premature Babies Study Raises Debate Over Risks and Ethical Consent', 0, 0, 0, 0, 10
'The Promise of Genetic Testing in Medicine', 0, 0, 0, 0, 7
'Pope blesses meal at Catholic charity lunch', 0, 0, 0, 0, 7
'Ward Suggests Full-Time Officials as a Fix', 0, 0, 0, 0, 7
"Jay Leno Revisits 'Tonight' for Monologue"", 2, 0, 2, 0, 6
'South Africa Campuses Face Funding Shortage After Tuition Fee Freeze', 0, 0, 0, 0, 10
'Navy Chief: Service Considering Expanding Paternity Leave', 1, 0, 0, 1, 7
'Denver Art Museum Strengthens Commitment to Native American Work', 1, 1, 0, 0, 9
'Tighter security for Thanksgiving travel', 0, 0, 0, 0, 5
'2016 Primary Calendar and Results', 0, 0, 0, 0, 5
'The Hustle of Publishing Art News in the Postprint Era', 0, 0, 0, 0, 10
'It\xe2\x80\x99s My Nervous System That\xe2\x80\x99s Lazy', 0, 0, 0, 0, 6
'The Anti-Smart Phone', 0, 0, 0, 0, 3
"Man Charged in Connection to 1994 Theft of O.J. Simpson's Heisman Trophy"", 0, 0, 0, 0, 12
'A Five-Bedroom Country House Outside Prague', 1, 1, 0, 0, 6
'England Name Opponents for November 2016 Internationals', 1, 1, 0, 0, 7
'Republican Campaign Rhetoric Has Muslim-Americans on Edge', 0, 0, 0, 0, 7
'Seeking a Cancer-Free World', 0, 0, 0, 0, 4
'The Discerning Bartender\xe2\x80\x99s Halloween Playlist', 0, 0, 0, 0, 5
"Liverpool's Benteke to Miss Bournemouth Tie With Knee Injury"", 0, 0, 0, 0, 9
"Gordon Leads Way in NASCAR's Final Practice at Homestead"", 4, 1, 3, 0, 9
'What to Do This Weekend', 0, 0, 0, 0, 5
'Airbus, Vietjet Announce Deal for 30 Planes at Dubai Airshow', 2, 2, 0, 0, 10
'Black Friday fizzles, Disney shares fall', 0, 0, 0, 0, 6
'California Ballot Measure Seeks to Tighten Strict Gun Laws', 1, 1, 0, 0, 9
'China Returns to World Championship in 2016', 1, 1, 0, 0, 7
'After Years of Delays, Palestinians Get High-Speed Mobile', 0, 0, 0, 0, 8
'First Draft Focus: Debate Preparation in Colorado', 1, 1, 0, 0, 7
'Why Central Banks Are Accepting the Risks of Super-Low Rates', 0, 0, 0, 0, 10
'A Five-Bedroom House With a Pool in Rio de Janeiro', 3, 3, 0, 0, 10
'Media Company: DJ Tried to Influence Listening Habits', 0, 0, 0, 0, 8
'U.S. and Philippine troops hold joint drills', 1, 1, 0, 0, 7
'Black Pastors Press Trump on Tone During Closed-Door Meeting', 0, 0, 0, 0, 9
'Blondell Cummings, Dancer of Life’s Everyday Details, Dies at 70', 1, 0, 1, 0, 10
'Paul Allen\xe2\x80\x99s Philanthropy Mirrors His Passions and Business Approach', 1, 0, 1, 0, 9
'House Speaker Job Requires Many Hats Paul Ryan Has Never Worn', 2, 0, 2, 0, 11
'Kerry Urges Constancy in Face of Attacks', 0, 0, 0, 0, 7
'Anger Over Killing by Police Halts Shopping in Chicago', 1, 1, 0, 0, 9
'South African Game', 0, 0, 0, 0, 3
'Review: In \xe2\x80\x98Dear Mr. You,\xe2\x80\x99 Mary-Louise Parker Writes to Men, With Lust and Rue', 3, 0, 3, 0, 14
"Georgia to Execute Man for Woman's 1994 Fatal Stabbing"", 1, 1, 0, 0, 9
'I.O.C. President Addresses Hamburg Vote', 3, 0, 0, 3, 5
'Storied Brooklyn Church to Lose Its Keeper of History', 2, 2, 0, 0, 9
'Boy Dies of Ebola in Liberia, First Fatality in Months', 0, 0, 0, 0, 10
'Turkey Seizes Coin-Making Material Used by IS, Arrests 6', 1, 1, 0, 0, 9
'Rejected Thanksgiving Balloons', 0, 0, 0, 0, 3
'Hotel and Resort News: City Guides, and Healthier Menus', 0, 0, 0, 0, 9
'Romo Hurt as Panthers Beat Cowboys', 2, 0, 2, 0, 6
'When BFFs Are Quick to Criticize', 0, 0, 0, 0, 6
'Kevin Spacey and Cal Ripken Jr. to Team Up for Fund-Raising Gala', 5, 0, 5, 0, 12
'Obama visits Paris attack site, pays tribute to victims', 2, 1, 1, 0, 9
'Projects Stall After Feds Allow Fish Farming in Open Ocean', 0, 0, 0, 0, 10
"'French Spider-Man' Climbs Paris Building in Latest Stint"", 0, 0, 0, 0, 8
'Out of the Cave and Onto Facebook-The Life of a Modern Hermit', 0, 0, 0, 0, 12
'UK Panel: Heathrow Plans Must Address Air Quality Issues', 1, 1, 0, 0, 9
'The Ritz Paris, by the Numbers', 0, 0, 0, 0, 6
'How Auction Houses Orchestrate Sales for Maximum Drama', 0, 0, 0, 0, 8
'McCutchen Named Clemente Award Winner', 1, 0, 1, 0, 5
'Boy Dies of Ebola in Liberia, First Such Fatality in Months', 0, 0, 0, 0, 11
'The Story of the Saddest Christmas Tree', 0, 0, 0, 0, 7
"Canadiens Beat Islanders in Price's Return"", 3, 0, 0, 3, 6
"Refreshed Spieth Ready to Rebound From 'Two Bad Weeks'"", 0, 0, 0, 0, 9
"Rousey's Fear of Failure Key to Beating Holm in Melbourne"", 1, 1, 0, 0, 10
'Review: \xe2\x80\x98Rose\xe2\x80\x99 Offers a Matriarch\xe2\x80\x99s Telling of the Kennedy\xe2\x80\x99s Story', 0, 0, 0, 0, 10
"Manning's Absence Extended as He's Fitted With Walking Cast"", 0, 0, 0, 0, 9
'Contrite Secret Service Director Apologizes to Lawmakers', 0, 0, 0, 0, 7
'A \xe2\x80\x98Cast of Characters\xe2\x80\x99 and \xe2\x80\x98Crooked Brooklyn\xe2\x80\x99', 0, 0, 0, 0, 7
'Review: \xe2\x80\x98Rear Window,\xe2\x80\x99 the Perils of Voyeurism, With Kevin Bacon', 2, 0, 2, 0, 10
'Benzema Insists He Has Done Nothing Wrong in Sextape Scandal', 0, 0, 0, 0, 10
'Hillary Clinton Pledges to Make Better Treatment of Veterans a Priority', 2, 0, 2, 0, 11
'Should My Rich Friends Apply for Financial Aid?', 0, 0, 0, 0, 8
'Review: \xe2\x80\x98Room,\xe2\x80\x99 Mother and Child in 100 Square Feet', 0, 0, 0, 0, 9
'Obama: ""Playing like a girl means you are a \'bad ass\'""', 0, 0, 0, 0, 11
'Elegant Railroading of the Past', 0, 0, 0, 0, 5
'Adele Has Already Sold 2.3 Million Copies of Disc', 0, 0, 0, 0, 9
'Southwest Idaho Fugitive Arrested in Mexico', 3, 3, 0, 0, 6
"George's Double-Double Leads Pacers to 102-91 Win"", 0, 0, 0, 0, 7
'Pope: failure at climate summit would be ""catastrophic""', 0, 0, 0, 0, 8
"Slower growth expected in Alibaba's upcoming earnings"", 0, 0, 0, 0, 7
'Ten killed in fighting with Kurdish militants', 0, 0, 0, 0, 7
'Mexico\xe2\x80\x99s Roof Dogs', 0, 0, 0, 0, 3
"Russia's Putin Says Long-Term Gas Deals Should Not Be Scrapped"", 1, 0, 1, 0, 10
"Man Who Couldn't Mesh With 5 Lawyers Faces Skeptical Judges"", 0, 0, 0, 0, 10
'Paris Attacks Could Change NATO Priorities-Russian Deputy Minister', 5, 0, 0, 5, 8
'Review: \xe2\x80\x98Asking for It\xe2\x80\x99 Uses Wit to Tackle Cultural Norms About Rape', 0, 0, 0, 0, 12
'Marco Rubio, the Unusual Front-Runner', 1, 0, 1, 0, 5
'Sales improve at Michael Kors', 2, 0, 2, 0, 5
'Evening Hours | Dances and Prizes', 0, 0, 0, 0, 6
'ECB ready to act fast: Draghi', 2, 0, 1, 1, 6
'Governor of Sinjar on Taking Town Back', 1, 1, 0, 0, 7
"Enya Returns With Ethereal Style She's Made Her Own"", 0, 0, 0, 0, 9
'Banks, at Odds With Personal Finance Sites, Disrupt Service', 0, 0, 0, 0, 9
'The Hypocrisy of \xe2\x80\x98Helping\xe2\x80\x99 the Poor ', 0, 0, 0, 0, 6
'Imagining a World Without Growth ', 0, 0, 0, 0, 5
'First Same-Sex Marriage Ceremony Held in Ireland', 1, 1, 0, 0, 7
'Ganassi Announces Driver Lineup for 2016 IMSA Season', 2, 0, 1, 1, 8
'MLB to Review Runners Coming Off Base on Tag Plays', 1, 0, 0, 1, 10
'Helping Others and Accepting Help', 0, 0, 0, 0, 5
'The Right Tools for Richer Audio', 0, 0, 0, 0, 6
"Assad: Russia's support changes balance on the ground"", 0, 0, 0, 0, 8
'Ready for Some Football in the Spring? MLFB Thinks So', 0, 0, 0, 0, 10
'Jury: Boy Not Liable for Exuberant Hello That Injured Aunt', 0, 0, 0, 0, 10
'Florida Newspaper Calls on Marco Rubio to Resign for Missing Senate Votes', 5, 0, 2, 3, 12
'Review: In \xe2\x80\x98The Forbidden Room,\xe2\x80\x99 a Submarine Full of Dark Imagery', 0, 0, 0, 0, 11
'Cameron Struggles to Contain Tory Dissidents on E.U.', 3, 0, 2, 1, 8
'TalkTalk Hacking to Be Subject of Inquiry on Cybersecurity in British Parliament', 0, 0, 0, 0, 12
'Anonymous Hackers Fight ISIS but Reactions Are Mixed', 1, 0, 0, 1, 8
'Democratic Rivals Back Clinton on Emails, but Little Else in Scrappy Debate', 1, 0, 1, 0, 12
'Kobe Bryant Announces Retirement', 2, 0, 2, 0, 4
'Video Feature: Appetite for Patriotism Is Transforming Moscow\xe2\x80\x99s Restaurant Culture', 0, 0, 0, 0, 10
'British Attempts to Return Tourists From Egypt Mired in Confusion', 1, 1, 0, 0, 10
'Anatomy of a Scene | \xe2\x80\x9899 Homes\xe2\x80\x99', 0, 0, 0, 0, 7
'Four Bidders Won $14 Million Worth of Bitcoin in Last U.S. Auction', 2, 2, 0, 0, 12
'Los Angeles Police Urged to Review Use of Force After \xe2\x80\x98Alarming\xe2\x80\x99 Rise in Shootings', 4, 0, 0, 4, 14
"I'm All Ears: Fossils Reveal Human Ancestors' Hearing Abilities"", 0, 0, 0, 0, 9
'Colombia to Legalize Commercial Sale of Medical Marijuana', 1, 1, 0, 0, 8
"Ben Carson: Refugee Program Must Screen for 'Mad Dogs'"", 1, 0, 1, 0, 9
'Cemetery in Guyana Is Prepared for Fallen Officer Randolph Holder, a Native Son', 2, 1, 1, 0, 13
"John Lennon's Guitar Sells for $2.4 Million at Auction"", 1, 0, 1, 0, 9
'Hamilton Wins U.S. Grand Prix and Clinches Formula One Title', 3, 3, 0, 0, 10
'One Year, About 75 Lamps and a Single Maker', 0, 0, 0, 0, 9
'China Promises Universal Pension Plan', 1, 1, 0, 0, 5
'The \xe2\x80\x98Golden Age for Women in TV\xe2\x80\x99 Is Actually a Rerun', 0, 0, 0, 0, 11
'Suspect Charged in Chicago Shooting', 1, 1, 0, 0, 5
'Review: \xe2\x80\x98Pike St.,\xe2\x80\x99 Where One Woman Speaks for All', 0, 0, 0, 0, 9
'Timberwolves Unveil Shooting Shirts Dedicated to Flip', 0, 0, 0, 0, 7
'Devils Defeat Canadiens in Overtime on the Road', 3, 0, 0, 3, 8
'What Middle Class Means in Malaysia', 1, 1, 0, 0, 6
'Warren Buffett Sells Goldman Sachs and Walmart Shares', 6, 0, 2, 4, 8
'Few Syrians Would Choose to Leave Homeland for North America: Poll', 0, 0, 0, 0, 11
'Mercedes Take Up Option on Ocon', 1, 0, 1, 0, 6
'Venezuelan Oil Minister Says OPEC Cannot Allow a Price War', 1, 0, 0, 1, 10
'FANTASY PLAYS: Knowing When to Draft Gronk a Tricky Decision', 0, 0, 0, 0, 10
'Restaurant Review: At Sandbar, Familiar French Hands Behind the Menu', 0, 0, 0, 0, 10
'Trudeau to become next Canadian PM', 1, 0, 1, 0, 6
'FBI, New York Police Aware of Islamic State Video, Say No Specific Threat', 7, 0, 0, 7, 13
'England Coach Jones Misses Work Due to Visa Issues', 2, 1, 1, 0, 9
'Two Jewish Teenagers Found Guilty of Murdering Palestinian, 16', 0, 0, 0, 0, 9
'No to Keystone, Yes to the Planet ', 0, 0, 0, 0, 7
'The Push for Legal Marijuana Spreads ', 0, 0, 0, 0, 6
'Gentrification in a Brooklyn Neighborhood Forces Residents to Move On', 1, 1, 0, 0, 10
'Big Ticket | The Dakota', 1, 1, 0, 0, 5
'Storm Brings Winds, Reports of Tornadoes in Midwest', 1, 1, 0, 0, 8
'Lawyer for Arkansas Says Drug Supplier Relying on Secrecy', 1, 0, 0, 1, 9
'Win a Trip 2016', 0, 0, 0, 0, 4
'The Most Popular Reader Comments on The Times', 0, 0, 0, 0, 8
'Greece Aims for Debt Relief Deal in February 2016 After Reforms Done', 1, 1, 0, 0, 12
'How Would You Give Away Your Fortune?', 0, 0, 0, 0, 7
'Earth Is a Wilder, Warmer Place Since Last Climate Deal Made', 0, 0, 0, 0, 11
'Governor Remarks on California Wildfires', 2, 2, 0, 0, 5
'Market Fades Ahead of Jobs Report', 0, 0, 0, 0, 6
'Knicks Hand Raptors Their First Loss at Home ', 3, 0, 0, 3, 8
'Perez Ready for Career Highlight in Mexico', 1, 1, 0, 0, 7
'Vegetarian Thanksgiving: Lentil-Stuffed Delicata Squash With Cashew Raita', 0, 0, 0, 0, 8
'Newcastle Defender Coloccini Wins Red Card Appeal', 1, 0, 0, 1, 7
"Cambodia's PM Condemns Attacks on Lawmakers, Rails at Opposition"", 0, 0, 0, 0, 9
'\xe2\x80\x98Of Beards and Men\xe2\x80\x99 and \xe2\x80\x98True Style\xe2\x80\x99', 0, 0, 0, 0, 7
"Rosie O'Donnell Relishes Criminal Role on Fox's 'Empire'"", 2, 0, 2, 0, 8
'\xe2\x80\x98Melting: Last Race to the Pole,\xe2\x80\x99 an Adventure Way Up North', 0, 0, 0, 0, 11
"Biden Calls Paul Ryan 'Good Guy,' Hopes for Progress With Congress"", 5, 0, 4, 1, 11
'Singapore Treats at Chomp Chomp in Greenwich Village', 3, 3, 0, 0, 8
"Poland's lurch to right irks investors"", 0, 0, 0, 0, 6
'Ants With Leaping Ability', 0, 0, 0, 0, 4
'What Makes a Tax Plan \xe2\x80\x98Serious\xe2\x80\x99 Anyway?', 0, 0, 0, 0, 7
'Higuain a Doubt for Injury-Hit Napoli', 1, 1, 0, 0, 6
"Patrick Kennedy Criticizes Trump for 'Crazy' Comment"", 2, 0, 2, 0, 7
'CAPITOL HILL BUZZ: Forget Assad, Focus on IS', 0, 0, 0, 0, 8
'To Arm Against Drought, Kenya Maps Its Water Resources', 1, 1, 0, 0, 9
'UK Firm Apologises for Using Stretch Limo to Transport Asylum Seekers', 1, 1, 0, 0, 11
'The Latest: Hungary Secretly Settled Refugees in 2013-14', 1, 1, 0, 0, 8
'Playoff Berth Is Decided at Whataburger', 0, 0, 0, 0, 6
'Columbia Rises for Opener and Quickly Shines', 2, 2, 0, 0, 7
'Making Dungeness Crab Tacos', 0, 0, 0, 0, 4
"Who's 'So Vain'? Singer Carly Simon Reveals One Mystery Man"", 2, 0, 2, 0, 10
'World Cup Injury Rates Similar to Past, Say Organisers', 0, 0, 0, 0, 9
'Retailers may be ok after all', 0, 0, 0, 0, 6
'CARE CEO Michelle Nunn: More Resources Needed for Refugees', 1, 0, 1, 0, 9
'New York Says Farewell to American Bible Society, and Its Building', 2, 2, 0, 0, 11
'1940: Yugoslavs Fear Isolation', 0, 0, 0, 0, 4
'Picking Up CCS Where Foot Locker Left Off', 0, 0, 0, 0, 8
'With N.F.L. Defenses Mining for Fumbles, Runners Treat the Ball Like Gold', 0, 0, 0, 0, 12
"France Buries Holocaust Victims' Secretly Conserved Remains"", 1, 1, 0, 0, 7
"Burkina Faso Ex-Leader's Hometown Adapts to Life Without Him"", 2, 0, 2, 0, 9
'French Economy Already Hurting From Attacks, Survey Finds', 0, 0, 0, 0, 8
'US Steel Decides Against New HQ in Penguins Development', 6, 0, 0, 6, 9
'World Leaders Vow Vigorous Response After Paris Terror Spree', 1, 1, 0, 0, 9
'Endangered Rhino Dies at California Zoo, Three Remain Worldwide', 1, 1, 0, 0, 9
'Flavia Pennetta Is Calling Her Shots to the End', 2, 0, 2, 0, 9
'The Lady and the Election', 0, 0, 0, 0, 5
'When a Fence Becomes a Bike Rack ', 0, 0, 0, 0, 7
'What Is the Locker-Room Policy for Transgender Students at Your Child’s School?', 0, 0, 0, 0, 12
'Gurley Scores 2 TDs, Rams Whip Browns 24-6', 1, 0, 1, 0, 8
'Officials: Red-Haired Students at Middle School Bullied', 0, 0, 0, 0, 7
'Human Trafficking at Sea: Reporter\xe2\x80\x99s Notebook', 0, 0, 0, 0, 6
'Meryl Streep and Justin Timberlake Are Among the Night\xe2\x80\x99s Fashion Stars', 2, 0, 2, 0, 11
'Morocco Arrests Turks Suspected of Islamic State Links', 1, 1, 0, 0, 8
'VW Design Chief Quits as Emissions Scandal Drags On', 1, 0, 0, 1, 9
"A New Family, With a Surrogate's Help"", 0, 0, 0, 0, 7
'Big Sister Helps Downie Turn Despair Into Triumph', 0, 0, 0, 0, 8
"The Latest: Man's Father Satisfied With Settlement in Death"", 0, 0, 0, 0, 9
'Sharapova Screams Past Halep, Retiring Pennetta Prevails', 0, 0, 0, 0, 7
'DONG Energy Decides to Build 660-MW UK Wind Farm', 4, 1, 0, 3, 9
'Our Year of Living Airbnb ', 0, 0, 0, 0, 5
"‘City Center Encores! Unscripted': A Talk Show About Musical Theater"", 0, 0, 0, 0, 10
'Athletics: a Poor Relation Even Before Doping Scandal', 0, 0, 0, 0, 8
'Let’s Run a Turkey Trot', 1, 1, 0, 0, 5
'Friend of Church Massacre Suspect Receives Lower Bond', 0, 0, 0, 0, 8
'Five Ways Your Smartphone Can Help Your Health', 0, 0, 0, 0, 8
'VW cuts capex on emissions scandal', 1, 0, 0, 1, 6
'Lionsgate Seeks to Build on Its Library of Film Properties With Theme Parks', 1, 0, 0, 1, 13
'\xe2\x80\x98Blindspot\xe2\x80\x99 Season 1, Episode 9: Dressing Up', 0, 0, 0, 0, 7
'Bad Debt Collectors and Their Prey', 0, 0, 0, 0, 6
'Guest Lineups for the Sunday News Shows', 0, 0, 0, 0, 7
"Can-Do Campaign Biographies: There's Often More to the Story"", 0, 0, 0, 0, 9
'Obama Signs Defense Bill, Despite Guant\xc3\xa1namo Objections', 3, 0, 0, 3, 7
'F.B.I. Director Repeats Call That Ability to Read Encrypted Messages Is Crucial', 1, 0, 0, 1, 12
'Bombs Across Baghdad Kill Nine People: Sources', 1, 1, 0, 0, 7
"American enthusiast builds working U-boat model in memory of friend's father"", 0, 0, 0, 0, 11
'40-Country Survey: Majority Support for Cutting Emissions', 0, 0, 0, 0, 7
'Boot Camp Possible for Canadian Teen Charged in Shootings', 0, 0, 0, 0, 9
'Dale Talde\xe2\x80\x99s Six Must-Eat Chicago Dishes', 1, 0, 1, 0, 6
'Syrians in Raqqa Fear New Warplanes in Crowded Skies', 0, 0, 0, 0, 9
"Family of Durst's Missing Wife Divided Over Suit"", 0, 0, 0, 0, 8
'Firefighters Contain 70 Percent of Central Texas Wildfire', 0, 0, 0, 0, 8
'U.S. Women Capture World Title', 1, 1, 0, 0, 5
'Lauren Bacall\xe2\x80\x99s Dakota Apartment Sold for $21 Million', 1, 0, 1, 0, 8
'A 1950s-Era Timepiece, Reborn', 0, 0, 0, 0, 4
'Police: Soap Actor Tried to Punch Bartender at Arizona Hotel', 2, 0, 0, 2, 10
'Brussels mulls cost of security lockdown', 1, 1, 0, 0, 6
'Time Warner Cuts Profit Expectations, and Media Stocks Dip', 2, 0, 0, 2, 9
"South Africa's Female Anti-Poachers Call on U.N. to Protect Natural Resources"", 1, 0, 0, 1, 11
'Human Rights Watch on C.I.A. Torture', 0, 0, 0, 0, 6
'Tie Domi Moves From Penalty Box to Arena Suite, Watching His Son\xe2\x80\x99s Blossoming Career', 0, 0, 0, 0, 14
"Speeding Driver to Officer: 'No Wonder You People Get Shot'"", 0, 0, 0, 0, 10
'Stars No More: Twitter Ditches Stars, Adds Hearts for Likes', 0, 0, 0, 0, 10
'Number of Migrants Illegally Crossing Rio Grande Rises Sharply', 0, 0, 0, 0, 9
'Paid Notice: Deaths KLEIN, STEVEN DEAR DAD', 1, 0, 1, 0, 7
'A Doctor Revisits His Own Trauma', 0, 0, 0, 0, 6
'Most Black Millennials Know Victim of Police Violence, Harassment', 0, 0, 0, 0, 9
'ISIS Followers in U.S. Are Diverse and Young', 2, 1, 0, 1, 8
'Donald Trump Questions Ben Carson\xe2\x80\x99s Honesty, Despite Own Record', 2, 0, 2, 0, 9