-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.xml
5397 lines (5332 loc) · 174 KB
/
sample.xml
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
<?xml version="1.0"?>
<!DOCTYPE evidences SYSTEM "http://elleconnect.com/andrewdo/bleaf/dtds/sample11.dtd">
<announcement>
<metadata>
<version>bLeaf 0.10</version>
</metadata>
<items>
<evidence>
<title>Federal prosecutors are considering manslaughter charges against BP for the Deepwater Horizon oil spill in the Gulf of Mexico that</title>
<description>
Federal prosecutors are considering manslaughter charges against BP for the Deepwater Horizon oil spill in the Gulf of Mexico that released a total of 4.9 million barrels of crude oil and lasted 87 days; the initial rig explosion also killed 11 workers. Charging individuals for manslaughter involved in the incident is not typical but expected to have a significant deterrent effect, especially in environmental safety cases. BP has committed $20 billion to settle claims by those hurt by the oil spill and has already paid out $4 billion. However, BP stock fell 2.2 percent in London due to talk of the potential charges.
</description>
<categories>
<category>
<category-name>Environment</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 196</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=196</url>
<date>20111025170855</date>
</link>
</source>
<links>
<link>
<link-text>Business Week</link-text>
<url>http://http://www.businessweek.com/news/2011-03-29/bp-is-said-to-face-u-s-review-for-manslaughter-charges.html</url>
<date/>
</link>
<link>
<link-text>www.bp.com</link-text>
<url>http://www.bp.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized/>
<tagged>BP</tagged>
<address/>
<GCPs/>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T171759Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T210157Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T210853Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>On the 2005 Computer Report Card, published jointly by the Computer TakeBack Campaign and the Silicon Valley Toxics Coalition, App</title>
<description>
On the 2005 Computer Report Card, published jointly by the Computer TakeBack Campaign and the Silicon Valley Toxics Coalition, Apple received a score of 17 for their policies regarding electronics take back, disposal procedures and the materials used in their computers. Apple’s score was better than Acer or Gateway’s, slightly worse than Sony and IBM, and trailed HP and Dell by wide margins.
</description>
<categories>
<category>
<category-name>Environment</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 186</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=186</url>
<date>20111025171006</date>
</link>
</source>
<links>
<link>
<link-text>Silicon Valley Toxics Coalition</link-text>
<url>http://svtc.etoxics.org/site/PageServer?pagename=svtc_computer_report_card</url>
<date/>
</link>
<link>
<link-text>www.apple.com</link-text>
<url>http://www.apple.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>acer incorporated</normalized>
<tagged>Acer</tagged>
<address/>
<GCPs>
<GCP>0099802</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>acer america corporation</normalized>
<tagged>Acer</tagged>
<address/>
<GCPs>
<GCP>0750519</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>Acer America Corporation</normalized>
<tagged>Acer</tagged>
<address>CA
2641 Orchard Parkway
95134
San Jose
United States</address>
<GCPs>
<GCP>0750519</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>apple computer, inc.</normalized>
<tagged>Apple</tagged>
<address/>
<GCPs>
<GCP>0718908</GCP>
<GCP>0885909</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>0</score>
</value>
</values>
</company>
<company>
<normalized>dell u.s.a. l.p.</normalized>
<tagged>Dell</tagged>
<address/>
<GCPs>
<GCP>0744696</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>+1</score>
</value>
</values>
</company>
<company>
<normalized/>
<tagged>Gateway</tagged>
<address/>
<GCPs/>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized/>
<tagged>H.P.</tagged>
<address/>
<GCPs/>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>IBM Corporation</normalized>
<tagged>IBM</tagged>
<address>NY
1 New Orchard Rd.
10504-1722
Armonk
United States</address>
<GCPs>
<GCP>0883436</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>0</score>
</value>
</values>
</company>
<company>
<normalized>sony-bmg</normalized>
<tagged>Sony</tagged>
<address/>
<GCPs>
<GCP>0743211</GCP>
<GCP>0743212</GCP>
<GCP>0743213</GCP>
<GCP>0743214</GCP>
<GCP>0743215</GCP>
<GCP>0743216</GCP>
<GCP>0743217</GCP>
<GCP>0743218</GCP>
<GCP>0828765</GCP>
<GCP>0828766</GCP>
<GCP>0828767</GCP>
<GCP>0828768</GCP>
<GCP>0886970</GCP>
<GCP>0886971</GCP>
<GCP>0888880</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>0</score>
</value>
</values>
</company>
<company>
<normalized>sony bmg</normalized>
<tagged>Sony</tagged>
<address/>
<GCPs>
<GCP>9416333</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>0</score>
</value>
</values>
</company>
<company>
<normalized>Sony-Bmg</normalized>
<tagged>Sony</tagged>
<address>NY
550 Madison Ave
10022
New York
United States</address>
<GCPs>
<GCP>0886443</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>0</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T171819Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T210959Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>• UAL Corporation received a score of 88 for the second year in a row on the Human Rights Campaign 2009 Corporate Equality Index w</title>
<description>
• UAL Corporation received a score of 88 for the second year in a row on the Human Rights Campaign 2009 Corporate Equality Index which rates large corporations on policies that affect their gay, lesbian, bisexual and transgender employees, consumers and investors. The HRC Corporate Equality Index rates companies on a scale of 0 to 100 percent.
</description>
<categories>
<category>
<category-name>Human Rights</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 401</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=401</url>
<date>20111025171321</date>
</link>
</source>
<links>
<link>
<link-text>Human Rights Campaign</link-text>
<url>http://www.hrc.org/documents/HRC_Corporate_Equality_Index_2009.pdf</url>
<date/>
</link>
<link>
<link-text>www.united.com</link-text>
<url>http://www.united.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized/>
<tagged>United Airlines</tagged>
<address/>
<GCPs/>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T171836Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211320Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>The Nigerian government accepted an offer to settle its $5 billion lawsuit against Pfizer out of court.</title>
<description>
The Nigerian government accepted an offer to settle its $5 billion lawsuit against Pfizer out of court. The drug maker was being sued for punitive damages for allegedly illegally testing its antibiotic Trovan on children during a 1996 meningitis epidemic. According to the Nigerian government and families of the victims, at least 96 children were either killed or suffered severe neurological injury as a result of the administration of the experimental drug. A separate lawsuit filed in New York by the families was allowed to move forward in January 2009.
</description>
<categories>
<category>
<category-name>Human Rights</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 391</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=391</url>
<date>20111025171339</date>
</link>
</source>
<links>
<link>
<link-text>Tide News</link-text>
<url>http://www.thetidenews.com/article.aspx?qrDate=01/28/2009&qrTitle=Fed%20Govt,%20Pfizer%20opt%20for%20out-of-court%20settlement&qrColumn=NATION</url>
<date/>
</link>
<link>
<link-text>www.pfizer.com</link-text>
<url>http://www.pfizer.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>pfizer inc./consumer health care</normalized>
<tagged>Pfizer</tagged>
<address/>
<GCPs>
<GCP>0074300</GCP>
<GCP>0086414</GCP>
<GCP>0305012</GCP>
<GCP>0305013</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>pfizer inc./pfipharmecs div</normalized>
<tagged>Pfizer</tagged>
<address/>
<GCPs>
<GCP>0071404</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>pfizer inc.</normalized>
<tagged>Pfizer</tagged>
<address/>
<GCPs>
<GCP>0087219</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>pfizer consumer healthcare</normalized>
<tagged>Pfizer</tagged>
<address/>
<GCPs>
<GCP>9310059</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>pfizer consumer health products company</normalized>
<tagged>Pfizer</tagged>
<address/>
<GCPs>
<GCP>5010123</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>pfizer pty ltd</normalized>
<tagged>Pfizer</tagged>
<address/>
<GCPs>
<GCP>9313212</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>Pfizer Inc.</normalized>
<tagged>Pfizer</tagged>
<address>NY
235 E 42nd St
10017
New York
United States</address>
<GCPs>
<GCP>0087219</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>Pfizer Inc./Pfipharmecs Div</normalized>
<tagged>Pfizer</tagged>
<address>MO
1 SE Pfizer Way
64081
Lees Summit
United States</address>
<GCPs>
<GCP>0071404</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
<company>
<normalized>Pfizer Consumer Healthcare</normalized>
<tagged>Pfizer</tagged>
<address>NY
235 East 42nd St.
10017
New York
United States</address>
<GCPs>
<GCP>030573</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score/>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172155Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211338Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>Time Warner Cable increased its rates without any real reason.</title>
<description>
Time Warner Cable increased its rates without any real reason. The Communications Workers of America Union claims that the company is putting more money into executives pockets and leaving lower level employees with nothing. In 2008 there were 35 employees without a pension plan. <p>
Timer Warner Cable says they are increasing their rates due to higher demand for premium packages and the rising cost of fuel. They also claim that the reason why the CWA is protesting is because the President of the union is an employee of Verizon, which is a rival of Time Warner Cable.
</description>
<categories>
<category>
<category-name>Business Practices | Workers Rights</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 345</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=345</url>
<date>20111025171433</date>
</link>
</source>
<links>
<link>
<link-text>NBC-WKTV</link-text>
<url>http://http://www.wktv.com/news/local/17155736.html</url>
<date/>
</link>
<link>
<link-text>www.timewarner.com</link-text>
<url>http://www.timewarner.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>Time Warner Cable</normalized>
<tagged>Time Warner</tagged>
<address>MN
9705 Data Park
55343-9119
Minnetonka
United States</address>
<GCPs>
<GCP>083633600</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>Time Warner Interactive Group</normalized>
<tagged>Time Warner</tagged>
<address>NY
1 Time Warner Center
10019
New York
United States</address>
<GCPs>
<GCP>0099171</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172206Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211431Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>Forest Ethics rated retailers on their paper use in 2009 in terms of use of Forest Stewardship Council certified paper, recycled c</title>
<description>
Forest Ethics rated retailers on their paper use in 2009 in terms of use of Forest Stewardship Council certified paper, recycled content, paper reduction and the avoidance of paper from endangered forests. Forest Ethics judges the retailer’s paper choice in its catalogs and other mailings to form a “Naughty/Nice List” of a total of 21 companies. Sears earned a “naughty” rating because although they finally established a paper policy, it is mostly greenwashing.
</description>
<categories>
<category>
<category-name>Environment</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 286</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=286</url>
<date>20111025171451</date>
</link>
</source>
<links>
<link>
<link-text>Forest Ethics</link-text>
<url>http://http://forestethics.org/downloads/naughtynicelist2009_Ultimate.pdf</url>
<date/>
</link>
<link>
<link-text>www.sears.com</link-text>
<url>http://www.sears.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>sears, roebuck and co.</normalized>
<tagged>Sears</tagged>
<address/>
<GCPs>
<GCP>0633815</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>Sears, Roebuck and Co.</normalized>
<tagged>Sears</tagged>
<address>IL
3333 Beverly Road
E3-292B
60179
Hoffman Estates
United States</address>
<GCPs>
<GCP>0883967</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172220Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211450Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>An internal Wal-Mart memo to the board of directors was published containing controversial proposals for keeping company health ca</title>
<description>
An internal Wal-Mart memo to the board of directors was published containing controversial proposals for keeping company health care spending low while simultaneously repairing its damaged public image. Proposals ranged from making employees withstand a longer waiting period before joining the company's policy to changing all job descriptions to include some level of physical activity, thereby ensuring the hiring of only healthier workers.
</description>
<categories>
<category>
<category-name>Politics</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 306</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=306</url>
<date>20111025171517</date>
</link>
</source>
<links>
<link>
<link-text>National Public Radio (NPR)</link-text>
<url>http://www.npr.org/templates/story/story.php?storyId=4975919</url>
<date/>
</link>
<link>
<link-text>www.walmartstores.com</link-text>
<url>http://www.walmartstores.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>wal-mart stores, inc.</normalized>
<tagged>Wal-Mart</tagged>
<address/>
<GCPs>
<GCP>0078742</GCP>
<GCP>0605388</GCP>
<GCP>0681131</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>Wal-Mart Stores, Inc.</normalized>
<tagged>Wal-Mart</tagged>
<address>AR
702 S.W. 8th St
MS 16
72716
Bentonville
United States</address>
<GCPs>
<GCP>0078742</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172225Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211516Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>According to the Clean Clothes Campaign, “Although Fila has a Code of Business Conduct, we have not been able to trace any informa</title>
<description>
According to the Clean Clothes Campaign, “Although Fila has a Code of Business Conduct, we have not been able to trace any information on how the company actually implements its code. Fila has not joined any multi-stakeholder initiatives on labour standards. Evidence on the ground suggests that the company is far from meeting its ethical commitments.”
</description>
<categories>
<category>
<category-name>Business Practices | Workers Rights</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 224</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=224</url>
<date>20111025171537</date>
</link>
</source>
<links>
<link>
<link-text>Clean Clothes Campaign</link-text>
<url>http://www.cleanclothes.org/companies/fila.htm</url>
<date/>
</link>
<link>
<link-text>www.fila.com</link-text>
<url>http://www.fila.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>fila usa, inc.</normalized>
<tagged>Fila</tagged>
<address/>
<GCPs>
<GCP>0633641</GCP>
<GCP>0723567</GCP>
<GCP>0731616</GCP>
<GCP>0791271</GCP>
<GCP>0791272</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>Fila USA, Inc.</normalized>
<tagged>Fila</tagged>
<address>MD
930 Ridgebrook Rd., Ste 200
21152
Sparks
United States</address>
<GCPs>
<GCP>0723567</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172235Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211532Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>Aetna has agreed to return $5 million to college students who were overcharged by their Aetna insurance plans.</title>
<description>
Aetna has agreed to return $5 million to college students who were overcharged by their Aetna insurance plans. 73,000 college students will soon be reimbursed for being charged outdated rates. If you believe you are part of the affected group, you can contact an Aetna customer service representative at 866-805-7643.
</description>
<categories>
<category>
<category-name>Politics</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 424</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=424</url>
<date>20111025171559</date>
</link>
</source>
<links>
<link>
<link-text>The Consumerist</link-text>
<url>http://consumerist.com/2009/02/aetna-underpaid-students-settles-for-5-million.html</url>
<date/>
</link>
<link>
<link-text>http://www.aetna.com</link-text>
<url>http://http://www.aetna.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized/>
<tagged>Aetna</tagged>
<address/>
<GCPs/>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172238Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211555Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>Environmental Defense published a list of the organizations that have questioned global warming and climate change to which Exxon </title>
<description>
Environmental Defense published a list of the organizations that have questioned global warming and climate change to which Exxon funneled money. Exxon has poured millions of dollars into funding "junk science" around the world.
</description>
<categories>
<category>
<category-name>Environment</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 221</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=221</url>
<date>20111025171614</date>
</link>
</source>
<links>
<link>
<link-text>Environmental Defense</link-text>
<url>http://www.environmentaldefense.org/article.cfm?ContentID=4870</url>
<date/>
</link>
<link>
<link-text>www.exxon.mobil.com</link-text>
<url>http://www.exxon.mobil.com</url>
<date/>
</link>
</links>
<companies>
<company>
<normalized>exxon company, u.s.a.</normalized>
<tagged>Exxon</tagged>
<address/>
<GCPs>
<GCP>0077162</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
<company>
<normalized>Exxon Company, U.S.A.</normalized>
<tagged>Exxon</tagged>
<address>TX
5959 Las Colinas Blvd
75039
Irving
United States</address>
<GCPs>
<GCP>0077162</GCP>
</GCPs>
<values>
<value>
<value-name>polarity</value-name>
<score>-1</score>
</value>
</values>
</company>
</companies>
<reviews>
<review>
<reviewer>insight</reviewer>
<date>20111023T172245Z</date>
</review>
<review>
<reviewer>beethoven</reviewer>
<date>20111025T211610Z</date>
</review>
</reviews>
</evidence>
<evidence>
<title>Ford was rated as the 18th worst polluter on the Political Economy Research Institute's (PERI) Toxic 100 index.</title>
<description>
Ford was rated as the 18th worst polluter on the Political Economy Research Institute's (PERI) Toxic 100 index. PERI is an “independent unit of the University of Massachusetts,” that promotes environmental sustainability and human rights through research. The index is based on 2007 EPA Toxics Release Inventory data. PERI's Toxic 100 index ranks the nation's largest companies based on the quantity of their emissions, relative toxicity of chemicals emitted, and proximity to population centers, among other criteria.
</description>
<categories>
<category>
<category-name>Environment</category-name>
</category>
</categories>
<source>
<link>
<link-text>Green America: Company ID 226</link-text>
<url>http://www.greenamerica.org/programs/responsibleshopper/company.cfm?id=226</url>
<date>20111025171625</date>
</link>
</source>
<links>
<link>
<link-text>Political Economy Research Institute (PERI)</link-text>
<url>http://http://www.peri.umass.edu/Toxic-100-Index.430.0.html</url>
<date/>
</link>
<link>
<link-text>www.ford.com</link-text>
<url>http://www.ford.com</url>
<date/>
</link>
</links>
<companies>
<company>