forked from danielgelbart/Graham
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stock_seeds.rb
1753 lines (1753 loc) · 161 KB
/
stock_seeds.rb
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
railsStock.create( 'name'=>'3M Company','ticker'=>'MMM','cik'=>66740,'fyed'=>'12-31')
Stock.create( 'name'=>'A. M. Castle & Co.','ticker'=>'CAS','cik'=>18172,'fyed'=>'12-31')
Stock.create( 'name'=>'A. O. Smith Corporation','ticker'=>'AOS','cik'=>91142,'fyed'=>'12-31')
Stock.create( 'name'=>'A.H. Belo Corporation','ticker'=>'AHC','cik'=>1413898,'fyed'=>'12-31')
Stock.create( 'name'=>'AAR Corporation','ticker'=>'AIR','cik'=>1750,'fyed'=>'05-31')
Stock.create( 'name'=>'Aaron s Inc.','ticker'=>'AAN','cik'=>706688,'fyed'=>'12-31')
Stock.create( 'name'=>'Abbott Laboratories','ticker'=>'ABT','cik'=>1800,'fyed'=>'12-31')
Stock.create( 'name'=>'Abercrombie & Fitch','ticker'=>'ANF','cik'=>1018840,'fyed'=>'02-01')
Stock.create( 'name'=>'ABM Industries Incorporated','ticker'=>'ABM','cik'=>771497,'fyed'=>'10-31')
Stock.create( 'name'=>'Acadia Realty Trust','ticker'=>'AKR','cik'=>899629,'fyed'=>'12-31')
Stock.create( 'name'=>'Accenture plc','ticker'=>'ACN','cik'=>1467373,'fyed'=>'08-31')
Stock.create( 'name'=>'Accretive Health, Inc.','ticker'=>'ACHI','cik'=>1472595,'fyed'=>'12-31')
Stock.create( 'name'=>'Accuride Corporation','ticker'=>'ACW','cik'=>817979,'fyed'=>'12-31')
Stock.create( 'name'=>'ACE Limited','ticker'=>'ACE','cik'=>896159,'fyed'=>'12-31')
Stock.create( 'name'=>'Actuant Corporation','ticker'=>'ATU','cik'=>6955,'fyed'=>'08-31')
Stock.create( 'name'=>'Acuity Brands, Inc. (Holding Company)','ticker'=>'AYI','cik'=>1144215,'fyed'=>'08-31')
Stock.create( 'name'=>'Adecoagro S.A.','ticker'=>'AGRO','cik'=>1499505,'fyed'=>'')
Stock.create( 'name'=>'Advance Auto Parts, Inc.','ticker'=>'AAP','cik'=>1158449,'fyed'=>'12-28')
Stock.create( 'name'=>'Advanced Micro Devices, Inc.','ticker'=>'AMD','cik'=>2488,'fyed'=>'12-28')
Stock.create( 'name'=>'Advantage Oil & Gas Ltd.','ticker'=>'AAV','cik'=>1259995,'fyed'=>'')
Stock.create( 'name'=>'AECOM Technology Corporation','ticker'=>'ACM','cik'=>868857,'fyed'=>'09-30')
Stock.create( 'name'=>'Aegean Marine Petroleum Network Inc.','ticker'=>'ANW','cik'=>1344376,'fyed'=>'')
Stock.create( 'name'=>'AerCap Holdings N.V.','ticker'=>'AER','cik'=>1378789,'fyed'=>'')
Stock.create( 'name'=>'Aeroflex Holding Corp.','ticker'=>'ARX','cik'=>1487990,'fyed'=>'06-30')
Stock.create( 'name'=>'Aeropostale, Inc.','ticker'=>'ARO','cik'=>1168213,'fyed'=>'02-01')
Stock.create( 'name'=>'The AES Corporation','ticker'=>'AES','cik'=>874761,'fyed'=>'12-31')
Stock.create( 'name'=>'Aetna, Inc.','ticker'=>'AET','cik'=>1122304,'fyed'=>'12-31')
Stock.create( 'name'=>'Affiliated Managers Group','ticker'=>'AMG','cik'=>1004434,'fyed'=>'12-31')
Stock.create( 'name'=>'AFLAC Incorporated','ticker'=>'AFL','cik'=>4977,'fyed'=>'12-31')
Stock.create( 'name'=>'Agco Corporation','ticker'=>'AGCO','cik'=>880266,'fyed'=>'12-31')
Stock.create( 'name'=>'Agilent Technologies Inc.','ticker'=>'A','cik'=>1090872,'fyed'=>'10-31')
Stock.create( 'name'=>'Agnico-Eagle Mines Limited','ticker'=>'AEM','cik'=>2809,'fyed'=>'')
Stock.create( 'name'=>'Agree Realty Corporation','ticker'=>'ADC','cik'=>917251,'fyed'=>'12-31')
Stock.create( 'name'=>'Agrium Inc.','ticker'=>'AGU','cik'=>943003,'fyed'=>'')
Stock.create( 'name'=>'Air Products and Chemicals, Inc.','ticker'=>'APD','cik'=>2969,'fyed'=>'09-30')
Stock.create( 'name'=>'Aircastle Limited','ticker'=>'AYR','cik'=>1362988,'fyed'=>'12-31')
Stock.create( 'name'=>'Airgas, Inc.','ticker'=>'ARG','cik'=>804212,'fyed'=>'12-31')
Stock.create( 'name'=>'AK Steel Holding Corp','ticker'=>'AKS','cik'=>918160,'fyed'=>'12-31')
Stock.create( 'name'=>'Alamo Group Inc.','ticker'=>'ALG','cik'=>897077,'fyed'=>'12-31')
Stock.create( 'name'=>'Alaska Air Group, Inc.','ticker'=>'ALK','cik'=>766421,'fyed'=>'12-31')
Stock.create( 'name'=>'Albany International Corp/DE/','ticker'=>'AIN','cik'=>819793,'fyed'=>'12-31')
Stock.create( 'name'=>'Albemarle Corporation','ticker'=>'ALB','cik'=>915913,'fyed'=>'12-31')
Stock.create( 'name'=>'Arconic Inc.','ticker'=>'ARNC','cik'=>4281,'fyed'=>'12-31')
Stock.create( 'name'=>'Alere Inc.','ticker'=>'ALR','cik'=>1145460,'fyed'=>'12-31')
Stock.create( 'name'=>'Alexander & Baldwin, Inc.','ticker'=>'ALEX','cik'=>1545654,'fyed'=>'12-31')
Stock.create( 'name'=>'Alexanders Inc.','ticker'=>'ALX','cik'=>3499,'fyed'=>'12-31')
Stock.create( 'name'=>'Alexandria Real Estate Equities Inc.','ticker'=>'ARE','cik'=>1035443,'fyed'=>'12-31')
Stock.create( 'name'=>'Alleghany Corporation','ticker'=>'Y','cik'=>775368,'fyed'=>'12-31')
Stock.create( 'name'=>'Allegheny Technologies Incorporated','ticker'=>'ATI','cik'=>1018963,'fyed'=>'12-31')
Stock.create( 'name'=>'Allergan Inc.','ticker'=>'AGN','cik'=>850693,'fyed'=>'12-31')
Stock.create( 'name'=>'ALLETE, Inc.','ticker'=>'ALE','cik'=>66756,'fyed'=>'12-31')
Stock.create( 'name'=>'Alliance Data Systems Corporation','ticker'=>'ADS','cik'=>1101215,'fyed'=>'12-31')
Stock.create( 'name'=>'Alliance Healthcare Services, Inc.','ticker'=>'AIQ','cik'=>817135,'fyed'=>'12-31')
Stock.create( 'name'=>'Alliance One International, Inc.','ticker'=>'AOI','cik'=>939930,'fyed'=>'03-31')
Stock.create( 'name'=>'AllianceBernstein Holding L.P.','ticker'=>'AB','cik'=>825313,'fyed'=>'12-31')
Stock.create( 'name'=>'Alliant Energy Corporation','ticker'=>'LNT','cik'=>352541,'fyed'=>'12-31')
Stock.create( 'name'=>'Alliant Techsystems Inc.','ticker'=>'ATK','cik'=>866121,'fyed'=>'03-31')
Stock.create( 'name'=>'Allied World Assurance Company Holdings, Ltd.','ticker'=>'AWH','cik'=>1163348,'fyed'=>'12-31')
Stock.create( 'name'=>'Allstate Corporation','ticker'=>'ALL','cik'=>899051,'fyed'=>'12-31')
Stock.create( 'name'=>'Alon USA Energy, Inc.','ticker'=>'ALJ','cik'=>1325955,'fyed'=>'12-31')
Stock.create( 'name'=>'Alpha Natural Resources, Inc.','ticker'=>'ANR','cik'=>1301063,'fyed'=>'12-31')
Stock.create( 'name'=>'Altria Group, Inc.','ticker'=>'MO','cik'=>764180,'fyed'=>'12-31')
Stock.create( 'name'=>'Amcol International Corporation','ticker'=>'ACO','cik'=>813621,'fyed'=>'12-31')
Stock.create( 'name'=>'Amdocs Ltd','ticker'=>'DOX','cik'=>1062579,'fyed'=>'')
Stock.create( 'name'=>'Ameren Corporation','ticker'=>'AEE','cik'=>1002910,'fyed'=>'12-31')
Stock.create( 'name'=>'Ameresco, Inc.','ticker'=>'AMRC','cik'=>1488139,'fyed'=>'12-31')
Stock.create( 'name'=>'American Assets Trust, Inc.','ticker'=>'AAT','cik'=>1500217,'fyed'=>'12-31')
Stock.create( 'name'=>'American Axle & Manufacturing Holdings, Inc.','ticker'=>'AXL','cik'=>1062231,'fyed'=>'12-31')
Stock.create( 'name'=>'American Campus Communities, Inc.','ticker'=>'ACC','cik'=>1283630,'fyed'=>'12-31')
Stock.create( 'name'=>'American Eagle Outfitters, Inc.','ticker'=>'AEO','cik'=>919012,'fyed'=>'02-01')
Stock.create( 'name'=>'American Electric Power Company Inc','ticker'=>'AEP','cik'=>4904,'fyed'=>'12-31')
Stock.create( 'name'=>'American Equity Investment Life Holding Company','ticker'=>'AEL','cik'=>1039828,'fyed'=>'12-31')
Stock.create( 'name'=>'American Express Company','ticker'=>'AXP','cik'=>4962,'fyed'=>'12-31')
Stock.create( 'name'=>'American Financial Group Inc.','ticker'=>'AFG','cik'=>1042046,'fyed'=>'12-31')
Stock.create( 'name'=>'American Greetings Corporation','ticker'=>'AM','cik'=>5133,'fyed'=>'02-28')
Stock.create( 'name'=>'American International Group Inc','ticker'=>'AIG','cik'=>5272,'fyed'=>'12-31')
Stock.create( 'name'=>'American Realty Investors, Inc.','ticker'=>'ARL','cik'=>1102238,'fyed'=>'12-31')
Stock.create( 'name'=>'American Reprographics Company','ticker'=>'ARC','cik'=>1355090,'fyed'=>'')
Stock.create( 'name'=>'American Safety Insurance Holdings, Ltd.','ticker'=>'ASI','cik'=>783603,'fyed'=>'12-31')
Stock.create( 'name'=>'American States Water Co.','ticker'=>'AWR','cik'=>1056903,'fyed'=>'12-31')
Stock.create( 'name'=>'American Tower Corporation','ticker'=>'AMT','cik'=>1053507,'fyed'=>'12-31')
Stock.create( 'name'=>'American Vanguard Corporation','ticker'=>'AVD','cik'=>5981,'fyed'=>'12-31')
Stock.create( 'name'=>'American Water Works Company, Inc.','ticker'=>'AWK','cik'=>1410636,'fyed'=>'12-31')
Stock.create( 'name'=>'Americold Realty Trust','ticker'=>'ACRE','cik'=>1529377,'fyed'=>'12-31')
Stock.create( 'name'=>'Amerigas Partners lp','ticker'=>'APU','cik'=>932628,'fyed'=>'09-30')
Stock.create( 'name'=>'AMERIGROUP Corporation','ticker'=>'AGP','cik'=>1064863,'fyed'=>'12-31')
Stock.create( 'name'=>'Ameriprise Financial, Inc.','ticker'=>'AMP','cik'=>820027,'fyed'=>'12-31')
Stock.create( 'name'=>'AmerisourceBergen Corporation','ticker'=>'ABC','cik'=>1140859,'fyed'=>'09-30')
Stock.create( 'name'=>'Ametek Inc.','ticker'=>'AME','cik'=>1037868,'fyed'=>'12-31')
Stock.create( 'name'=>'AMN Healthcare Services, Inc.','ticker'=>'AHS','cik'=>1142750,'fyed'=>'12-31')
Stock.create( 'name'=>'Ampco-Pittsburgh Corporation','ticker'=>'AP','cik'=>6176,'fyed'=>'12-31')
Stock.create( 'name'=>'Amphenol Corporation','ticker'=>'APH','cik'=>820313,'fyed'=>'12-31')
Stock.create( 'name'=>'AMREP Corporation','ticker'=>'AXR','cik'=>6207,'fyed'=>'04-30')
Stock.create( 'name'=>'Anadarko Petroleum Corporation','ticker'=>'APC','cik'=>773910,'fyed'=>'12-31')
Stock.create( 'name'=>'Analog Devices Inc.','ticker'=>'ADI','cik'=>6281,'fyed'=>'11-01')
Stock.create( 'name'=>'Anixter International Inc.','ticker'=>'AXE','cik'=>52795,'fyed'=>'01-03')
Stock.create( 'name'=>'Ann Inc.','ticker'=>'ANN','cik'=>874214,'fyed'=>'02-01')
Stock.create( 'name'=>'Annaly Capital Management, Inc.','ticker'=>'NLY','cik'=>1043219,'fyed'=>'12-31')
Stock.create( 'name'=>'Anworth Mortgage Asset Corporation','ticker'=>'ANH','cik'=>1047884,'fyed'=>'12-31')
Stock.create( 'name'=>'AOL Inc.','ticker'=>'AOL','cik'=>1468516,'fyed'=>'12-31')
Stock.create( 'name'=>'Aon Corporation','ticker'=>'AON','cik'=>315293,'fyed'=>'12-31')
Stock.create( 'name'=>'Apache Corporation','ticker'=>'APA','cik'=>6769,'fyed'=>'12-31')
Stock.create( 'name'=>'Apartment Investment & Management Company','ticker'=>'AIV','cik'=>922864,'fyed'=>'12-31')
Stock.create( 'name'=>'Apollo Commercial Real Estate Finance, Inc.','ticker'=>'ARI','cik'=>1467760,'fyed'=>'12-31')
Stock.create( 'name'=>'Apollo Global Management, LLC','ticker'=>'APO','cik'=>1411494,'fyed'=>'')
Stock.create( 'name'=>'Applied Industrial Technologies, Inc.','ticker'=>'AIT','cik'=>109563,'fyed'=>'06-30')
Stock.create( 'name'=>'AptarGroup Inc.','ticker'=>'ATR','cik'=>896622,'fyed'=>'12-31')
Stock.create( 'name'=>'Aqua America, Inc.','ticker'=>'WTR','cik'=>78128,'fyed'=>'12-31')
Stock.create( 'name'=>'Arbitron, Inc.','ticker'=>'ARB','cik'=>109758,'fyed'=>'12-31')
Stock.create( 'name'=>'Arbor Realty Trust, Inc.','ticker'=>'ABR','cik'=>1253986,'fyed'=>'12-31')
Stock.create( 'name'=>'Arch Coal Inc','ticker'=>'ACI','cik'=>1037676,'fyed'=>'12-31')
Stock.create( 'name'=>'Archer Daniels Midland Co.','ticker'=>'ADM','cik'=>7084,'fyed'=>'12-31')
Stock.create( 'name'=>'Arlington Asset Investment Corporation','ticker'=>'AI','cik'=>1209028,'fyed'=>'12-31')
Stock.create( 'name'=>'Armstrong World Industries, Inc.','ticker'=>'AWI','cik'=>7431,'fyed'=>'12-31')
Stock.create( 'name'=>'Arrow Electronics Inc','ticker'=>'ARW','cik'=>7536,'fyed'=>'12-31')
Stock.create( 'name'=>'Arthur J.Gallagher & Co.','ticker'=>'AJG','cik'=>354190,'fyed'=>'12-31')
Stock.create( 'name'=>'Artio Global Investors, Inc.','ticker'=>'ART','cik'=>1419178,'fyed'=>'12-31')
Stock.create( 'name'=>'Asbury Automotive Group, Inc.','ticker'=>'ABG','cik'=>1144980,'fyed'=>'12-31')
Stock.create( 'name'=>'Ashford Hospitality Trust, Inc.','ticker'=>'AHT','cik'=>1232582,'fyed'=>'12-31')
Stock.create( 'name'=>'Ashland Inc.','ticker'=>'ASH','cik'=>1305014,'fyed'=>'09-30')
Stock.create( 'name'=>'Aspen Insurance Holdings Limited','ticker'=>'AHL','cik'=>1267395,'fyed'=>'12-31')
Stock.create( 'name'=>'Assisted Living Concepts, Inc.','ticker'=>'ALC','cik'=>929994,'fyed'=>'12-31')
Stock.create( 'name'=>'Associated Estates Realty Corporation','ticker'=>'AEC','cik'=>911635,'fyed'=>'12-31')
Stock.create( 'name'=>'Assurant, Inc.','ticker'=>'AIZ','cik'=>1267238,'fyed'=>'12-31')
Stock.create( 'name'=>'Assured Guaranty Ltd.','ticker'=>'AGO','cik'=>1273813,'fyed'=>'12-31')
Stock.create( 'name'=>'Astoria Financial Corporation','ticker'=>'AF','cik'=>910322,'fyed'=>'12-31')
Stock.create( 'name'=>'AT&T Inc.','ticker'=>'T','cik'=>732717,'fyed'=>'12-31')
Stock.create( 'name'=>'Atlas Pipeline Partners, L.P.','ticker'=>'APL','cik'=>1092914,'fyed'=>'12-31')
Stock.create( 'name'=>'Atmos Energy Corporation','ticker'=>'ATO','cik'=>731802,'fyed'=>'09-30')
Stock.create( 'name'=>'Atwood Oceanics Inc.','ticker'=>'ATW','cik'=>8411,'fyed'=>'09-30')
Stock.create( 'name'=>'Autoliv Inc.','ticker'=>'ALV','cik'=>1034670,'fyed'=>'12-31')
Stock.create( 'name'=>'Autonation Inc','ticker'=>'AN','cik'=>350698,'fyed'=>'12-31')
Stock.create( 'name'=>'AutoZone, Inc','ticker'=>'AZO','cik'=>866787,'fyed'=>'08-30')
Stock.create( 'name'=>'AvalonBay Communities, Inc.','ticker'=>'AVB','cik'=>915912,'fyed'=>'12-31')
Stock.create( 'name'=>'Avery Dennison Corporation','ticker'=>'AVY','cik'=>8818,'fyed'=>'12-28')
Stock.create( 'name'=>'Avis Budget Group, Inc.','ticker'=>'CAR','cik'=>723612,'fyed'=>'12-31')
Stock.create( 'name'=>'Avista Corporation','ticker'=>'AVA','cik'=>104918,'fyed'=>'12-31')
Stock.create( 'name'=>'Avnet Inc','ticker'=>'AVT','cik'=>8858,'fyed'=>'06-28')
Stock.create( 'name'=>'Avon Products, Inc.','ticker'=>'AVP','cik'=>8868,'fyed'=>'12-31')
Stock.create( 'name'=>'Avx Corporation','ticker'=>'AVX','cik'=>859163,'fyed'=>'03-31')
Stock.create( 'name'=>'Axis Capital Holdings Limited','ticker'=>'AXS','cik'=>1214816,'fyed'=>'12-31')
Stock.create( 'name'=>'AZZ incorporated','ticker'=>'AZZ','cik'=>8947,'fyed'=>'02-28')
Stock.create( 'name'=>'B&G Foods, Inc.','ticker'=>'BGS','cik'=>1278027,'fyed'=>'12-28')
Stock.create( 'name'=>'The Babcock & Wilcox Company','ticker'=>'BWC','cik'=>1486957,'fyed'=>'12-31')
Stock.create( 'name'=>'Badger Meter, Inc.','ticker'=>'BMI','cik'=>9092,'fyed'=>'12-31')
Stock.create( 'name'=>'Baker Hughes Inc.','ticker'=>'BHI','cik'=>808362,'fyed'=>'12-31')
Stock.create( 'name'=>'Ball Corporation','ticker'=>'BLL','cik'=>9389,'fyed'=>'12-31')
Stock.create( 'name'=>'Bally Technologies, Inc.','ticker'=>'BYI','cik'=>2491,'fyed'=>'06-30')
Stock.create( 'name'=>'Baltic Trading Limited','ticker'=>'BALT','cik'=>1474042,'fyed'=>'12-31')
Stock.create( 'name'=>'Banco Latinoamericano De Comercio Exterior, S.A.','ticker'=>'BLX','cik'=>890541,'fyed'=>'')
Stock.create( 'name'=>'BancorpSouth Inc','ticker'=>'BXS','cik'=>701853,'fyed'=>'12-31')
Stock.create( 'name'=>'Bank of America Corporation','ticker'=>'BAC','cik'=>70858,'fyed'=>'12-31')
Stock.create( 'name'=>'Bank of Hawaii Corporation','ticker'=>'BOH','cik'=>46195,'fyed'=>'12-31')
Stock.create( 'name'=>'The Bank of New York Mellon Corporation','ticker'=>'BK','cik'=>1390777,'fyed'=>'12-31')
Stock.create( 'name'=>'The Bank of Nova Scotia','ticker'=>'BNS','cik'=>9631,'fyed'=>'12-31')
Stock.create( 'name'=>'BankAtlantic Bancorp, Inc.','ticker'=>'BBX','cik'=>921768,'fyed'=>'12-31')
Stock.create( 'name'=>'BankUnited, Inc.','ticker'=>'BKU','cik'=>1504008,'fyed'=>'12-31')
Stock.create( 'name'=>'Barnes & Noble Inc','ticker'=>'BKS','cik'=>890491,'fyed'=>'05-03')
Stock.create( 'name'=>'Barnes Group Inc','ticker'=>'B','cik'=>9984,'fyed'=>'12-31')
Stock.create( 'name'=>'Barrick Gold Corporation','ticker'=>'ABX','cik'=>756894,'fyed'=>'')
Stock.create( 'name'=>'Basic Energy Services, Inc.','ticker'=>'BAS','cik'=>1109189,'fyed'=>'12-31')
Stock.create( 'name'=>'Baxter International Inc','ticker'=>'BAX','cik'=>10456,'fyed'=>'12-31')
Stock.create( 'name'=>'Baytex Energy Corp.','ticker'=>'BTE','cik'=>1279495,'fyed'=>'')
Stock.create( 'name'=>'BB&T Corporation','ticker'=>'BBT','cik'=>92230,'fyed'=>'12-31')
Stock.create( 'name'=>'BCE Inc.','ticker'=>'BCE','cik'=>718940,'fyed'=>'')
Stock.create( 'name'=>'Beazer Homes USA, Inc.','ticker'=>'BZH','cik'=>915840,'fyed'=>'09-30')
Stock.create( 'name'=>'Becton, Dickinson and Company','ticker'=>'BDX','cik'=>10795,'fyed'=>'09-30')
Stock.create( 'name'=>'Belden Inc.','ticker'=>'BDC','cik'=>913142,'fyed'=>'12-31')
Stock.create( 'name'=>'Belo Corp.','ticker'=>'BLC','cik'=>356080,'fyed'=>'12-31')
Stock.create( 'name'=>'Bemis Company, Inc.','ticker'=>'BMS','cik'=>11199,'fyed'=>'12-31')
Stock.create( 'name'=>'Benchmark Electronics Inc','ticker'=>'BHE','cik'=>863436,'fyed'=>'12-31')
Stock.create( 'name'=>'Berkshire Hathaway Inc','ticker'=>'BRK.A','cik'=>1067983,'fyed'=>'12-31')
Stock.create( 'name'=>'Berry Petroleum Co.','ticker'=>'BRY','cik'=>778438,'fyed'=>'12-31')
Stock.create( 'name'=>'Best Buy Co.','ticker'=>'BBY','cik'=>764478,'fyed'=>'02-01')
Stock.create( 'name'=>'Big Lots, Inc.','ticker'=>'BIG','cik'=>768835,'fyed'=>'02-01')
Stock.create( 'name'=>'Biglari Holdings Inc.','ticker'=>'BH','cik'=>93859,'fyed'=>'09-24')
Stock.create( 'name'=>'Bill Barrett Corporation','ticker'=>'BBG','cik'=>1172139,'fyed'=>'12-31')
Stock.create( 'name'=>'BioMed Realty Trust, Inc.','ticker'=>'BMR','cik'=>1289236,'fyed'=>'12-31')
Stock.create( 'name'=>'Black Hills Corporation','ticker'=>'BKH','cik'=>1130464,'fyed'=>'12-31')
Stock.create( 'name'=>'BlackRock, Inc.','ticker'=>'BLK','cik'=>1364742,'fyed'=>'12-31')
Stock.create( 'name'=>'The Blackstone Group L.P.','ticker'=>'BX','cik'=>1393818,'fyed'=>'12-31')
Stock.create( 'name'=>'Blount International Inc','ticker'=>'BLT','cik'=>1001606,'fyed'=>'12-31')
Stock.create( 'name'=>'Bluegreen Corporation','ticker'=>'BXG','cik'=>778946,'fyed'=>'12-31')
Stock.create( 'name'=>'BlueLinx Holdings, Inc.','ticker'=>'BXC','cik'=>1301787,'fyed'=>'01-04')
Stock.create( 'name'=>'Blyth, Inc.','ticker'=>'BTH','cik'=>921503,'fyed'=>'12-31')
Stock.create( 'name'=>'BMO Financial Group','ticker'=>'BMO','cik'=>927971,'fyed'=>'')
Stock.create( 'name'=>'Boardwalk Pipeline Partners, LP','ticker'=>'BWP','cik'=>1336047,'fyed'=>'12-31')
Stock.create( 'name'=>'The Boeing Company','ticker'=>'BA','cik'=>12927,'fyed'=>'12-31')
Stock.create( 'name'=>'Boise Inc.','ticker'=>'BZ','cik'=>1391390,'fyed'=>'12-31')
Stock.create( 'name'=>'Booz Allen Hamilton Holding Corporation','ticker'=>'BAH','cik'=>1443646,'fyed'=>'03-31')
Stock.create( 'name'=>'BorgWarner Inc.','ticker'=>'BWA','cik'=>908255,'fyed'=>'12-31')
Stock.create( 'name'=>'Boston Beer Co.','ticker'=>'SAM','cik'=>949870,'fyed'=>'12-28')
Stock.create( 'name'=>'Boston Properties, Inc.','ticker'=>'BXP','cik'=>1037540,'fyed'=>'12-31')
Stock.create( 'name'=>'Boston Scientific Corporation','ticker'=>'BSX','cik'=>885725,'fyed'=>'12-31')
Stock.create( 'name'=>'Boyd Gaming Corporation','ticker'=>'BYD','cik'=>906553,'fyed'=>'12-31')
Stock.create( 'name'=>'BP Prudhoe Bay Royalty Trust','ticker'=>'BPT','cik'=>850033,'fyed'=>'12-31')
Stock.create( 'name'=>'Brady Corporation','ticker'=>'BRC','cik'=>746598,'fyed'=>'07-31')
Stock.create( 'name'=>'Brandywine Realty Trust','ticker'=>'BDN','cik'=>790816,'fyed'=>'12-31')
Stock.create( 'name'=>'BRE Properties, Inc.','ticker'=>'BRE','cik'=>9677,'fyed'=>'12-31')
Stock.create( 'name'=>'Bridgepoint Education, Inc.','ticker'=>'BPI','cik'=>1305323,'fyed'=>'12-31')
Stock.create( 'name'=>'Briggs & Stratton Corporation','ticker'=>'BGG','cik'=>14195,'fyed'=>'06-29')
Stock.create( 'name'=>'The Brink s Company','ticker'=>'BCO','cik'=>78890,'fyed'=>'12-31')
Stock.create( 'name'=>'Brinker International, Inc.','ticker'=>'EAT','cik'=>703351,'fyed'=>'06-25')
Stock.create( 'name'=>'Bristol-Myers Squibb Company','ticker'=>'BMY','cik'=>14272,'fyed'=>'12-31')
Stock.create( 'name'=>'Bristow Group Inc.','ticker'=>'BRS','cik'=>73887,'fyed'=>'03-31')
Stock.create( 'name'=>'Broadridge Financial Solutions, Inc.','ticker'=>'BR','cik'=>1383312,'fyed'=>'06-30')
Stock.create( 'name'=>'Brookdale Senior Living Inc.','ticker'=>'BKD','cik'=>1332349,'fyed'=>'12-31')
Stock.create( 'name'=>'Brookfield Asset Management Inc.','ticker'=>'BAM','cik'=>1001085,'fyed'=>'')
Stock.create( 'name'=>'Brookfield Infrastructure Partners L.P.','ticker'=>'BIP','cik'=>1406234,'fyed'=>'')
Stock.create( 'name'=>'Brookfield Properties Corporation','ticker'=>'BPO','cik'=>1085359,'fyed'=>'')
Stock.create( 'name'=>'Brown & Brown Insurance','ticker'=>'BRO','cik'=>79282,'fyed'=>'12-31')
Stock.create( 'name'=>'Brown Shoe Company, Inc.','ticker'=>'BWS','cik'=>14707,'fyed'=>'02-01')
Stock.create( 'name'=>'BRT Realty Trust','ticker'=>'BRT','cik'=>14846,'fyed'=>'09-30')
Stock.create( 'name'=>'Brunswick Corporation','ticker'=>'BC','cik'=>14930,'fyed'=>'12-31')
Stock.create( 'name'=>'Buckeye Partners Lp.','ticker'=>'BPL','cik'=>805022,'fyed'=>'12-31')
Stock.create( 'name'=>'Buckeye Technologies Inc.','ticker'=>'BKI','cik'=>899597,'fyed'=>'06-30')
Stock.create( 'name'=>'The Buckle, Inc.','ticker'=>'BKE','cik'=>885245,'fyed'=>'02-01')
Stock.create( 'name'=>'Build-A-Bear Workshop, Inc.','ticker'=>'BBW','cik'=>1113809,'fyed'=>'12-28')
Stock.create( 'name'=>'Bunge Limited','ticker'=>'BG','cik'=>1144519,'fyed'=>'12-31')
Stock.create( 'name'=>'C. R. Bard, Inc.','ticker'=>'BCR','cik'=>9892,'fyed'=>'12-31')
Stock.create( 'name'=>'Cabela s Incorporated','ticker'=>'CAB','cik'=>1267130,'fyed'=>'12-28')
Stock.create( 'name'=>'Cablevision Systems Corporation','ticker'=>'CVC','cik'=>1053112,'fyed'=>'12-31')
Stock.create( 'name'=>'Cabot Corporation','ticker'=>'CBT','cik'=>16040,'fyed'=>'09-30')
Stock.create( 'name'=>'Cabot Oil & Gas Corporation','ticker'=>'COG','cik'=>858470,'fyed'=>'12-31')
Stock.create( 'name'=>'CACI International Inc','ticker'=>'CACI','cik'=>16058,'fyed'=>'06-30')
Stock.create( 'name'=>'CAE Inc.','ticker'=>'CAE','cik'=>1173382,'fyed'=>'')
Stock.create( 'name'=>'CAI International, Inc.','ticker'=>'CAP','cik'=>1388430,'fyed'=>'12-31')
Stock.create( 'name'=>'Cal Dive International, Inc.','ticker'=>'DVR','cik'=>1364100,'fyed'=>'12-31')
Stock.create( 'name'=>'Calgon Carbon Corporation','ticker'=>'CCC','cik'=>812701,'fyed'=>'12-31')
Stock.create( 'name'=>'California Water Service Group','ticker'=>'CWT','cik'=>1035201,'fyed'=>'12-31')
Stock.create( 'name'=>'Calix, Inc.','ticker'=>'CALX','cik'=>1406666,'fyed'=>'12-31')
Stock.create( 'name'=>'Callaway Golf Company','ticker'=>'ELY','cik'=>837465,'fyed'=>'12-31')
Stock.create( 'name'=>'Callon Petroleum Co.','ticker'=>'CPE','cik'=>928022,'fyed'=>'12-31')
Stock.create( 'name'=>'Calpine Corporation','ticker'=>'CPN','cik'=>916457,'fyed'=>'12-31')
Stock.create( 'name'=>'Cambrex Corporation','ticker'=>'CBM','cik'=>820081,'fyed'=>'12-31')
Stock.create( 'name'=>'Camden Property Trust','ticker'=>'CPT','cik'=>906345,'fyed'=>'12-31')
Stock.create( 'name'=>'Cameco Corporation','ticker'=>'CCJ','cik'=>1009001,'fyed'=>'')
Stock.create( 'name'=>'Cameron International Corporation','ticker'=>'CAM','cik'=>941548,'fyed'=>'12-31')
Stock.create( 'name'=>'Campbell Soup Company','ticker'=>'CPB','cik'=>16732,'fyed'=>'08-03')
Stock.create( 'name'=>'Campus Crest Communities, Inc.','ticker'=>'CCG','cik'=>1490983,'fyed'=>'12-31')
Stock.create( 'name'=>'Canadian Imperial Bank of Commerce','ticker'=>'CM','cik'=>1045520,'fyed'=>'')
Stock.create( 'name'=>'Canadian National Railway Company','ticker'=>'CNI','cik'=>16868,'fyed'=>'')
Stock.create( 'name'=>'Canadian Natural Resources, Ltd.','ticker'=>'CNQ','cik'=>1017413,'fyed'=>'')
Stock.create( 'name'=>'Canadian Pacific Railway Limited','ticker'=>'CP','cik'=>16875,'fyed'=>'')
Stock.create( 'name'=>'Cantel Medical Corporation','ticker'=>'CMN','cik'=>19446,'fyed'=>'07-31')
Stock.create( 'name'=>'Capital One Financial Corporation','ticker'=>'COF','cik'=>927628,'fyed'=>'12-31')
Stock.create( 'name'=>'Capital Senior Living Corporation','ticker'=>'CSU','cik'=>1043000,'fyed'=>'12-31')
Stock.create( 'name'=>'CapitalSource, Inc.','ticker'=>'CSE','cik'=>1241199,'fyed'=>'12-31')
Stock.create( 'name'=>'CapLease, Inc.','ticker'=>'LSE','cik'=>1057689,'fyed'=>'12-31')
Stock.create( 'name'=>'Capstead Mortgage Corporation','ticker'=>'CMO','cik'=>766701,'fyed'=>'12-31')
Stock.create( 'name'=>'CARBO Ceramics Inc.','ticker'=>'CRR','cik'=>1009672,'fyed'=>'12-31')
Stock.create( 'name'=>'Cardinal Health Inc.','ticker'=>'CAH','cik'=>721371,'fyed'=>'06-30')
Stock.create( 'name'=>'Carefusion Corporation','ticker'=>'CFN','cik'=>1457543,'fyed'=>'06-30')
Stock.create( 'name'=>'Carlisle Companies Inc','ticker'=>'CSL','cik'=>790051,'fyed'=>'12-31')
Stock.create( 'name'=>'CarMax Group','ticker'=>'KMX','cik'=>1170010,'fyed'=>'02-28')
Stock.create( 'name'=>'Carnival Corporation','ticker'=>'CCL','cik'=>815097,'fyed'=>'11-30')
Stock.create( 'name'=>'Carpenter Technology Corp','ticker'=>'CRS','cik'=>17843,'fyed'=>'06-30')
Stock.create( 'name'=>'Carriage Services Inc','ticker'=>'CSV','cik'=>1016281,'fyed'=>'12-31')
Stock.create( 'name'=>'Carter s, Inc.','ticker'=>'CRI','cik'=>1060822,'fyed'=>'12-28')
Stock.create( 'name'=>'Cascade Corporation','ticker'=>'CASC','cik'=>18061,'fyed'=>'01-31')
Stock.create( 'name'=>'Cash America International, Inc.','ticker'=>'CSH','cik'=>807884,'fyed'=>'12-31')
Stock.create( 'name'=>'Caterpillar Inc.','ticker'=>'CAT','cik'=>18230,'fyed'=>'12-31')
Stock.create( 'name'=>'The Cato Corporation','ticker'=>'CATO','cik'=>18255,'fyed'=>'02-01')
Stock.create( 'name'=>'CBRE Group, Inc.','ticker'=>'CBRE','cik'=>1138118,'fyed'=>'12-31')
Stock.create( 'name'=>'CBIZ, Inc.','ticker'=>'CBZ','cik'=>944148,'fyed'=>'12-31')
Stock.create( 'name'=>'CBL & Associates Properties, Inc.','ticker'=>'CBL','cik'=>910612,'fyed'=>'12-31')
Stock.create( 'name'=>'CBS Corporation','ticker'=>'CBS','cik'=>813828,'fyed'=>'12-31')
Stock.create( 'name'=>'CDI Corporation','ticker'=>'CDI','cik'=>18396,'fyed'=>'12-31')
Stock.create( 'name'=>'CEC Entertainment, Inc.','ticker'=>'CEC','cik'=>813920,'fyed'=>'')
Stock.create( 'name'=>'Cedar Fair, L.P.','ticker'=>'FUN','cik'=>811532,'fyed'=>'12-31')
Stock.create( 'name'=>'Cedar Shopping Centers, Inc.','ticker'=>'CDR','cik'=>761648,'fyed'=>'12-31')
Stock.create( 'name'=>'Celadon Group, Inc.','ticker'=>'CGI','cik'=>865941,'fyed'=>'06-30')
Stock.create( 'name'=>'Celanese Corporation','ticker'=>'CE','cik'=>1306830,'fyed'=>'12-31')
Stock.create( 'name'=>'Celestica Inc.','ticker'=>'CLS','cik'=>1030894,'fyed'=>'')
Stock.create( 'name'=>'Cellcom Israel, Ltd.','ticker'=>'CEL','cik'=>1385145,'fyed'=>'')
Stock.create( 'name'=>'Cenovus Energy, Inc.','ticker'=>'CVE','cik'=>1475260,'fyed'=>'')
Stock.create( 'name'=>'Centene Corporation','ticker'=>'CNC','cik'=>1071739,'fyed'=>'12-31')
Stock.create( 'name'=>'CenterPoint Energy, Inc.','ticker'=>'CNP','cik'=>1130310,'fyed'=>'12-31')
Stock.create( 'name'=>'Central Pacific Financial Corp.','ticker'=>'CPF','cik'=>701347,'fyed'=>'12-31')
Stock.create( 'name'=>'CenturyLink, Inc.','ticker'=>'CTL','cik'=>18926,'fyed'=>'12-31')
Stock.create( 'name'=>'Cenveo, Inc.','ticker'=>'CVO','cik'=>920321,'fyed'=>'12-28')
Stock.create( 'name'=>'CF Industries Holdings, Inc.','ticker'=>'CF','cik'=>1324404,'fyed'=>'12-31')
Stock.create( 'name'=>'CGI Group Inc.','ticker'=>'GIB','cik'=>1061574,'fyed'=>'')
Stock.create( 'name'=>'Charles River Laboratories International, Inc.','ticker'=>'CRL','cik'=>1100682,'fyed'=>'12-28')
Stock.create( 'name'=>'The Charles Schwab Corporation','ticker'=>'SCHW','cik'=>316709,'fyed'=>'12-31')
Stock.create( 'name'=>'Chatham Lodging Trust','ticker'=>'CLDT','cik'=>1476045,'fyed'=>'12-31')
Stock.create( 'name'=>'Checkpoint Systems Inc.','ticker'=>'CKP','cik'=>215419,'fyed'=>'12-29')
Stock.create( 'name'=>'Chemed Corporation','ticker'=>'CHE','cik'=>19584,'fyed'=>'12-31')
Stock.create( 'name'=>'Chemtura Corporation','ticker'=>'CHMT','cik'=>1091862,'fyed'=>'12-31')
Stock.create( 'name'=>'Chesapeake Energy Corporation','ticker'=>'CHK','cik'=>895126,'fyed'=>'12-31')
Stock.create( 'name'=>'Chesapeake Lodging Trust','ticker'=>'CHSP','cik'=>1473078,'fyed'=>'12-31')
Stock.create( 'name'=>'Williams Partners L.P.','ticker'=>'WPZ','cik'=>1483096,'fyed'=>'12-31')
Stock.create( 'name'=>'Chesapeake Utilities Corporation','ticker'=>'CPK','cik'=>19745,'fyed'=>'12-31')
Stock.create( 'name'=>'Chevron Corporation','ticker'=>'CVX','cik'=>93410,'fyed'=>'12-31')
Stock.create( 'name'=>'Chicago Bridge & Iron Company','ticker'=>'CBI','cik'=>1027884,'fyed'=>'12-31')
Stock.create( 'name'=>'Chico s FAS, Inc.','ticker'=>'CHS','cik'=>897429,'fyed'=>'02-01')
Stock.create( 'name'=>'Chimera Investment Corporation','ticker'=>'CIM','cik'=>1409493,'fyed'=>'12-31')
Stock.create( 'name'=>'China Cord Blood Corporation','ticker'=>'CO','cik'=>1467808,'fyed'=>'')
Stock.create( 'name'=>'China Yuchai International Limited','ticker'=>'CYD','cik'=>932695,'fyed'=>'')
Stock.create( 'name'=>'Chipotle Mexican Grill, Inc.','ticker'=>'CMG','cik'=>1058090,'fyed'=>'12-31')
Stock.create( 'name'=>'Chiquita Brands International Inc.','ticker'=>'CQB','cik'=>101063,'fyed'=>'12-31')
Stock.create( 'name'=>'Choice Hotels International, Inc.','ticker'=>'CHH','cik'=>1046311,'fyed'=>'12-31')
Stock.create( 'name'=>'Christopher & Banks Corporation','ticker'=>'CBK','cik'=>883943,'fyed'=>'02-01')
Stock.create( 'name'=>'Chubb Corporation','ticker'=>'CB','cik'=>20171,'fyed'=>'12-31')
Stock.create( 'name'=>'Church & Dwight Co Inc.','ticker'=>'CHD','cik'=>313927,'fyed'=>'12-31')
Stock.create( 'name'=>'CIBER, Inc.','ticker'=>'CBR','cik'=>918581,'fyed'=>'12-31')
Stock.create( 'name'=>'CIGNA Corporation','ticker'=>'CI','cik'=>701221,'fyed'=>'12-31')
Stock.create( 'name'=>'Cimarex Energy Co.','ticker'=>'XEC','cik'=>1168054,'fyed'=>'12-31')
Stock.create( 'name'=>'Cincinnati Bell Inc.','ticker'=>'CBB','cik'=>716133,'fyed'=>'12-31')
Stock.create( 'name'=>'Cinemark Holdings, Inc','ticker'=>'CNK','cik'=>1385280,'fyed'=>'12-31')
Stock.create( 'name'=>'Circor International, Inc.','ticker'=>'CIR','cik'=>1091883,'fyed'=>'12-31')
Stock.create( 'name'=>'CIT Group Inc.','ticker'=>'CIT','cik'=>1171825,'fyed'=>'12-31')
Stock.create( 'name'=>'Citigroup Inc.','ticker'=>'C','cik'=>831001,'fyed'=>'12-31')
Stock.create( 'name'=>'Citizens, Inc.','ticker'=>'CIA','cik'=>24090,'fyed'=>'12-31')
Stock.create( 'name'=>'City National Corporation','ticker'=>'CYN','cik'=>201461,'fyed'=>'12-31')
Stock.create( 'name'=>'CLARCOR Inc.','ticker'=>'CLC','cik'=>20740,'fyed'=>'11-30')
Stock.create( 'name'=>'Clean Harbors, Inc.','ticker'=>'CLH','cik'=>822818,'fyed'=>'12-31')
Stock.create( 'name'=>'Clear Channel Outdoor Holdings, Inc.','ticker'=>'CCO','cik'=>1334978,'fyed'=>'12-31')
Stock.create( 'name'=>'Clearwater Paper Corporation','ticker'=>'CLW','cik'=>1441236,'fyed'=>'12-31')
Stock.create( 'name'=>'Cleco Corporation','ticker'=>'CNL','cik'=>1089819,'fyed'=>'12-31')
Stock.create( 'name'=>'Cliffs Natural Resources Inc.','ticker'=>'CLF','cik'=>764065,'fyed'=>'12-31')
Stock.create( 'name'=>'Clorox Corporation','ticker'=>'CLX','cik'=>21076,'fyed'=>'06-30')
Stock.create( 'name'=>'Cloud Peak Energy, Inc.','ticker'=>'CLD','cik'=>1441849,'fyed'=>'12-31')
Stock.create( 'name'=>'CMS Energy Corporation','ticker'=>'CMS','cik'=>811156,'fyed'=>'12-31')
Stock.create( 'name'=>'CNA Financial Corporation','ticker'=>'CNA','cik'=>21175,'fyed'=>'12-31')
Stock.create( 'name'=>'CNH Global N.V.','ticker'=>'CNH','cik'=>1024519,'fyed'=>'')
Stock.create( 'name'=>'CNO Financial Group, Inc.','ticker'=>'CNO','cik'=>1224608,'fyed'=>'12-31')
Stock.create( 'name'=>'Coach, Inc.','ticker'=>'COH','cik'=>1116132,'fyed'=>'06-28')
Stock.create( 'name'=>'Cobalt International Energy, Inc.','ticker'=>'CIE','cik'=>1471261,'fyed'=>'12-31')
Stock.create( 'name'=>'The Coca-Cola Company','ticker'=>'KO','cik'=>21344,'fyed'=>'12-31')
Stock.create( 'name'=>'Coca-Cola Enterprises Inc.','ticker'=>'CCE','cik'=>1491675,'fyed'=>'12-31')
Stock.create( 'name'=>'Coeur d Alene Mines Corporation','ticker'=>'CDE','cik'=>215466,'fyed'=>'12-31')
Stock.create( 'name'=>'Cohen & Steers, Inc.','ticker'=>'CNS','cik'=>1284812,'fyed'=>'12-31')
Stock.create( 'name'=>'Colfax Corporation','ticker'=>'CFX','cik'=>1420800,'fyed'=>'12-31')
Stock.create( 'name'=>'Colgate-Palmolive Co.','ticker'=>'CL','cik'=>21665,'fyed'=>'12-31')
Stock.create( 'name'=>'Collective Brands, Inc.','ticker'=>'PSS','cik'=>1060232,'fyed'=>'01-28')
Stock.create( 'name'=>'Colonial Properties Trust','ticker'=>'CLP','cik'=>909111,'fyed'=>'12-31')
Stock.create( 'name'=>'Colony Financial, Inc.','ticker'=>'CLNY','cik'=>1467076,'fyed'=>'12-31')
Stock.create( 'name'=>'Comerica Inc.','ticker'=>'CMA','cik'=>28412,'fyed'=>'12-31')
Stock.create( 'name'=>'Comfort Systems USA, Inc.','ticker'=>'FIX','cik'=>1035983,'fyed'=>'12-31')
Stock.create( 'name'=>'Commercial Metals Company','ticker'=>'CMC','cik'=>22444,'fyed'=>'08-31')
Stock.create( 'name'=>'CommonWealth REIT','ticker'=>'CWH','cik'=>803649,'fyed'=>'12-31')
Stock.create( 'name'=>'Community Bank System, Inc.','ticker'=>'CBU','cik'=>723188,'fyed'=>'12-31')
Stock.create( 'name'=>'Community Health Systems, Inc.','ticker'=>'CYH','cik'=>1108109,'fyed'=>'12-31')
Stock.create( 'name'=>'Compass Diversified Holdings','ticker'=>'CODI','cik'=>1345126,'fyed'=>'12-31')
Stock.create( 'name'=>'Compass Minerals International, Inc.','ticker'=>'CMP','cik'=>1227654,'fyed'=>'12-31')
Stock.create( 'name'=>'Computer Sciences Corporation','ticker'=>'CSC','cik'=>23082,'fyed'=>'03-28')
Stock.create( 'name'=>'CompX International Inc.','ticker'=>'CIX','cik'=>1049606,'fyed'=>'12-31')
Stock.create( 'name'=>'Comstock Resources Inc.','ticker'=>'CRK','cik'=>23194,'fyed'=>'12-31')
Stock.create( 'name'=>'Con-way Inc.','ticker'=>'CNW','cik'=>23675,'fyed'=>'12-31')
Stock.create( 'name'=>'ConAgra Foods, Inc.','ticker'=>'CAG','cik'=>23217,'fyed'=>'05-25')
Stock.create( 'name'=>'Concho Resources Inc.','ticker'=>'CXO','cik'=>1358071,'fyed'=>'12-31')
Stock.create( 'name'=>'ConocoPhillips','ticker'=>'COP','cik'=>1163165,'fyed'=>'12-31')
Stock.create( 'name'=>'CONSOL Energy Inc.','ticker'=>'CNX','cik'=>1070412,'fyed'=>'12-31')
Stock.create( 'name'=>'Consolidated Edison Inc.','ticker'=>'ED','cik'=>1047862,'fyed'=>'12-31')
Stock.create( 'name'=>'Consolidated Graphics, Inc.','ticker'=>'CGX','cik'=>921500,'fyed'=>'03-31')
Stock.create( 'name'=>'Constellation Brands, Inc.','ticker'=>'STZ','cik'=>16918,'fyed'=>'02-28')
Stock.create( 'name'=>'Continental Resources, Inc.','ticker'=>'CLR','cik'=>732834,'fyed'=>'12-31')
Stock.create( 'name'=>'Convergys Corporation','ticker'=>'CVG','cik'=>1062047,'fyed'=>'12-31')
Stock.create( 'name'=>'The Cooper Companies Inc.','ticker'=>'COO','cik'=>711404,'fyed'=>'10-31')
Stock.create( 'name'=>'Cooper Tire & Rubber Co.','ticker'=>'CTB','cik'=>24491,'fyed'=>'12-31')
Stock.create( 'name'=>'Copa Holdings, S.A.','ticker'=>'CPA','cik'=>1345105,'fyed'=>'')
Stock.create( 'name'=>'Core Laboratories','ticker'=>'CLB','cik'=>1000229,'fyed'=>'12-31')
Stock.create( 'name'=>'CoreLogic, INC.','ticker'=>'CLGX','cik'=>36047,'fyed'=>'12-31')
Stock.create( 'name'=>'CoreSite Realty Corporation','ticker'=>'COR','cik'=>1490892,'fyed'=>'12-31')
Stock.create( 'name'=>'Ingredion','ticker'=>'INGR','cik'=>1046257,'fyed'=>'12-31')
Stock.create( 'name'=>'Corning Inc.','ticker'=>'GLW','cik'=>24741,'fyed'=>'12-31')
Stock.create( 'name'=>'The Corporate Executive Board Company','ticker'=>'CEB','cik'=>1066104,'fyed'=>'12-31')
Stock.create( 'name'=>'Corporate Office Properties Trust','ticker'=>'OFC','cik'=>860546,'fyed'=>'12-31')
Stock.create( 'name'=>'Corrections Corporation of America','ticker'=>'CXW','cik'=>1070985,'fyed'=>'12-31')
Stock.create( 'name'=>'Cosan Limited','ticker'=>'CZZ','cik'=>1402902,'fyed'=>'')
Stock.create( 'name'=>'Costamare Inc.','ticker'=>'CMRE','cik'=>1503584,'fyed'=>'')
Stock.create( 'name'=>'Cott Corporation','ticker'=>'COT','cik'=>884713,'fyed'=>'12-28')
Stock.create( 'name'=>'Cousins Properties Inc.','ticker'=>'CUZ','cik'=>25232,'fyed'=>'12-31')
Stock.create( 'name'=>'Covance Inc.','ticker'=>'CVD','cik'=>1023131,'fyed'=>'12-31')
Stock.create( 'name'=>'Covanta Holding Corporation','ticker'=>'CVA','cik'=>225648,'fyed'=>'12-31')
Stock.create( 'name'=>'Covidien plc','ticker'=>'COV','cik'=>1385187,'fyed'=>'09-27')
Stock.create( 'name'=>'Crane Co.','ticker'=>'CR','cik'=>25445,'fyed'=>'12-31')
Stock.create( 'name'=>'Crawford & Company','ticker'=>'CRD.A','cik'=>25475,'fyed'=>'12-31')
Stock.create( 'name'=>'Credicorp, Ltd.','ticker'=>'BAP','cik'=>1001290,'fyed'=>'')
Stock.create( 'name'=>'CreXus Investment Corporation','ticker'=>'CXS','cik'=>1467027,'fyed'=>'12-31')
Stock.create( 'name'=>'Cross Timbers Royalty Trust','ticker'=>'CRT','cik'=>881787,'fyed'=>'12-31')
Stock.create( 'name'=>'Crown Castle International Corp.','ticker'=>'CCI','cik'=>1051470,'fyed'=>'12-31')
Stock.create( 'name'=>'Crown Holdings Inc.','ticker'=>'CCK','cik'=>1219601,'fyed'=>'12-31')
Stock.create( 'name'=>'CryoLife, Inc.','ticker'=>'CRY','cik'=>784199,'fyed'=>'12-31')
Stock.create( 'name'=>'Css Industries Inc.','ticker'=>'CSS','cik'=>20629,'fyed'=>'03-31')
Stock.create( 'name'=>'CSX Corporation','ticker'=>'CSX','cik'=>277948,'fyed'=>'12-27')
Stock.create( 'name'=>'CTS Corporation','ticker'=>'CTS','cik'=>26058,'fyed'=>'12-31')
Stock.create( 'name'=>'Cubic Corporation','ticker'=>'CUB','cik'=>26076,'fyed'=>'09-30')
Stock.create( 'name'=>'Cullen/Frost Bankers, Inc.','ticker'=>'CFR','cik'=>39263,'fyed'=>'12-31')
Stock.create( 'name'=>'Culp, Inc.','ticker'=>'CFI','cik'=>723603,'fyed'=>'04-27')
Stock.create( 'name'=>'Cummins Inc.','ticker'=>'CMI','cik'=>26172,'fyed'=>'12-31')
Stock.create( 'name'=>'Curtiss-Wright Corporation','ticker'=>'CW','cik'=>26324,'fyed'=>'12-31')
Stock.create( 'name'=>'CVR Energy, Inc.','ticker'=>'CVI','cik'=>1376139,'fyed'=>'12-31')
Stock.create( 'name'=>'CVS Caremark Corporation','ticker'=>'CVS','cik'=>64803,'fyed'=>'12-31')
Stock.create( 'name'=>'Cypress Semiconductor Corporation','ticker'=>'CY','cik'=>791915,'fyed'=>'12-29')
Stock.create( 'name'=>'Cypress Sharpridge Investments, Inc.','ticker'=>'CYS','cik'=>1396446,'fyed'=>'12-31')
Stock.create( 'name'=>'Cytec Industries Inc.','ticker'=>'CYT','cik'=>912513,'fyed'=>'12-31')
Stock.create( 'name'=>'D&B Corporation','ticker'=>'DNB','cik'=>1115222,'fyed'=>'12-31')
Stock.create( 'name'=>'D. R. Horton Inc.','ticker'=>'DHI','cik'=>882184,'fyed'=>'09-30')
Stock.create( 'name'=>'Dana Holding Corporation','ticker'=>'DAN','cik'=>26780,'fyed'=>'12-31')
Stock.create( 'name'=>'Danaos Corporation','ticker'=>'DAC','cik'=>1369241,'fyed'=>'')
Stock.create( 'name'=>'Darden Restaurants, Inc.','ticker'=>'DRI','cik'=>940944,'fyed'=>'05-25')
Stock.create( 'name'=>'Darling International Inc.','ticker'=>'DAR','cik'=>916540,'fyed'=>'12-28')
Stock.create( 'name'=>'Davita, Inc.','ticker'=>'DVA','cik'=>927066,'fyed'=>'12-31')
Stock.create( 'name'=>'DCP Midstream Partners, LP','ticker'=>'DPM','cik'=>1338065,'fyed'=>'12-31')
Stock.create( 'name'=>'DCT Industrial Trust Inc.','ticker'=>'DCT','cik'=>1170991,'fyed'=>'12-31')
Stock.create( 'name'=>'Dean Foods Company','ticker'=>'DF','cik'=>931336,'fyed'=>'12-31')
Stock.create( 'name'=>'Deere & Company','ticker'=>'DE','cik'=>315189,'fyed'=>'10-31')
Stock.create( 'name'=>'Delek US Holdings, Inc.','ticker'=>'DK','cik'=>1351541,'fyed'=>'12-31')
Stock.create( 'name'=>'Delta Air Lines, Inc.','ticker'=>'DAL','cik'=>27904,'fyed'=>'12-31')
Stock.create( 'name'=>'Deltic Timber Corporation','ticker'=>'DEL','cik'=>1022469,'fyed'=>'12-31')
Stock.create( 'name'=>'Deluxe Corporation','ticker'=>'DLX','cik'=>27996,'fyed'=>'12-31')
Stock.create( 'name'=>'Demand Media, Inc.','ticker'=>'DMD','cik'=>1365038,'fyed'=>'12-31')
Stock.create( 'name'=>'Denbury Resources Inc.','ticker'=>'DNR','cik'=>945764,'fyed'=>'12-31')
Stock.create( 'name'=>'Deutsche Bank AG','ticker'=>'DB','cik'=>948046,'fyed'=>'')
Stock.create( 'name'=>'Developers Diversified Realty Corporation','ticker'=>'DDR','cik'=>894315,'fyed'=>'12-31')
Stock.create( 'name'=>'Devon Energy Corporation','ticker'=>'DVN','cik'=>1090012,'fyed'=>'12-31')
Stock.create( 'name'=>'DeVry Inc.','ticker'=>'DV','cik'=>730464,'fyed'=>'06-30')
Stock.create( 'name'=>'DEX One Corporation','ticker'=>'DEXO','cik'=>30419,'fyed'=>'12-31')
Stock.create( 'name'=>'DHT Holdings, Inc.','ticker'=>'DHT','cik'=>1331284,'fyed'=>'')
Stock.create( 'name'=>'Diamond Offshore Drilling Inc.','ticker'=>'DO','cik'=>949039,'fyed'=>'12-31')
Stock.create( 'name'=>'DiamondRock Hospitality Company','ticker'=>'DRH','cik'=>1298946,'fyed'=>'12-31')
Stock.create( 'name'=>'Diana Shipping, Inc.','ticker'=>'DSX','cik'=>1318885,'fyed'=>'')
Stock.create( 'name'=>'Dice Holdings, Inc.','ticker'=>'DHX','cik'=>1393883,'fyed'=>'12-31')
Stock.create( 'name'=>'Dick s Sporting Goods, Inc.','ticker'=>'DKS','cik'=>1089063,'fyed'=>'02-01')
Stock.create( 'name'=>'Diebold Inc.','ticker'=>'DBD','cik'=>28823,'fyed'=>'12-31')
Stock.create( 'name'=>'Digital Realty Trust, Inc.','ticker'=>'DLR','cik'=>1297996,'fyed'=>'12-31')
Stock.create( 'name'=>'DigitalGlobe, Inc.','ticker'=>'DGI','cik'=>1208208,'fyed'=>'12-31')
Stock.create( 'name'=>'Dillards Inc.','ticker'=>'DDS','cik'=>28917,'fyed'=>'02-01')
Stock.create( 'name'=>'DineEquity, Inc.','ticker'=>'DIN','cik'=>49754,'fyed'=>'12-31')
Stock.create( 'name'=>'Discover Financial Services','ticker'=>'DFS','cik'=>1393612,'fyed'=>'12-31')
Stock.create( 'name'=>'Dolby Laboratories, Inc.','ticker'=>'DLB','cik'=>1308547,'fyed'=>'09-26')
Stock.create( 'name'=>'Dole Food Company, Inc.','ticker'=>'DOLE','cik'=>18169,'fyed'=>'12-29')
Stock.create( 'name'=>'Dollar General Corporation','ticker'=>'DG','cik'=>29534,'fyed'=>'01-31')
Stock.create( 'name'=>'Dollar Thrifty Automotive Group Inc.','ticker'=>'DTG','cik'=>1049108,'fyed'=>'12-31')
Stock.create( 'name'=>'Dominion Resources Black Warrior Trust','ticker'=>'DOM','cik'=>923680,'fyed'=>'12-31')
Stock.create( 'name'=>'Dominion Resources, Inc.','ticker'=>'D','cik'=>715957,'fyed'=>'12-31')
Stock.create( 'name'=>'Domino s Pizza, Inc.','ticker'=>'DPZ','cik'=>1286681,'fyed'=>'12-29')
Stock.create( 'name'=>'Domtar Corporation','ticker'=>'UFS','cik'=>1381531,'fyed'=>'12-31')
Stock.create( 'name'=>'Donaldson Co Inc.','ticker'=>'DCI','cik'=>29644,'fyed'=>'07-31')
Stock.create( 'name'=>'Doral Financial Corporation','ticker'=>'DRL','cik'=>840889,'fyed'=>'12-31')
Stock.create( 'name'=>'Douglas Dynamics, Inc.','ticker'=>'PLOW','cik'=>1287213,'fyed'=>'12-31')
Stock.create( 'name'=>'Douglas Emmett, Inc.','ticker'=>'DEI','cik'=>1364250,'fyed'=>'12-31')
Stock.create( 'name'=>'Dover Corp','ticker'=>'DOV','cik'=>29905,'fyed'=>'12-31')
Stock.create( 'name'=>'Dover Downs Gaming & Entertainment, Inc.','ticker'=>'DDE','cik'=>1162556,'fyed'=>'12-31')
Stock.create( 'name'=>'Dover Motorsports, Inc.','ticker'=>'DVD','cik'=>1017673,'fyed'=>'12-31')
Stock.create( 'name'=>'Dow Chemical Co.','ticker'=>'DOW','cik'=>29915,'fyed'=>'12-31')
Stock.create( 'name'=>'Dr Pepper Snapple Group, Inc.','ticker'=>'DPS','cik'=>1418135,'fyed'=>'12-31')
Stock.create( 'name'=>'Dresser-Rand Group Inc.','ticker'=>'DRC','cik'=>1316656,'fyed'=>'12-31')
Stock.create( 'name'=>'Drew Industries Incorporated','ticker'=>'DW','cik'=>763744,'fyed'=>'12-31')
Stock.create( 'name'=>'Dril-Quip, Inc.','ticker'=>'DRQ','cik'=>1042893,'fyed'=>'12-31')
Stock.create( 'name'=>'DST Systems Inc.','ticker'=>'DST','cik'=>27048,'fyed'=>'')
Stock.create( 'name'=>'DSW Inc.','ticker'=>'DSW','cik'=>1319947,'fyed'=>'02-01')
Stock.create( 'name'=>'DTE Energy Company','ticker'=>'DTE','cik'=>936340,'fyed'=>'12-31')
Stock.create( 'name'=>'Ducommun Inc','ticker'=>'DCO','cik'=>30305,'fyed'=>'12-31')
Stock.create( 'name'=>'Duff & Phelps Corporation','ticker'=>'DUF','cik'=>1397821,'fyed'=>'12-31')
Stock.create( 'name'=>'Duke Energy Corporation','ticker'=>'DUK','cik'=>1326160,'fyed'=>'12-31')
Stock.create( 'name'=>'Duke Realty Investments Inc.','ticker'=>'DRE','cik'=>783280,'fyed'=>'12-31')
Stock.create( 'name'=>'DuPont Fabros Technology','ticker'=>'DFT','cik'=>1407739,'fyed'=>'12-31')
Stock.create( 'name'=>'Dycom Industries Inc.','ticker'=>'DY','cik'=>67215,'fyed'=>'07-26')
Stock.create( 'name'=>'Dynegy Inc.','ticker'=>'DYN','cik'=>1379895,'fyed'=>'12-31')
Stock.create( 'name'=>'Dynex Capital Inc.','ticker'=>'DX','cik'=>826675,'fyed'=>'12-31')
# Stock.create( 'name'=>'E. I. du Pont de Nemours and Company (DuPont)','ticker'=>'DD','cik'=>30554,'fyed'=>'12-31')
Stock.create( 'name'=>'The E.W. Scripps Company','ticker'=>'SSP','cik'=>832428,'fyed'=>'12-31')
Stock.create( 'name'=>'Eagle Materials Inc.','ticker'=>'EXP','cik'=>918646,'fyed'=>'03-31')
Stock.create( 'name'=>'Eastgroup Properties Inc.','ticker'=>'EGP','cik'=>49600,'fyed'=>'12-31')
Stock.create( 'name'=>'Eastman Chemical Co.','ticker'=>'EMN','cik'=>915389,'fyed'=>'12-31')
Stock.create( 'name'=>'Eaton Corporation','ticker'=>'ETN','cik'=>1551182,'fyed'=>'12-31')
Stock.create( 'name'=>'Eaton Vance Corporation','ticker'=>'EV','cik'=>350797,'fyed'=>'10-31')
Stock.create( 'name'=>'ECA Marcellus Trust I','ticker'=>'ECT','cik'=>1487798,'fyed'=>'12-31')
Stock.create( 'name'=>'Ecolab Inc.','ticker'=>'ECL','cik'=>31462,'fyed'=>'12-31')
Stock.create( 'name'=>'Edison International','ticker'=>'EIX','cik'=>827052,'fyed'=>'12-31')
Stock.create( 'name'=>'Education Realty Trust, Inc.','ticker'=>'EDR','cik'=>1302343,'fyed'=>'12-31')
Stock.create( 'name'=>'Edwards Lifesciences Corp','ticker'=>'EW','cik'=>1099800,'fyed'=>'12-31')
Stock.create( 'name'=>'El Paso Electric Co.','ticker'=>'EE','cik'=>31978,'fyed'=>'12-31')
Stock.create( 'name'=>'Eli Lilly and Company','ticker'=>'LLY','cik'=>59478,'fyed'=>'12-31')
Stock.create( 'name'=>'Ellington Financial LLC','ticker'=>'EFC','cik'=>1411342,'fyed'=>'12-31')
Stock.create( 'name'=>'EMC Corporation','ticker'=>'EMC','cik'=>790070,'fyed'=>'12-31')
Stock.create( 'name'=>'EMCOR Group, Inc.','ticker'=>'EME','cik'=>105634,'fyed'=>'12-31')
Stock.create( 'name'=>'Emergent BioSolutions Inc.','ticker'=>'EBS','cik'=>1367644,'fyed'=>'12-31')
Stock.create( 'name'=>'Emeritus Corporation','ticker'=>'ESC','cik'=>1001604,'fyed'=>'12-31')
Stock.create( 'name'=>'Emerson Electric Co.','ticker'=>'EMR','cik'=>32604,'fyed'=>'09-30')
Stock.create( 'name'=>'Empire District Electric Co.','ticker'=>'EDE','cik'=>32689,'fyed'=>'12-31')
Stock.create( 'name'=>'Employers Holdings, Inc.','ticker'=>'EIG','cik'=>1379041,'fyed'=>'12-31')
Stock.create( 'name'=>'Emulex Corporation','ticker'=>'ELX','cik'=>350917,'fyed'=>'06-29')
Stock.create( 'name'=>'Enbridge Energy Management, L.L.C.','ticker'=>'EEQ','cik'=>1173911,'fyed'=>'12-31')
Stock.create( 'name'=>'Enbridge Energy Partners, L.P.','ticker'=>'EEP','cik'=>880285,'fyed'=>'12-31')
Stock.create( 'name'=>'Enbridge, Inc.','ticker'=>'ENB','cik'=>895728,'fyed'=>'')
Stock.create( 'name'=>'EnCana Corporation','ticker'=>'ECA','cik'=>1157806,'fyed'=>'')
Stock.create( 'name'=>'Endeavour International Corporation','ticker'=>'END','cik'=>1112412,'fyed'=>'12-31')
Stock.create( 'name'=>'Endurance Specialty Holdings Ltd.','ticker'=>'ENH','cik'=>1179755,'fyed'=>'12-31')
Stock.create( 'name'=>'Energen Corporation','ticker'=>'EGN','cik'=>277595,'fyed'=>'12-31')
Stock.create( 'name'=>'Energizer Holdings, Inc.','ticker'=>'ENR','cik'=>1096752,'fyed'=>'09-30')
Stock.create( 'name'=>'Energy Partners, Ltd.','ticker'=>'EPL','cik'=>750199,'fyed'=>'06-30')
Stock.create( 'name'=>'Energy Transfer Equity, L.P.','ticker'=>'ETE','cik'=>1276187,'fyed'=>'12-31')
Stock.create( 'name'=>'Energy Transfer Partners, L.P.','ticker'=>'ETP','cik'=>1012569,'fyed'=>'12-31')
Stock.create( 'name'=>'EnergySolutions, Inc.','ticker'=>'ES','cik'=>1393744,'fyed'=>'12-31')
Stock.create( 'name'=>'Enerplus Corporation','ticker'=>'ERF','cik'=>1126874,'fyed'=>'')
Stock.create( 'name'=>'EnerSys','ticker'=>'ENS','cik'=>1289308,'fyed'=>'03-31')
Stock.create( 'name'=>'Ennis, Inc.','ticker'=>'EBF','cik'=>33002,'fyed'=>'02-28')
Stock.create( 'name'=>'EnPro Industries, Inc.','ticker'=>'NPO','cik'=>1164863,'fyed'=>'12-31')
Stock.create( 'name'=>'Entercom Communications Corporation','ticker'=>'ETM','cik'=>1067837,'fyed'=>'12-31')
Stock.create( 'name'=>'Entergy Corporation','ticker'=>'ETR','cik'=>65984,'fyed'=>'')
Stock.create( 'name'=>'Enterprises Products Partners L.P','ticker'=>'EPD','cik'=>1061219,'fyed'=>'12-31')
Stock.create( 'name'=>'Entertainment Properties Trust','ticker'=>'EPR','cik'=>1045450,'fyed'=>'12-31')
Stock.create( 'name'=>'Entravision Communications Corporation','ticker'=>'EVC','cik'=>1109116,'fyed'=>'12-31')
Stock.create( 'name'=>'Envestnet, Inc.','ticker'=>'ENV','cik'=>1337619,'fyed'=>'12-31')
Stock.create( 'name'=>'Enzo Biochem, Inc.','ticker'=>'ENZ','cik'=>316253,'fyed'=>'07-31')
Stock.create( 'name'=>'EOG Resources, Inc.','ticker'=>'EOG','cik'=>821189,'fyed'=>'12-31')
Stock.create( 'name'=>'EQT Corporation','ticker'=>'EQT','cik'=>33213,'fyed'=>'12-31')
Stock.create( 'name'=>'Equal Energy Ltd.','ticker'=>'EQU','cik'=>1492832,'fyed'=>'12-31')
Stock.create( 'name'=>'Equifax Inc.','ticker'=>'EFX','cik'=>33185,'fyed'=>'12-31')
Stock.create( 'name'=>'Equity Lifestyle Properties, Inc.','ticker'=>'ELS','cik'=>895417,'fyed'=>'12-31')
Stock.create( 'name'=>'Equity One Inc.','ticker'=>'EQY','cik'=>1042810,'fyed'=>'12-31')
Stock.create( 'name'=>'Equity Residential','ticker'=>'EQR','cik'=>906107,'fyed'=>'12-31')
Stock.create( 'name'=>'Esco Techologies Inc.','ticker'=>'ESE','cik'=>866706,'fyed'=>'09-30')
Stock.create( 'name'=>'Essex Property Trust, Inc.','ticker'=>'ESS','cik'=>920522,'fyed'=>'12-31')
Stock.create( 'name'=>'Estee Lauder Companies Inc.','ticker'=>'EL','cik'=>1001250,'fyed'=>'06-30')
Stock.create( 'name'=>'Esterline Technologies Corporation','ticker'=>'ESL','cik'=>33619,'fyed'=>'10-31')
Stock.create( 'name'=>'Ethan Allen Interiors Inc.','ticker'=>'ETH','cik'=>896156,'fyed'=>'06-30')
Stock.create( 'name'=>'Evercore Partners Inc.','ticker'=>'EVR','cik'=>1360901,'fyed'=>'12-31')
Stock.create( 'name'=>'Everest Re Group Ltd.','ticker'=>'RE','cik'=>1095073,'fyed'=>'12-31')
Stock.create( 'name'=>'ExamWorks Group, Inc.','ticker'=>'EXAM','cik'=>1498021,'fyed'=>'12-31')
Stock.create( 'name'=>'Excel Trust, Inc.','ticker'=>'EXL','cik'=>1478950,'fyed'=>'12-31')
Stock.create( 'name'=>'EXCO Resources, Inc.','ticker'=>'XCO','cik'=>316300,'fyed'=>'12-31')
Stock.create( 'name'=>'Exelon Corporation','ticker'=>'EXC','cik'=>1109357,'fyed'=>'12-31')
Stock.create( 'name'=>'Express, Inc.','ticker'=>'EXPR','cik'=>1483510,'fyed'=>'12-31')
Stock.create( 'name'=>'Exterran Holdings, Inc.','ticker'=>'EXH','cik'=>1389050,'fyed'=>'12-31')
Stock.create( 'name'=>'Extra Space Storage, Inc.','ticker'=>'EXR','cik'=>1289490,'fyed'=>'12-31')
Stock.create( 'name'=>'Exxon Mobil Corporation','ticker'=>'XOM','cik'=>34088,'fyed'=>'12-31')
Stock.create( 'name'=>'F.N.B. Corporation','ticker'=>'FNB','cik'=>37808,'fyed'=>'12-31')
Stock.create( 'name'=>'Fabrinet','ticker'=>'FN','cik'=>1408710,'fyed'=>'06-27')
Stock.create( 'name'=>'FactSet Research Systems Inc.','ticker'=>'FDS','cik'=>1013237,'fyed'=>'08-31')
Stock.create( 'name'=>'Fair Isaac Corporation','ticker'=>'FICO','cik'=>814547,'fyed'=>'09-30')
Stock.create( 'name'=>'Fairchild Semiconductor Corporation','ticker'=>'FCS','cik'=>1036960,'fyed'=>'12-29')
Stock.create( 'name'=>'Family Dollar Stores Inc.','ticker'=>'FDO','cik'=>34408,'fyed'=>'08-30')
Stock.create( 'name'=>'FBL Financial Group Inc.','ticker'=>'FFG','cik'=>1012771,'fyed'=>'12-31')
Stock.create( 'name'=>'Federal Agricultural Mortgage Corporation','ticker'=>'AGM','cik'=>845877,'fyed'=>'12-31')
Stock.create( 'name'=>'Federal Realty Investment Trust','ticker'=>'FRT','cik'=>34903,'fyed'=>'12-31')
Stock.create( 'name'=>'Federal Signal Corporation','ticker'=>'FSS','cik'=>277509,'fyed'=>'12-31')
Stock.create( 'name'=>'Federated Investors Inc.','ticker'=>'FII','cik'=>1056288,'fyed'=>'12-31')
Stock.create( 'name'=>'FedEx Corporation','ticker'=>'FDX','cik'=>1048911,'fyed'=>'05-31')
Stock.create( 'name'=>'Feihe International, Inc.','ticker'=>'ADY','cik'=>789868,'fyed'=>'12-31')
Stock.create( 'name'=>'FelCor Lodging Trust','ticker'=>'FCH','cik'=>923603,'fyed'=>'12-31')
Stock.create( 'name'=>'Ferrellgas Partners L.P','ticker'=>'FGP','cik'=>922358,'fyed'=>'07-31')
Stock.create( 'name'=>'Ferro Corporation','ticker'=>'FOE','cik'=>35214,'fyed'=>'12-31')
Stock.create( 'name'=>'Fidelity National Financial Inc.','ticker'=>'FNF','cik'=>1331875,'fyed'=>'12-31')
Stock.create( 'name'=>'First Acceptance Corporation','ticker'=>'FAC','cik'=>1017907,'fyed'=>'12-31')
Stock.create( 'name'=>'First American Financial Corporation','ticker'=>'FAF','cik'=>1472787,'fyed'=>'12-31')
Stock.create( 'name'=>'First BanCorp','ticker'=>'FBP','cik'=>1057706,'fyed'=>'12-13')
Stock.create( 'name'=>'First Commonwealth Financial Corporation','ticker'=>'FCF','cik'=>712537,'fyed'=>'12-31')
Stock.create( 'name'=>'First Horizon National Corporation','ticker'=>'FHN','cik'=>36966,'fyed'=>'12-31')
Stock.create( 'name'=>'First Industrial Realty Trust, Inc.','ticker'=>'FR','cik'=>921825,'fyed'=>'12-31')
Stock.create( 'name'=>'The First Marblehead Corporation','ticker'=>'FMD','cik'=>1262279,'fyed'=>'06-30')
Stock.create( 'name'=>'First Potomac Realty Trust','ticker'=>'FPO','cik'=>1254595,'fyed'=>'12-31')
Stock.create( 'name'=>'First Republic Bank','ticker'=>'FRC','cik'=>1132979,'fyed'=>'')
Stock.create( 'name'=>'FirstEnergy Corp','ticker'=>'FE','cik'=>1031296,'fyed'=>'12-31')
Stock.create( 'name'=>'Five Star Quality Care, Inc.','ticker'=>'FVE','cik'=>1159281,'fyed'=>'12-31')
Stock.create( 'name'=>'Flagstar Bancorp, Inc.','ticker'=>'FBC','cik'=>1033012,'fyed'=>'12-31')
Stock.create( 'name'=>'Fleetcor Technologies, Inc.','ticker'=>'FLT','cik'=>1175454,'fyed'=>'12-31')
Stock.create( 'name'=>'Flotek Industries, Inc.','ticker'=>'FTK','cik'=>928054,'fyed'=>'12-31')
Stock.create( 'name'=>'Flowers Foods, Inc.','ticker'=>'FLO','cik'=>1128928,'fyed'=>'12-28')
Stock.create( 'name'=>'Flowserve Corporation','ticker'=>'FLS','cik'=>30625,'fyed'=>'12-31')
Stock.create( 'name'=>'Fluor Corporation','ticker'=>'FLR','cik'=>1124198,'fyed'=>'12-31')
Stock.create( 'name'=>'FMC Corporation','ticker'=>'FMC','cik'=>37785,'fyed'=>'12-31')
Stock.create( 'name'=>'FMC Technologies, Inc.','ticker'=>'FTI','cik'=>1135152,'fyed'=>'12-31')
Stock.create( 'name'=>'Foot Locker, Inc.','ticker'=>'FL','cik'=>850209,'fyed'=>'02-01')
Stock.create( 'name'=>'Ford Motor Company','ticker'=>'F','cik'=>37996,'fyed'=>'12-31')
Stock.create( 'name'=>'Forest Laboratories, Inc.','ticker'=>'FRX','cik'=>38074,'fyed'=>'03-31')
Stock.create( 'name'=>'Forest Oil Corporation','ticker'=>'FST','cik'=>38079,'fyed'=>'12-31')
Stock.create( 'name'=>'Forestar Group Inc.','ticker'=>'FOR','cik'=>1406587,'fyed'=>'12-31')
Stock.create( 'name'=>'Fortegra Financial Corporation','ticker'=>'FRF','cik'=>1495925,'fyed'=>'12-31')
Stock.create( 'name'=>'Fortress Investment Group LLC','ticker'=>'FIG','cik'=>1380393,'fyed'=>'12-31')
Stock.create( 'name'=>'Franklin Covey Company','ticker'=>'FC','cik'=>886206,'fyed'=>'08-31')
Stock.create( 'name'=>'Franklin Resources Inc.','ticker'=>'BEN','cik'=>38777,'fyed'=>'09-30')
Stock.create( 'name'=>'Freeport-McMoRan Copper & Gold Inc.','ticker'=>'FCX','cik'=>831259,'fyed'=>'12-31')
Stock.create( 'name'=>'Fresh Del Monte Produce Inc.','ticker'=>'FDP','cik'=>1047340,'fyed'=>'')
Stock.create( 'name'=>'Frontier Communications Corporation','ticker'=>'FTR','cik'=>20520,'fyed'=>'12-31')
Stock.create( 'name'=>'Frontline Ltd.','ticker'=>'FRO','cik'=>913290,'fyed'=>'')
Stock.create( 'name'=>'FTI Consulting, Inc.','ticker'=>'FCN','cik'=>887936,'fyed'=>'12-31')
Stock.create( 'name'=>'Furmanite Corporation','ticker'=>'FRM','cik'=>54441,'fyed'=>'12-31')
Stock.create( 'name'=>'Furniture Brands International, Inc.','ticker'=>'FBN','cik'=>50957,'fyed'=>'12-29')
Stock.create( 'name'=>'FutureFuel Corp.','ticker'=>'FF','cik'=>1337298,'fyed'=>'12-31')
Stock.create( 'name'=>'FXCM Inc.','ticker'=>'FXCM','cik'=>1499912,'fyed'=>'12-31')
Stock.create( 'name'=>'GAIN Capital Holdings, Inc.','ticker'=>'GCAP','cik'=>1444363,'fyed'=>'12-31')
Stock.create( 'name'=>'Gamco Investors, Inc.','ticker'=>'GBL','cik'=>1060349,'fyed'=>'12-31')
Stock.create( 'name'=>'GameStop Corp.','ticker'=>'GME','cik'=>1326380,'fyed'=>'02-01')
Stock.create( 'name'=>'Tegna Inc.','ticker'=>'TGNA','cik'=>39899,'fyed'=>'12-29')
Stock.create( 'name'=>'The Gap, Inc.','ticker'=>'GPS','cik'=>39911,'fyed'=>'02-01')
Stock.create( 'name'=>'Gardner Denver Inc.','ticker'=>'GDI','cik'=>916459,'fyed'=>'12-31')
Stock.create( 'name'=>'Gartner Inc.','ticker'=>'IT','cik'=>749251,'fyed'=>'12-31')
Stock.create( 'name'=>'Gatx Corporation','ticker'=>'GMT','cik'=>40211,'fyed'=>'12-31')
Stock.create( 'name'=>'Genco Shipping & Trading Limited','ticker'=>'GNK','cik'=>1326200,'fyed'=>'12-31')
Stock.create( 'name'=>'Gencorp Inc','ticker'=>'GY','cik'=>40888,'fyed'=>'11-30')
Stock.create( 'name'=>'Generac Holdings Inc.','ticker'=>'GNRC','cik'=>1474735,'fyed'=>'12-31')
Stock.create( 'name'=>'General Cable Corporation','ticker'=>'BGC','cik'=>886035,'fyed'=>'12-31')
Stock.create( 'name'=>'General Dynamics Corporation','ticker'=>'GD','cik'=>40533,'fyed'=>'12-31')
Stock.create( 'name'=>'General Electric Company','ticker'=>'GE','cik'=>40545,'fyed'=>'12-31')
Stock.create( 'name'=>'GGP, Inc','ticker'=>'GGP','cik'=>895648,'fyed'=>'')
Stock.create( 'name'=>'General Mills, Inc.','ticker'=>'GIS','cik'=>40704,'fyed'=>'05-25')
Stock.create( 'name'=>'General Motors Company','ticker'=>'GM','cik'=>1467858,'fyed'=>'12-31')
Stock.create( 'name'=>'General Steel Holdings, Inc.','ticker'=>'GSI','cik'=>1239188,'fyed'=>'12-31')
Stock.create( 'name'=>'Genesco Inc.','ticker'=>'GCO','cik'=>18498,'fyed'=>'')
Stock.create( 'name'=>'Genesee & Wyoming, Inc.','ticker'=>'GWR','cik'=>1012620,'fyed'=>'12-31')
Stock.create( 'name'=>'Genon Energy, Inc.','ticker'=>'GEN','cik'=>1126294,'fyed'=>'12-31')
Stock.create( 'name'=>'Genpact Limited','ticker'=>'G','cik'=>1398659,'fyed'=>'12-31')
Stock.create( 'name'=>'Genuine Parts Company','ticker'=>'GPC','cik'=>40987,'fyed'=>'12-31')
Stock.create( 'name'=>'Genworth Financial, Inc.','ticker'=>'GNW','cik'=>1276520,'fyed'=>'12-31')
Stock.create( 'name'=>'Gerova Financial Group, Ltd.','ticker'=>'GFC','cik'=>1407437,'fyed'=>'')
Stock.create( 'name'=>'Getty Realty Corp.','ticker'=>'GTY','cik'=>1052752,'fyed'=>'12-31')
Stock.create( 'name'=>'GFI Group Inc.','ticker'=>'GFIG','cik'=>1292426,'fyed'=>'12-31')
Stock.create( 'name'=>'Gildan Activewear Inc.','ticker'=>'GIL','cik'=>1061894,'fyed'=>'')
Stock.create( 'name'=>'Glatfelter','ticker'=>'GLT','cik'=>41719,'fyed'=>'12-31')
Stock.create( 'name'=>'Glimcher Realty Trust','ticker'=>'GRT','cik'=>912898,'fyed'=>'12-31')
Stock.create( 'name'=>'Global Cash Access Holdings','ticker'=>'GCA','cik'=>1318568,'fyed'=>'12-31')
Stock.create( 'name'=>'Global Geophysical Services, Inc.','ticker'=>'GGS','cik'=>1311486,'fyed'=>'12-31')
Stock.create( 'name'=>'Global Partners LP','ticker'=>'GLP','cik'=>1323468,'fyed'=>'12-31')
Stock.create( 'name'=>'Global Payments Inc.','ticker'=>'GPN','cik'=>1123360,'fyed'=>'12-31')
Stock.create( 'name'=>'Global Ship Lease, Inc','ticker'=>'GSL','cik'=>1430725,'fyed'=>'')
Stock.create( 'name'=>'GMX Resources Inc.','ticker'=>'GMXR','cik'=>1127342,'fyed'=>'12-31')
Stock.create( 'name'=>'Goldcorp Inc.','ticker'=>'GG','cik'=>919239,'fyed'=>'')
Stock.create( 'name'=>'Goldman Sachs Group Inc.','ticker'=>'GS','cik'=>886982,'fyed'=>'12-31')
Stock.create( 'name'=>'Goodrich Petroleum Corporation','ticker'=>'GDP','cik'=>943861,'fyed'=>'12-31')
Stock.create( 'name'=>'Goodyear Tire & Rubber Co.','ticker'=>'GT','cik'=>42582,'fyed'=>'12-31')
Stock.create( 'name'=>'Government Properties Income Trust','ticker'=>'GOV','cik'=>1456772,'fyed'=>'12-31')
Stock.create( 'name'=>'GP Strategies Corporation','ticker'=>'GPX','cik'=>70415,'fyed'=>'12-31')
Stock.create( 'name'=>'Graco Inc.','ticker'=>'GGG','cik'=>42888,'fyed'=>'12-27')
Stock.create( 'name'=>'Graftech International, Ltd.','ticker'=>'GTI','cik'=>931148,'fyed'=>'12-31')
Stock.create( 'name'=>'Granite Construction, Inc.','ticker'=>'GVA','cik'=>861459,'fyed'=>'12-31')
Stock.create( 'name'=>'Graphic Packaging Holding Company','ticker'=>'GPK','cik'=>886239,'fyed'=>'')
Stock.create( 'name'=>'Gray Television, Inc.','ticker'=>'GTN','cik'=>43196,'fyed'=>'12-31')
Stock.create( 'name'=>'Great Northern Iron Ore Properties','ticker'=>'GNI','cik'=>43410,'fyed'=>'12-31')
Stock.create( 'name'=>'Great Plains Energy Inc.','ticker'=>'GXP','cik'=>1143068,'fyed'=>'12-31')
Stock.create( 'name'=>'Greatbatch, Inc.','ticker'=>'GB','cik'=>1114483,'fyed'=>'01-03')
Stock.create( 'name'=>'Green Dot Corporation','ticker'=>'GDOT','cik'=>1386278,'fyed'=>'12-31')
Stock.create( 'name'=>'The Greenbrier Companies, Inc.','ticker'=>'GBX','cik'=>923120,'fyed'=>'08-31')
Stock.create( 'name'=>'Greenhill & Co., Inc.','ticker'=>'GHL','cik'=>1282977,'fyed'=>'12-31')
Stock.create( 'name'=>'Greif, Inc.','ticker'=>'GEF','cik'=>43920,'fyed'=>'10-31')
Stock.create( 'name'=>'Griffon Corporation','ticker'=>'GFF','cik'=>50725,'fyed'=>'09-30')
Stock.create( 'name'=>'Group 1 Automotive Inc.','ticker'=>'GPI','cik'=>1031203,'fyed'=>'12-31')
Stock.create( 'name'=>'Guess?, Inc.','ticker'=>'GES','cik'=>912463,'fyed'=>'02-01')
Stock.create( 'name'=>'Guggenheim Strategic Opportunities Fund Common Shares','ticker'=>'GOF','cik'=>1380936,'fyed'=>'')
Stock.create( 'name'=>'GulfMark Offshore, Inc.','ticker'=>'GLF','cik'=>1030749,'fyed'=>'12-31')
Stock.create( 'name'=>'H&R Block Inc.','ticker'=>'HRB','cik'=>12659,'fyed'=>'04-30')
Stock.create( 'name'=>'H.B. Fuller Company','ticker'=>'FUL','cik'=>39368,'fyed'=>'11-30')
Stock.create( 'name'=>'Haemonetics Corp','ticker'=>'HAE','cik'=>313143,'fyed'=>'03-29')
Stock.create( 'name'=>'Halliburton Company','ticker'=>'HAL','cik'=>45012,'fyed'=>'12-31')
Stock.create( 'name'=>'Hanesbrands Inc.','ticker'=>'HBI','cik'=>1359841,'fyed'=>'12-28')
Stock.create( 'name'=>'Hanger Orthopedic Group Inc.','ticker'=>'HGR','cik'=>722723,'fyed'=>'12-31')
Stock.create( 'name'=>'The Hanover Insurance Group','ticker'=>'THG','cik'=>944695,'fyed'=>'12-31')
Stock.create( 'name'=>'Harbinger Group Inc.','ticker'=>'HRG','cik'=>109177,'fyed'=>'09-30')
Stock.create( 'name'=>'Harley-Davidson, Inc.','ticker'=>'HOG','cik'=>793952,'fyed'=>'12-31')
Stock.create( 'name'=>'Harman International Ind. Inc.','ticker'=>'HAR','cik'=>800459,'fyed'=>'06-30')
Stock.create( 'name'=>'Harris Corporation','ticker'=>'HRS','cik'=>202058,'fyed'=>'06-27')
Stock.create( 'name'=>'Harsco Corporation','ticker'=>'HSC','cik'=>45876,'fyed'=>'12-31')
Stock.create( 'name'=>'Harte Hanks Inc.','ticker'=>'HHS','cik'=>45919,'fyed'=>'12-31')
Stock.create( 'name'=>'Hartford Financial Services Group Inc.','ticker'=>'HIG','cik'=>874766,'fyed'=>'12-31')
Stock.create( 'name'=>'Harvest Natural Resources, Inc.','ticker'=>'HNR','cik'=>845289,'fyed'=>'12-31')
Stock.create( 'name'=>'Hatteras Financial Corp.','ticker'=>'HTS','cik'=>1419521,'fyed'=>'12-31')
Stock.create( 'name'=>'Haverty Furniture Companies Inc.','ticker'=>'HVT','cik'=>216085,'fyed'=>'12-31')
Stock.create( 'name'=>'Hawaiian Electric Industries Inc.','ticker'=>'HE','cik'=>354707,'fyed'=>'12-31')
Stock.create( 'name'=>'HCA Holdings, Inc.','ticker'=>'HCA','cik'=>860730,'fyed'=>'12-31')
Stock.create( 'name'=>'HCC Insurance Holdings, Inc.','ticker'=>'HCC','cik'=>888919,'fyed'=>'12-31')
Stock.create( 'name'=>'HCP, Inc.','ticker'=>'HCP','cik'=>765880,'fyed'=>'12-31')
Stock.create( 'name'=>'Headwaters Incorporated','ticker'=>'HW','cik'=>1003344,'fyed'=>'09-30')
Stock.create( 'name'=>'Health Care REIT, Inc.','ticker'=>'HCN','cik'=>766704,'fyed'=>'12-31')
Stock.create( 'name'=>'Health Net, Inc.','ticker'=>'HNT','cik'=>916085,'fyed'=>'12-31')
Stock.create( 'name'=>'Healthcare Realty Trust Inc.','ticker'=>'HR','cik'=>899749,'fyed'=>'12-31')
Stock.create( 'name'=>'HealthSouth Corporation','ticker'=>'HLS','cik'=>785161,'fyed'=>'12-31')
Stock.create( 'name'=>'Heartland Payment Systems, Inc.','ticker'=>'HPY','cik'=>1144354,'fyed'=>'12-31')
Stock.create( 'name'=>'Hecla Mining Co.','ticker'=>'HL','cik'=>719413,'fyed'=>'12-31')
Stock.create( 'name'=>'HEICO Corporation','ticker'=>'HEI','cik'=>46619,'fyed'=>'10-31')
Stock.create( 'name'=>'Helix Energy Solutions Group, Inc.','ticker'=>'HLX','cik'=>866829,'fyed'=>'12-31')
Stock.create( 'name'=>'Helmerich & Payne Inc.','ticker'=>'HP','cik'=>46765,'fyed'=>'09-30')
Stock.create( 'name'=>'Herbalife Ltd.','ticker'=>'HLF','cik'=>1180262,'fyed'=>'12-31')
Stock.create( 'name'=>'Hersha Hospitality Trust','ticker'=>'HT','cik'=>1063344,'fyed'=>'12-31')
Stock.create( 'name'=>'The Hershey Company','ticker'=>'HSY','cik'=>47111,'fyed'=>'12-31')
Stock.create( 'name'=>'Hertz Global Holdings, Inc.','ticker'=>'HTZ','cik'=>1364479,'fyed'=>'12-31')
Stock.create( 'name'=>'Hess Corporation','ticker'=>'HES','cik'=>4447,'fyed'=>'12-31')
Stock.create( 'name'=>'Hewlett Packard Co.','ticker'=>'HPQ','cik'=>47217,'fyed'=>'10-31')
Stock.create( 'name'=>'Hexcel Corporation','ticker'=>'HXL','cik'=>717605,'fyed'=>'12-31')
Stock.create( 'name'=>'HFF, Inc.','ticker'=>'HF','cik'=>1380509,'fyed'=>'12-31')
Stock.create( 'name'=>'hhgregg, Inc.','ticker'=>'HGG','cik'=>1396279,'fyed'=>'03-31')
Stock.create( 'name'=>'Higher One Holdings, Inc.','ticker'=>'ONE','cik'=>1486800,'fyed'=>'12-31')
Stock.create( 'name'=>'Highwoods Properties Inc.','ticker'=>'HIW','cik'=>921082,'fyed'=>'12-31')
Stock.create( 'name'=>'Hill International, Inc.','ticker'=>'HIL','cik'=>1287808,'fyed'=>'12-31')
Stock.create( 'name'=>'Hill-Rom Holdings, Inc.','ticker'=>'HRC','cik'=>47518,'fyed'=>'09-30')
Stock.create( 'name'=>'Hillenbrand, Inc.','ticker'=>'HI','cik'=>1417398,'fyed'=>'09-30')
Stock.create( 'name'=>'Hilltop Holdings Inc.','ticker'=>'HTH','cik'=>1265131,'fyed'=>'12-31')
Stock.create( 'name'=>'HNI Corporation','ticker'=>'HNI','cik'=>48287,'fyed'=>'12-28')
Stock.create( 'name'=>'Holly Energy Partners, L.P.','ticker'=>'HEP','cik'=>1283140,'fyed'=>'12-31')
Stock.create( 'name'=>'Home Depot, Inc.','ticker'=>'HD','cik'=>354950,'fyed'=>'02-02')
Stock.create( 'name'=>'Home Properties, Inc.','ticker'=>'HME','cik'=>923118,'fyed'=>'12-31')
Stock.create( 'name'=>'Honeywell International, Inc.','ticker'=>'HON','cik'=>773840,'fyed'=>'12-31')
Stock.create( 'name'=>'Horace Mann Educators Corporation','ticker'=>'HMN','cik'=>850141,'fyed'=>'12-31')
Stock.create( 'name'=>'Hormel Foods Corporation','ticker'=>'HRL','cik'=>48465,'fyed'=>'10-26')
Stock.create( 'name'=>'Hornbeck Offshore Services, Inc.','ticker'=>'HOS','cik'=>1131227,'fyed'=>'12-31')
Stock.create( 'name'=>'Hospira, Inc.','ticker'=>'HSP','cik'=>1274057,'fyed'=>'12-31')
Stock.create( 'name'=>'Hospitality Properties Trust','ticker'=>'HPT','cik'=>945394,'fyed'=>'12-31')
Stock.create( 'name'=>'Host Hotels & Resorts, Inc.','ticker'=>'HST','cik'=>1070750,'fyed'=>'12-31')
Stock.create( 'name'=>'Hovnanian Enterprises, Inc.','ticker'=>'HOV','cik'=>357294,'fyed'=>'10-31')
Stock.create( 'name'=>'The Howard Hughes Corporation','ticker'=>'HHC','cik'=>1498828,'fyed'=>'12-31')
Stock.create( 'name'=>'Hudson Pacific Properties, Inc.','ticker'=>'HPP','cik'=>1482512,'fyed'=>'12-31')
Stock.create( 'name'=>'Hugoton Royalty Trust','ticker'=>'HGT','cik'=>862022,'fyed'=>'')
Stock.create( 'name'=>'Humana Inc.','ticker'=>'HUM','cik'=>49071,'fyed'=>'12-31')
Stock.create( 'name'=>'Huntington Ingalls Industries, Inc.','ticker'=>'HII','cik'=>1501585,'fyed'=>'12-31')
Stock.create( 'name'=>'Huntsman Corporation','ticker'=>'HUN','cik'=>1307954,'fyed'=>'12-31')
Stock.create( 'name'=>'Hyatt Hotels Corporation','ticker'=>'H','cik'=>1468174,'fyed'=>'12-31')
Stock.create( 'name'=>'IAMGOLD Corporation','ticker'=>'IAG','cik'=>1203464,'fyed'=>'')
Stock.create( 'name'=>'Icahn Enterprises L.P.','ticker'=>'IEP','cik'=>813762,'fyed'=>'12-31')
Stock.create( 'name'=>'Idacorp Inc.','ticker'=>'IDA','cik'=>1057877,'fyed'=>'12-31')
Stock.create( 'name'=>'IDEX Corporation','ticker'=>'IEX','cik'=>832101,'fyed'=>'12-31')
Stock.create( 'name'=>'IDT Corporation','ticker'=>'IDT','cik'=>1005731,'fyed'=>'07-31')
Stock.create( 'name'=>'IESI-BFC Ltd.','ticker'=>'BIN','cik'=>1318220,'fyed'=>'')
Stock.create( 'name'=>'IHS Inc.','ticker'=>'IHS','cik'=>1316360,'fyed'=>'11-30')
Stock.create( 'name'=>'Illinois Tool Works Inc.','ticker'=>'ITW','cik'=>49826,'fyed'=>'12-31')
Stock.create( 'name'=>'Imation Corporation','ticker'=>'IMN','cik'=>1014111,'fyed'=>'')
Stock.create( 'name'=>'IMAX Corporation','ticker'=>'IMAX','cik'=>921582,'fyed'=>'12-31')
Stock.create( 'name'=>'Imperial Holdings, Inc.','ticker'=>'IFT','cik'=>1494448,'fyed'=>'12-31')
Stock.create( 'name'=>'Independence Holding Company','ticker'=>'IHC','cik'=>701869,'fyed'=>'12-31')
Stock.create( 'name'=>'Ingersoll-Rand plc','ticker'=>'IR','cik'=>1466258,'fyed'=>'12-31')
Stock.create( 'name'=>'Ingram Micro Inc.','ticker'=>'IM','cik'=>1018003,'fyed'=>'12-28')
Stock.create( 'name'=>'Inland Real Estate Corporation','ticker'=>'IRC','cik'=>923284,'fyed'=>'12-31')
Stock.create( 'name'=>'Inphi Corporation','ticker'=>'IPHI','cik'=>1160958,'fyed'=>'12-31')
Stock.create( 'name'=>'Insperity, Inc.','ticker'=>'NSP','cik'=>1000753,'fyed'=>'12-31')
Stock.create( 'name'=>'Integrys Energy Group, Inc.','ticker'=>'TEG','cik'=>916863,'fyed'=>'12-31')
Stock.create( 'name'=>'IntercontinentalExchange, Inc.','ticker'=>'ICE','cik'=>1571949,'fyed'=>'12-31')
Stock.create( 'name'=>'Interline Brands, Inc.','ticker'=>'IBI','cik'=>1292900,'fyed'=>'12-27')
Stock.create( 'name'=>'Intermec, Inc.','ticker'=>'IN','cik'=>1044590,'fyed'=>'12-31')
Stock.create( 'name'=>'International Business Machines Corporation','ticker'=>'IBM','cik'=>51143,'fyed'=>'12-31')
Stock.create( 'name'=>'International Flavors & Fragrances Inc.','ticker'=>'IFF','cik'=>51253,'fyed'=>'12-31')
Stock.create( 'name'=>'International Game Technology','ticker'=>'IGT','cik'=>353944,'fyed'=>'09-30')
Stock.create( 'name'=>'International Paper Co.','ticker'=>'IP','cik'=>51434,'fyed'=>'12-31')
Stock.create( 'name'=>'International Rectifier Corporation','ticker'=>'IRF','cik'=>316793,'fyed'=>'06-29')
Stock.create( 'name'=>'International Shipholding Corporation','ticker'=>'ISH','cik'=>278041,'fyed'=>'12-31')
Stock.create( 'name'=>'Interpublic Group of Companies Inc.','ticker'=>'IPG','cik'=>51644,'fyed'=>'12-31')
Stock.create( 'name'=>'InterXion Holding N.V.','ticker'=>'INXN','cik'=>1500866,'fyed'=>'')
Stock.create( 'name'=>'IntraLinks Holdings, Inc.','ticker'=>'IL','cik'=>1488075,'fyed'=>'12-31')
Stock.create( 'name'=>'Intrepid Potash, Inc.','ticker'=>'IPI','cik'=>1421461,'fyed'=>'12-31')
Stock.create( 'name'=>'Invacare Corporation','ticker'=>'IVC','cik'=>742112,'fyed'=>'12-31')
Stock.create( 'name'=>'Invesco Ltd.','ticker'=>'IVZ','cik'=>914208,'fyed'=>'12-31')
Stock.create( 'name'=>'Invesco Mortgage Capital Inc.','ticker'=>'IVR','cik'=>1437071,'fyed'=>'12-31')
Stock.create( 'name'=>'Investment Technology Group Inc.','ticker'=>'ITG','cik'=>920424,'fyed'=>'12-31')
Stock.create( 'name'=>'Ion Geophysical Corporation','ticker'=>'IO','cik'=>866609,'fyed'=>'12-31')
Stock.create( 'name'=>'Iron Mountain Inc.','ticker'=>'IRM','cik'=>1020569,'fyed'=>'12-31')
Stock.create( 'name'=>'ITC Holdings Corp.','ticker'=>'ITC','cik'=>1317630,'fyed'=>'12-31')
Stock.create( 'name'=>'ITT Corporation','ticker'=>'ITT','cik'=>216228,'fyed'=>'12-31')
Stock.create( 'name'=>'ITT Educational Services Inc.','ticker'=>'ESI','cik'=>922475,'fyed'=>'12-31')
Stock.create( 'name'=>'Ivanhoe Mines Ltd.','ticker'=>'IVN','cik'=>1589239,'fyed'=>'')
Stock.create( 'name'=>'J. M. Smucker Company','ticker'=>'SJM','cik'=>91419,'fyed'=>'04-30')
Stock.create( 'name'=>'J.C. Penney Company Inc.','ticker'=>'JCP','cik'=>1166126,'fyed'=>'02-02')
Stock.create( 'name'=>'Jabil Circuit Inc.','ticker'=>'JBL','cik'=>898293,'fyed'=>'08-31')
Stock.create( 'name'=>'Jacobs Engineering Group Inc.','ticker'=>'JEC','cik'=>52988,'fyed'=>'09-26')
Stock.create( 'name'=>'Janus Capital Group Inc.','ticker'=>'JNS','cik'=>1065865,'fyed'=>'12-31')
Stock.create( 'name'=>'Jarden Corporation','ticker'=>'JAH','cik'=>895655,'fyed'=>'12-31')
Stock.create( 'name'=>'Jefferies Group LLC','ticker'=>'_JEF_','cik'=>1084580,'fyed'=>'11-30')
Stock.create( 'name'=>'JMP Group Inc.','ticker'=>'JMP','cik'=>1383803,'fyed'=>'12-31')
Stock.create( 'name'=>'John Bean Technologies Corporation','ticker'=>'JBT','cik'=>1433660,'fyed'=>'12-31')
Stock.create( 'name'=>'Johnson & Johnson','ticker'=>'JNJ','cik'=>200406,'fyed'=>'12-29')
Stock.create( 'name'=>'Johnson Controls, Inc.','ticker'=>'JCI','cik'=>53669,'fyed'=>'09-30')
Stock.create( 'name'=>'The Jones Group Inc.','ticker'=>'JNY','cik'=>874016,'fyed'=>'12-31')
Stock.create( 'name'=>'Jones Lang Lasalle Inc.','ticker'=>'JLL','cik'=>1037976,'fyed'=>'12-31')
Stock.create( 'name'=>'Journal Communications, Inc.','ticker'=>'JRN','cik'=>1232241,'fyed'=>'12-29')
Stock.create( 'name'=>'JPMorgan Chase & Co.','ticker'=>'JPM','cik'=>19617,'fyed'=>'12-31')
Stock.create( 'name'=>'Juniper Networks','ticker'=>'JNPR','cik'=>1043604,'fyed'=>'12-31')
Stock.create( 'name'=>'K12 Inc.','ticker'=>'LRN','cik'=>1157408,'fyed'=>'06-30')
Stock.create( 'name'=>'Kadant Inc.','ticker'=>'KAI','cik'=>886346,'fyed'=>'12-28')
Stock.create( 'name'=>'Kansas City Southern','ticker'=>'KSU','cik'=>54480,'fyed'=>'12-31')
Stock.create( 'name'=>'KapStone Paper and Packaging Corporation','ticker'=>'KS','cik'=>1325281,'fyed'=>'12-31')
Stock.create( 'name'=>'KAR Auction Services','ticker'=>'KAR','cik'=>1395942,'fyed'=>'12-31')
Stock.create( 'name'=>'KB Home','ticker'=>'KBH','cik'=>795266,'fyed'=>'11-30')
Stock.create( 'name'=>'KBR, Inc.','ticker'=>'KBR','cik'=>1357615,'fyed'=>'12-31')
Stock.create( 'name'=>'Kellogg Company','ticker'=>'K','cik'=>55067,'fyed'=>'12-28')
Stock.create( 'name'=>'KEMET Corporation','ticker'=>'KEM','cik'=>887730,'fyed'=>'03-31')
Stock.create( 'name'=>'Kennametal Inc.','ticker'=>'KMT','cik'=>55242,'fyed'=>'06-30')
Stock.create( 'name'=>'Kenneth Cole Productions Inc.','ticker'=>'KCP','cik'=>921691,'fyed'=>'12-31')
Stock.create( 'name'=>'Key Energy Services, Inc.','ticker'=>'KEG','cik'=>318996,'fyed'=>'12-31')
Stock.create( 'name'=>'KeyCorp','ticker'=>'KEY','cik'=>91576,'fyed'=>'12-31')
Stock.create( 'name'=>'Kid Brands, Inc.','ticker'=>'KID','cik'=>739878,'fyed'=>'12-31')
Stock.create( 'name'=>'Kilroy Realty Corporation','ticker'=>'KRC','cik'=>1025996,'fyed'=>'12-31')
Stock.create( 'name'=>'Kimberly-Clark Corporation','ticker'=>'KMB','cik'=>55785,'fyed'=>'12-31')
Stock.create( 'name'=>'Kimco Realty Corporation','ticker'=>'KIM','cik'=>879101,'fyed'=>'12-31')
Stock.create( 'name'=>'Kinder Morgan Energy Partners L.P','ticker'=>'KMP','cik'=>888228,'fyed'=>'12-31')
Stock.create( 'name'=>'Kinder Morgan Management, LLC','ticker'=>'KMR','cik'=>1135017,'fyed'=>'12-31')
Stock.create( 'name'=>'Kinder Morgan, Inc.','ticker'=>'KMI','cik'=>1506307,'fyed'=>'12-31')
Stock.create( 'name'=>'Kindred Healthcare, Inc.','ticker'=>'KND','cik'=>1060009,'fyed'=>'12-31')
Stock.create( 'name'=>'Kingsway Financial Services Inc','ticker'=>'KFS','cik'=>1072627,'fyed'=>'12-31')
Stock.create( 'name'=>'Kinross Gold Corporation','ticker'=>'KGC','cik'=>701818,'fyed'=>'')
Stock.create( 'name'=>'Kirby Corporation','ticker'=>'KEX','cik'=>56047,'fyed'=>'12-31')
Stock.create( 'name'=>'Kite Realty Group Trust','ticker'=>'KRG','cik'=>1286043,'fyed'=>'12-31')
Stock.create( 'name'=>'KKR Financial Holdings LLC','ticker'=>'KFN','cik'=>1386926,'fyed'=>'12-31')
Stock.create( 'name'=>'Knight Capital Group, Inc.','ticker'=>'KCG','cik'=>1569391,'fyed'=>'12-31')
Stock.create( 'name'=>'Knight Transportation, Inc.','ticker'=>'KNX','cik'=>929452,'fyed'=>'12-31')
Stock.create( 'name'=>'Knoll, Inc.','ticker'=>'KNL','cik'=>1011570,'fyed'=>'12-31')
Stock.create( 'name'=>'Kohls Corporation','ticker'=>'KSS','cik'=>885639,'fyed'=>'02-01')
Stock.create( 'name'=>'Koppers Holdings Inc.','ticker'=>'KOP','cik'=>1315257,'fyed'=>'12-31')
Stock.create( 'name'=>'Korn Ferry International','ticker'=>'KFY','cik'=>56679,'fyed'=>'04-30')
Stock.create( 'name'=>'Mondelez International, Inc.','ticker'=>'MLDZ','cik'=>1103982,'fyed'=>'12-31')
Stock.create( 'name'=>'Kraton Performance Polymers, Inc.','ticker'=>'KRA','cik'=>1321646,'fyed'=>'12-31')
Stock.create( 'name'=>'Krispy Kreme Doughnuts, Inc.','ticker'=>'KKD','cik'=>1100270,'fyed'=>'02-02')
Stock.create( 'name'=>'Kroger Co.','ticker'=>'KR','cik'=>56873,'fyed'=>'02-01')
Stock.create( 'name'=>'KRONOS Worldwide, Inc.','ticker'=>'KRO','cik'=>1257640,'fyed'=>'12-31')
Stock.create( 'name'=>'L 3 Communication Holdings Inc.','ticker'=>'LLL','cik'=>1056239,'fyed'=>'12-31')
Stock.create( 'name'=>'La-Z-Boy Incorporated','ticker'=>'LZB','cik'=>57131,'fyed'=>'04-26')
Stock.create( 'name'=>'Laboratory Corporation of America Holdings','ticker'=>'LH','cik'=>920148,'fyed'=>'12-31')
Stock.create( 'name'=>'Laclede Group, Inc.','ticker'=>'LG','cik'=>1126956,'fyed'=>'09-30')
Stock.create( 'name'=>'Landauer, Inc.','ticker'=>'LDR','cik'=>825410,'fyed'=>'09-30')
Stock.create( 'name'=>'Las Vegas Sands Corp.','ticker'=>'LVS','cik'=>1300514,'fyed'=>'12-31')
Stock.create( 'name'=>'Lasalle Hotel Properties','ticker'=>'LHO','cik'=>1053532,'fyed'=>'12-31')
Stock.create( 'name'=>'Lazard Ltd.','ticker'=>'LAZ','cik'=>1311370,'fyed'=>'12-31')
Stock.create( 'name'=>'LeapFrog Enterprises Inc.','ticker'=>'LF','cik'=>1138951,'fyed'=>'12-31')
Stock.create( 'name'=>'Lee Enterprises, Incorporated','ticker'=>'LEE','cik'=>58361,'fyed'=>'09-28')
Stock.create( 'name'=>'Legg Mason Inc.','ticker'=>'LM','cik'=>704051,'fyed'=>'03-31')
Stock.create( 'name'=>'Leggett & Platt Inc.','ticker'=>'LEG','cik'=>58492,'fyed'=>'12-31')
Stock.create( 'name'=>'Lennar Corporation','ticker'=>'LEN','cik'=>920760,'fyed'=>'11-30')
Stock.create( 'name'=>'Lennox International Inc.','ticker'=>'LII','cik'=>1069202,'fyed'=>'12-31')
Stock.create( 'name'=>'Jefferies Financial Group Inc.','ticker'=>'JEF','cik'=>96223,'fyed'=>'12-31')
Stock.create( 'name'=>'Lexington Realty Trust','ticker'=>'LXP','cik'=>910108,'fyed'=>'12-31')
Stock.create( 'name'=>'Lexmark International, Inc.','ticker'=>'LXK','cik'=>1001288,'fyed'=>'12-31')
Stock.create( 'name'=>'Liberty Property Trust','ticker'=>'LRY','cik'=>921112,'fyed'=>'12-31')
Stock.create( 'name'=>'Life Time Fitness, Inc.','ticker'=>'LTM','cik'=>1076195,'fyed'=>'12-31')
Stock.create( 'name'=>'L Brands Inc.','ticker'=>'LB','cik'=>57139,'fyed'=>'')
Stock.create( 'name'=>'Lin TV Corp.','ticker'=>'TVL','cik'=>1166789,'fyed'=>'12-31')
Stock.create( 'name'=>'Lincoln National Corporation','ticker'=>'LNC','cik'=>59558,'fyed'=>'12-31')
Stock.create( 'name'=>'Lindsay Corporation','ticker'=>'LNN','cik'=>836157,'fyed'=>'08-31')
Stock.create( 'name'=>'Lions Gate Entertainment Corp.','ticker'=>'LGF','cik'=>929351,'fyed'=>'03-31')
Stock.create( 'name'=>'Lithia Motors, Inc.','ticker'=>'LAD','cik'=>1023128,'fyed'=>'12-31')
Stock.create( 'name'=>'Live Nation Entertainment, Inc.','ticker'=>'LYV','cik'=>1335258,'fyed'=>'12-31')
Stock.create( 'name'=>'Lockheed Martin','ticker'=>'LMT','cik'=>936468,'fyed'=>'12-31')
Stock.create( 'name'=>'Loews Corporation','ticker'=>'L','cik'=>60086,'fyed'=>'12-31')
Stock.create( 'name'=>'Lorillard, Inc.','ticker'=>'LO','cik'=>1424847,'fyed'=>'12-31')
Stock.create( 'name'=>'Louisiana-Pacific Corporation','ticker'=>'LPX','cik'=>60519,'fyed'=>'12-31')
Stock.create( 'name'=>'Lowe s Companies, Inc.','ticker'=>'LOW','cik'=>60667,'fyed'=>'01-31')
Stock.create( 'name'=>'LSI Corporation','ticker'=>'LSI','cik'=>703360,'fyed'=>'12-31')
Stock.create( 'name'=>'LTC Properties Inc.','ticker'=>'LTC','cik'=>887905,'fyed'=>'12-31')
Stock.create( 'name'=>'Luby s, Inc.','ticker'=>'LUB','cik'=>16099,'fyed'=>'08-27')
Stock.create( 'name'=>'Lumber Liquidators Holdings, Inc.','ticker'=>'LL','cik'=>1396033,'fyed'=>'12-31')
Stock.create( 'name'=>'Lydall, Inc.','ticker'=>'LDL','cik'=>60977,'fyed'=>'12-31')
Stock.create( 'name'=>'LyondellBasell Industries N.V.','ticker'=>'LYB','cik'=>1489393,'fyed'=>'12-31')
Stock.create( 'name'=>'M&T Bank Corporation','ticker'=>'MTB','cik'=>36270,'fyed'=>'12-31')
Stock.create( 'name'=>'M.D.C. Holdings, Inc.','ticker'=>'MDC','cik'=>773141,'fyed'=>'12-31')
Stock.create( 'name'=>'M/I Homes, Inc.','ticker'=>'MHO','cik'=>799292,'fyed'=>'')
Stock.create( 'name'=>'Macerich Co.','ticker'=>'MAC','cik'=>912242,'fyed'=>'12-31')
Stock.create( 'name'=>'Mack Cali Realty Corporation','ticker'=>'CLI','cik'=>924901,'fyed'=>'12-31')
Stock.create( 'name'=>'Macquarie Infrastructure Company Trust','ticker'=>'MIC','cik'=>1289788,'fyed'=>'')
Stock.create( 'name'=>'Macy s Inc.','ticker'=>'M','cik'=>794367,'fyed'=>'02-01')
Stock.create( 'name'=>'Magellan Midstream Partners, L.P.','ticker'=>'MMP','cik'=>1126975,'fyed'=>'12-31')
Stock.create( 'name'=>'Magna International Inc.','ticker'=>'MGA','cik'=>749098,'fyed'=>'')
Stock.create( 'name'=>'MagnaChip Semiconductor Corporation','ticker'=>'MX','cik'=>1325702,'fyed'=>'12-31')
Stock.create( 'name'=>'Magnetek, Inc.','ticker'=>'MAG','cik'=>751085,'fyed'=>'12-29')
Stock.create( 'name'=>'Magnum Hunter Resources Corporation','ticker'=>'MHR','cik'=>1335190,'fyed'=>'12-31')
Stock.create( 'name'=>'Maidenform Brands, Inc.','ticker'=>'MFB','cik'=>1323531,'fyed'=>'12-29')
Stock.create( 'name'=>'Main Street Capital Corporation','ticker'=>'MAIN','cik'=>1396440,'fyed'=>'')
Stock.create( 'name'=>'Manitowoc Company, Inc.','ticker'=>'MTW','cik'=>61986,'fyed'=>'12-31')
Stock.create( 'name'=>'Manpower Inc.','ticker'=>'MAN','cik'=>871763,'fyed'=>'12-31')
Stock.create( 'name'=>'Manulife Financial Corporation','ticker'=>'MFC','cik'=>1086888,'fyed'=>'')
Stock.create( 'name'=>'Marathon Oil Corporation','ticker'=>'MRO','cik'=>101778,'fyed'=>'12-31')
Stock.create( 'name'=>'Marcus Corporation','ticker'=>'MCS','cik'=>62234,'fyed'=>'05-29')
Stock.create( 'name'=>'Marine Products Corporation','ticker'=>'MPX','cik'=>1129155,'fyed'=>'12-31')
Stock.create( 'name'=>'Marinemax Inc.','ticker'=>'HZO','cik'=>1057060,'fyed'=>'09-30')
Stock.create( 'name'=>'Markel Corporation','ticker'=>'MKL','cik'=>1096343,'fyed'=>'12-31')
Stock.create( 'name'=>'MarkWest Energy Partners, L.P.','ticker'=>'MWE','cik'=>1166036,'fyed'=>'12-31')
Stock.create( 'name'=>'Marriott International, Inc.','ticker'=>'MAR','cik'=>1048286,'fyed'=>'12-31')
Stock.create( 'name'=>'Marsh & McLennan Companies Inc.','ticker'=>'MMC','cik'=>62709,'fyed'=>'12-31')
Stock.create( 'name'=>'Martha Stewart Living Omnimedia, Inc.','ticker'=>'MSO','cik'=>1091801,'fyed'=>'12-31')
Stock.create( 'name'=>'Martin Marietta Materials Inc.','ticker'=>'MLM','cik'=>916076,'fyed'=>'12-31')
Stock.create( 'name'=>'Masco Corporation','ticker'=>'MAS','cik'=>62996,'fyed'=>'12-31')
Stock.create( 'name'=>'MasTec, Inc. ','ticker'=>'MTZ','cik'=>15615,'fyed'=>'12-31')
Stock.create( 'name'=>'MasterCard Incorporated','ticker'=>'MA','cik'=>1141391,'fyed'=>'12-31')
Stock.create( 'name'=>'Materion Corporation','ticker'=>'MTRN','cik'=>1104657,'fyed'=>'12-31')
Stock.create( 'name'=>'Mattel, Inc.','ticker'=>'MAT','cik'=>63276,'fyed'=>'12-31')
Stock.create( 'name'=>'Maui Land & Pineapple Company, Inc.','ticker'=>'MLP','cik'=>63330,'fyed'=>'12-31')
Stock.create( 'name'=>'MAXIMUS, Inc.','ticker'=>'MMS','cik'=>1032220,'fyed'=>'09-30')
Stock.create( 'name'=>'MaxLinear, Inc.','ticker'=>'MXL','cik'=>1288469,'fyed'=>'12-31')
Stock.create( 'name'=>'MBIA Inc.','ticker'=>'MBI','cik'=>814585,'fyed'=>'12-31')
Stock.create( 'name'=>'The McClatchy Company','ticker'=>'MNI','cik'=>1056087,'fyed'=>'12-29')
Stock.create( 'name'=>'McCormick & Company, Inc.','ticker'=>'MKC','cik'=>63754,'fyed'=>'11-30')
Stock.create( 'name'=>'McDonald s Corporation','ticker'=>'MCD','cik'=>63908,'fyed'=>'12-31')
Stock.create( 'name'=>'S&P Global Inc.','ticker'=>'SPGI','cik'=>64040,'fyed'=>'12-31')
Stock.create( 'name'=>'McKesson Corporation','ticker'=>'MCK','cik'=>927653,'fyed'=>'03-31')
Stock.create( 'name'=>'McMoRan Exploration Co.','ticker'=>'MMR','cik'=>64279,'fyed'=>'12-31', 'listed'=>false)
Stock.create( 'name'=>'MDU Resources Group, Inc.','ticker'=>'MDU','cik'=>67716,'fyed'=>'12-31')
Stock.create( 'name'=>'Mead Johnson Nutrition Company','ticker'=>'MJN','cik'=>1452575,'fyed'=>'12-31')
Stock.create( 'name'=>'Meadowbrook Insurance Group Inc.','ticker'=>'MIG','cik'=>949156,'fyed'=>'12-31')
Stock.create( 'name'=>'MeadWestvaco Corporation','ticker'=>'MWV','cik'=>1159297,'fyed'=>'12-31')
Stock.create( 'name'=>'Media General','ticker'=>'MEG','cik'=>216539,'fyed'=>'12-31')
Stock.create( 'name'=>'Medical Properties Trust, Inc.','ticker'=>'MPW','cik'=>1287865,'fyed'=>'12-31')
Stock.create( 'name'=>'Medifast, Inc.','ticker'=>'MED','cik'=>910329,'fyed'=>'12-31')
Stock.create( 'name'=>'Mednax, Inc.','ticker'=>'MD','cik'=>893949,'fyed'=>'12-31')
Stock.create( 'name'=>'Medtronic Inc.','ticker'=>'MDT','cik'=>64670,'fyed'=>'04-25')
Stock.create( 'name'=>'Men s Wearhouse Inc.','ticker'=>'MW','cik'=>884217,'fyed'=>'02-01')
Stock.create( 'name'=>'Merck & Co Inc.','ticker'=>'MRK','cik'=>310158,'fyed'=>'12-31')
Stock.create( 'name'=>'Mercury General Corporation','ticker'=>'MCY','cik'=>64996,'fyed'=>'12-31')
Stock.create( 'name'=>'Meredith Corporation','ticker'=>'MDP','cik'=>65011,'fyed'=>'06-30')
Stock.create( 'name'=>'Meritage Homes Corporation','ticker'=>'MTH','cik'=>833079,'fyed'=>'12-31')
Stock.create( 'name'=>'Meritor, Inc.','ticker'=>'MTOR','cik'=>1113256,'fyed'=>'09-28')
Stock.create( 'name'=>'Mesa Royalty Trust','ticker'=>'MTR','cik'=>313364,'fyed'=>'')
Stock.create( 'name'=>'Mesabi Trust','ticker'=>'MSB','cik'=>65172,'fyed'=>'01-31')
Stock.create( 'name'=>'Metals USA Holdings Corp.','ticker'=>'MUSA','cik'=>1573516,'fyed'=>'12-31')
Stock.create( 'name'=>'Methode Electronics, Inc.','ticker'=>'MEI','cik'=>65270,'fyed'=>'05-03')
Stock.create( 'name'=>'MetLife, Inc.','ticker'=>'MET','cik'=>1099219,'fyed'=>'12-31')
Stock.create( 'name'=>'Mettler Toledo International Inc.','ticker'=>'MTD','cik'=>1037646,'fyed'=>'12-31')
Stock.create( 'name'=>'MFA Financial, Inc.','ticker'=>'MFA','cik'=>1055160,'fyed'=>'12-31')
Stock.create( 'name'=>'MGIC Investment Corporation','ticker'=>'MTG','cik'=>876437,'fyed'=>'12-31')
Stock.create( 'name'=>'MGM Resorts International','ticker'=>'MGM','cik'=>789570,'fyed'=>'12-31')
Stock.create( 'name'=>'Mid America Apartment Communities Inc.','ticker'=>'MAA','cik'=>912595,'fyed'=>'12-31')
Stock.create( 'name'=>'Miller Industries Inc.','ticker'=>'MLR','cik'=>924822,'fyed'=>'12-31')
Stock.create( 'name'=>'Mine Safety Appliances Company','ticker'=>'MSA','cik'=>66570,'fyed'=>'12-31')
Stock.create( 'name'=>'Minerals Technologies Inc.','ticker'=>'MTX','cik'=>891014,'fyed'=>'12-31')
Stock.create( 'name'=>'MISTRAS Group, Inc.','ticker'=>'MG','cik'=>1436126,'fyed'=>'05-31')
Stock.create( 'name'=>'Modine Manufacturing Company','ticker'=>'MOD','cik'=>67347,'fyed'=>'03-31')
Stock.create( 'name'=>'Mohawk Industries Inc.','ticker'=>'MHK','cik'=>851968,'fyed'=>'12-31')
Stock.create( 'name'=>'Molina Healthcare, Inc.','ticker'=>'MOH','cik'=>1179929,'fyed'=>'12-31')
Stock.create( 'name'=>'Molson Coors Brewing Company','ticker'=>'TAP','cik'=>24545,'fyed'=>'12-31')
Stock.create( 'name'=>'Molycorp, Inc.','ticker'=>'MCP','cik'=>1489137,'fyed'=>'12-31')
Stock.create( 'name'=>'MoneyGram International, Inc.','ticker'=>'MGI','cik'=>1273931,'fyed'=>'12-31')
Stock.create( 'name'=>'Monmouth Real Estate Investment Corporation','ticker'=>'MNR','cik'=>67625,'fyed'=>'09-30')
Stock.create( 'name'=>'Monsanto Company','ticker'=>'MON','cik'=>1110783,'fyed'=>'08-31')
Stock.create( 'name'=>'Monster Worldwide, Inc.','ticker'=>'MWW','cik'=>1020416,'fyed'=>'12-31')
Stock.create( 'name'=>'Montpelier Re Holdings Ltd.','ticker'=>'MRH','cik'=>1165880,'fyed'=>'12-31')
Stock.create( 'name'=>'Moody s Corporation','ticker'=>'MCO','cik'=>1059556,'fyed'=>'12-31')
Stock.create( 'name'=>'Moog Inc.','ticker'=>'MOG.A','cik'=>67887,'fyed'=>'09-27')
Stock.create( 'name'=>'Morgan Stanley','ticker'=>'MS','cik'=>895421,'fyed'=>'12-31')
Stock.create( 'name'=>'The Mosaic Company','ticker'=>'MOS','cik'=>1285785,'fyed'=>'12-31')
Stock.create( 'name'=>'Motorola Solutions, Inc.','ticker'=>'MSI','cik'=>68505,'fyed'=>'12-31')
Stock.create( 'name'=>'Movado Group, Inc.','ticker'=>'MOV','cik'=>72573,'fyed'=>'01-31')
Stock.create( 'name'=>'MPG Office Trust, Inc.','ticker'=>'MPG','cik'=>1204560,'fyed'=>'12-31')
Stock.create( 'name'=>'Msc Industries Direct Co Inc.','ticker'=>'MSM','cik'=>1003078,'fyed'=>'08-30')
Stock.create( 'name'=>'MSCI, Inc.','ticker'=>'MSCI','cik'=>1408198,'fyed'=>'12-31')
Stock.create( 'name'=>'Mueller Inds Inc','ticker'=>'MLI','cik'=>89439,'fyed'=>'12-28')
Stock.create( 'name'=>'Mueller Water Products, Inc.','ticker'=>'MWA','cik'=>1350593,'fyed'=>'09-30')
Stock.create( 'name'=>'Murphy Oil Corporation','ticker'=>'MUR','cik'=>717423,'fyed'=>'12-31')
Stock.create( 'name'=>'MV Oil Trust','ticker'=>'MVO','cik'=>1371782,'fyed'=>'')
Stock.create( 'name'=>'Myers Industries, Inc.','ticker'=>'MYE','cik'=>69488,'fyed'=>'12-31')
Stock.create( 'name'=>'Nabors Industries Ltd.','ticker'=>'NBR','cik'=>1163739,'fyed'=>'12-31')
Stock.create( 'name'=>'NACCO Industries Inc.','ticker'=>'NC','cik'=>789933,'fyed'=>'12-31')
Stock.create( 'name'=>'Nam Tai Electronics, Inc.','ticker'=>'NTP','cik'=>829365,'fyed'=>'')
Stock.create( 'name'=>'National Financial Partners Corp.','ticker'=>'NFP','cik'=>1183186,'fyed'=>'12-31')
Stock.create( 'name'=>'National Fuel Gas Co.','ticker'=>'NFG','cik'=>70145,'fyed'=>'09-30')
Stock.create( 'name'=>'National Health Investors Inc.','ticker'=>'NHI','cik'=>877860,'fyed'=>'12-31')
Stock.create( 'name'=>'National Oilwell Varco, Inc. ','ticker'=>'NOV','cik'=>1021860,'fyed'=>'12-31')
Stock.create( 'name'=>'National Presto Industries Inc.','ticker'=>'NPK','cik'=>80172,'fyed'=>'12-31')
Stock.create( 'name'=>'National Retail Properties, Inc.','ticker'=>'NNN','cik'=>751364,'fyed'=>'12-31')
Stock.create( 'name'=>'National Semiconductor Corporation','ticker'=>'NSM','cik'=>1520566,'fyed'=>'12-31')
Stock.create( 'name'=>'Natural Resource Partners LP','ticker'=>'NRP','cik'=>1171486,'fyed'=>'12-31')
Stock.create( 'name'=>'Nautilus, Inc.','ticker'=>'NLS','cik'=>1078207,'fyed'=>'12-31')
Stock.create( 'name'=>'Navigant Consulting, Inc.','ticker'=>'NCI','cik'=>1019737,'fyed'=>'12-31')
Stock.create( 'name'=>'Navios Maritime Holdings Inc.','ticker'=>'NM','cik'=>1333172,'fyed'=>'')
Stock.create( 'name'=>'Navistar International Corporation','ticker'=>'NAV','cik'=>808450,'fyed'=>'10-31')
Stock.create( 'name'=>'NCI Building Systems Inc.','ticker'=>'NCS','cik'=>883902,'fyed'=>'11-02')
Stock.create( 'name'=>'NCR Corporation','ticker'=>'NCR','cik'=>70866,'fyed'=>'12-31')
Stock.create( 'name'=>'Neenah Paper, Inc.','ticker'=>'NP','cik'=>1296435,'fyed'=>'12-31')
Stock.create( 'name'=>'Nelnet, Inc.','ticker'=>'NNI','cik'=>1258602,'fyed'=>'12-31')
Stock.create( 'name'=>'NeoPhotonics Corporation','ticker'=>'NPTN','cik'=>1227025,'fyed'=>'12-31')
Stock.create( 'name'=>'NetSuite Inc.','ticker'=>'N','cik'=>1117106,'fyed'=>'12-31')
Stock.create( 'name'=>'NeuStar, Inc.','ticker'=>'NSR','cik'=>1265888,'fyed'=>'12-31')
Stock.create( 'name'=>'New Jersey Resources Corporation','ticker'=>'NJR','cik'=>356309,'fyed'=>'09-30')
Stock.create( 'name'=>'New York & Company, Inc.','ticker'=>'NWY','cik'=>1211351,'fyed'=>'02-01')
Stock.create( 'name'=>'New York Community Bancorp, Inc.','ticker'=>'NYCB','cik'=>910073,'fyed'=>'12-31')
Stock.create( 'name'=>'New York Times Co.','ticker'=>'NYT','cik'=>71691,'fyed'=>'12-29')
Stock.create( 'name'=>'Newcastle Investment Corp.','ticker'=>'NCT','cik'=>1175483,'fyed'=>'12-31')
Stock.create( 'name'=>'Newell Rubbermaid Inc.','ticker'=>'NWL','cik'=>814453,'fyed'=>'')
Stock.create( 'name'=>'Newfield Exploration Co.','ticker'=>'NFX','cik'=>912750,'fyed'=>'12-31')
Stock.create( 'name'=>'NewMarket Corporation','ticker'=>'NEU','cik'=>1282637,'fyed'=>'12-31')
Stock.create( 'name'=>'Newmont Mining Corporation (Holding Company)','ticker'=>'NEM','cik'=>1164727,'fyed'=>'12-31')
Stock.create( 'name'=>'Newpark Resources Inc.','ticker'=>'NR','cik'=>71829,'fyed'=>'12-31')
Stock.create( 'name'=>'NextEra Energy, Inc.','ticker'=>'NEE','cik'=>753308,'fyed'=>'12-31')
Stock.create( 'name'=>'Nicor Inc.','ticker'=>'GAS','cik'=>1004155,'fyed'=>'12-31')
Stock.create( 'name'=>'Nielsen Holdings N.V.','ticker'=>'NLSN','cik'=>1492633,'fyed'=>'12-31')
Stock.create( 'name'=>'Nike Inc.','ticker'=>'NKE','cik'=>320187,'fyed'=>'05-31')
Stock.create( 'name'=>'Niska Gas Storage Partners LLC','ticker'=>'NKA','cik'=>1483830,'fyed'=>'03-31')
Stock.create( 'name'=>'NiSource Inc.','ticker'=>'NI','cik'=>1111711,'fyed'=>'12-31')
Stock.create( 'name'=>'NL Industries Inc.','ticker'=>'NL','cik'=>72162,'fyed'=>'12-31')
Stock.create( 'name'=>'Noble Corporation','ticker'=>'NE','cik'=>1458891,'fyed'=>'12-31')
Stock.create( 'name'=>'Noble Energy, Inc.','ticker'=>'NBL','cik'=>72207,'fyed'=>'12-31')
Stock.create( 'name'=>'Noranda Aluminum Holding Corporation','ticker'=>'NOR','cik'=>1422105,'fyed'=>'12-31')
Stock.create( 'name'=>'Nordic American Tanker Shipping Limited','ticker'=>'NAT','cik'=>1000177,'fyed'=>'')
Stock.create( 'name'=>'Nordion Inc.','ticker'=>'NDZ','cik'=>1057698,'fyed'=>'')
Stock.create( 'name'=>'Nordstrom Inc.','ticker'=>'JWN','cik'=>72333,'fyed'=>'02-01')
Stock.create( 'name'=>'Norfolk Southern Corporation','ticker'=>'NSC','cik'=>702165,'fyed'=>'12-31')
Stock.create( 'name'=>'North American Energy Partners Inc.','ticker'=>'NOA','cik'=>1272869,'fyed'=>'')
Stock.create( 'name'=>'North European Oil Royalty Trust','ticker'=>'NRT','cik'=>72633,'fyed'=>'')
Stock.create( 'name'=>'Northeast Utilities Systems','ticker'=>'NU','cik'=>72741,'fyed'=>'12-31')
Stock.create( 'name'=>'Northrop Grumman Corporation','ticker'=>'NOC','cik'=>1133421,'fyed'=>'12-31')
Stock.create( 'name'=>'Northstar Realty Finance Corp.','ticker'=>'NRF','cik'=>1273801,'fyed'=>'12-31')
Stock.create( 'name'=>'Northwest Natural Gas Company','ticker'=>'NWN','cik'=>73020,'fyed'=>'12-31')
Stock.create( 'name'=>'NorthWestern Corporation','ticker'=>'NWE','cik'=>73088,'fyed'=>'12-31')
Stock.create( 'name'=>'NRG Energy, Inc.','ticker'=>'NRG','cik'=>1013871,'fyed'=>'12-31')
Stock.create( 'name'=>'Nu Skin Enterprises Inc.','ticker'=>'NUS','cik'=>1021561,'fyed'=>'12-31')
Stock.create( 'name'=>'Nucor Corporation','ticker'=>'NUE','cik'=>73309,'fyed'=>'12-31')
Stock.create( 'name'=>'NuStar Energy L.P.','ticker'=>'NS','cik'=>1110805,'fyed'=>'')
Stock.create( 'name'=>'NuStar GP Holdings, LLC','ticker'=>'NSH','cik'=>1223786,'fyed'=>'')
Stock.create( 'name'=>'NV Energy, Inc.','ticker'=>'NVE','cik'=>741508,'fyed'=>'12-31')
Stock.create( 'name'=>'NVR, Inc.','ticker'=>'NVR','cik'=>906163,'fyed'=>'12-31')
Stock.create( 'name'=>'NYSE Euronext','ticker'=>'NYX','cik'=>1368007,'fyed'=>'12-31')
Stock.create( 'name'=>'Oasis Petroleum Inc.','ticker'=>'OAS','cik'=>1486159,'fyed'=>'12-31')
Stock.create( 'name'=>'Occidental Petroleum Corporation','ticker'=>'OXY','cik'=>797468,'fyed'=>'12-31')
Stock.create( 'name'=>'Oceaneering International Inc.','ticker'=>'OII','cik'=>73756,'fyed'=>'12-31')
Stock.create( 'name'=>'Och-Ziff Capital Management Group LLC','ticker'=>'OZM','cik'=>1403256,'fyed'=>'12-31')