-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathticker_track_cleaned.json
More file actions
4343 lines (4343 loc) · 152 KB
/
Copy pathticker_track_cleaned.json
File metadata and controls
4343 lines (4343 loc) · 152 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"FOUR": "Payment - Restaurant & Hotels",
"EDNMY": "Payment - International",
"WEX": "Payment Infrastructure & Fleet Card",
"AGYS": "Payment - Restaurant & Hotels",
"PAR": "Payment - Restaurant & Hotels",
"AFRM": "BNPL",
"KLAR": "BNPL",
"SEZL": "BNPL",
"ZIZTF": "BNPL",
"ATLC": "Small Loans",
"GDOT": "Small Loans",
"RM": "Small Loans",
"OPRT": "Small Loans",
"LPRO": "Banks - Regional - Chicago - Small",
"BKKT": "Crypto Infrastructure",
"DEFT": "Crypto Infrastructure",
"ABIT": "Crypto Infrastructure",
"DOMH": "Crypto Infrastructure",
"CEP": "Bitcoin Treasury",
"CEPO": "Bitcoin Treasury",
"KULR": "Bitcoin Treasury",
"SQNS": "Bitcoin Treasury",
"SORA": "Bitcoin Treasury",
"DDC": "Bitcoin Treasury",
"GNS": "Bitcoin Treasury",
"BMNR": "Crypto Treasury - Large",
"ETHE": "Bitcoin ETF",
"ETHA": "Ethereum Treasury",
"SBET": "Ethereum Treasury",
"MFH": "Ethereum Treasury",
"BTBT": "Ethereum Treasury",
"NAKA": "Bitcoin Treasury - Small",
"DGXX": "Bitcoin Treasury - Small",
"DGHI": "Bitcoin Treasury - Small",
"ANY": "Bitcoin Treasury - Small",
"NYAX": "Payment - Tier3",
"WRDLY": "Payment - International",
"OLO": "Payment - Tier3",
"TFIN": "Payment - Tier3",
"PXGYF": "Payment - International",
"CTLP": "Payment - Small",
"PSFE": "Payment - Small",
"TGL": "Payment - Small",
"PYPL": "Payment - Large",
"ADYEY": "Payment - International",
"XYZ": "Payment - Large",
"FI": "Payment - Large",
"FIS": "Payment - Large",
"PRTH": "Payment - Small",
"RPAY": "Payment - Small",
"PAYS": "Payment - Small",
"USIO": "Payment - Small",
"SOFI": "NeoBank",
"FIGR": "NeoBank",
"CHYM": "NeoBank",
"UPST": "NeoBank",
"PGY": "NeoBank",
"FORD": "Solana Treasury",
"DFDV": "Solana Treasury",
"UPXI": "Solana Treasury",
"CYFRF": "Solana Treasury",
"MSTR": "Crypto Treasury - Large",
"MARA": "Crypto Treasury - Large",
"MTPLF": "Crypto Treasury - Large",
"TOST": "Payment - Restaurant & Hotels",
"CPAY": "Payment Infrastructure & Fleet Card",
"GPN": "Payment - Large",
"JKHY": "Payment Infrastructure & Fleet Card",
"VERB": "Crypto Treasury - Small",
"MCVT": "Crypto Treasury - Small",
"HYPD": "Crypto Treasury - Small",
"VVPR": "Crypto Treasury - Small",
"LGHL": "Crypto Treasury - Small",
"WPLCF": "Cross-Border Remittance",
"RELY": "Cross-Border Remittance",
"WU": "Cross-Border Remittance",
"DLO": "Cross-Border Remittance",
"FLYW": "Cross-Border Remittance",
"AKZOY": "Paints & Coatings - International",
"OLN": "Vinyls & Ammunition",
"CC": "Vinyls & Ammunition",
"SHW": "Paints & Coatings",
"PPG": "Paints & Coatings",
"NPPHY": "Paints & Coatings - International",
"RPM": "Paints & Coatings",
"AXTA": "Paints & Coatings",
"AVY": "Adhesive & Label",
"SOLV": "Adhesive & Label",
"CCDBF": "Adhesive & Label",
"BASFY": "Chemicals - large",
"DOW": "Chemicals - large",
"LYB": "Chemicals - large",
"COVTY": "Chemicals - large",
"EVKIY": "Chemicals - large",
"CE": "Vinyls & Ammunition",
"FUPBY": "Lubricants",
"AZLGF": "Chemical Distribution",
"BNTGY": "Chemical Distribution",
"NEU": "Lubricants",
"ASH": "Lubricants",
"KWR": "Lubricants",
"IOSP": "Lubricants",
"CGGGF": "Textile Manufacturing",
"AIN": "Textile Manufacturing",
"LNZNF": "Textile Manufacturing",
"UFI": "Textile Manufacturing",
"CULP": "Textile Manufacturing",
"CTVA": "Seed and Crop Protection",
"BAYRY": "Seed and Crop Protection",
"FMC": "Seed and Crop Protection",
"SMG": "Seed and Crop Protection",
"UAN": "Fertilizer - small",
"LXU": "Fertilizer - small",
"IPI": "Fertilizer - small",
"DAR": "Ingredient & Nutrition",
"BCPC": "Ingredient & Nutrition",
"ESI": "Ingredient & Nutrition",
"MEOH": "Vinyls & Ammunition",
"DD": "Chemical Materials",
"WLK": "Chemical Materials",
"EMN": "Chemical Materials",
"SSL": "Chemical Materials",
"HUN": "Chemical Materials",
"ECL": "Water, Hygiene & Pest Control",
"ROL": "Water, Hygiene & Pest Control",
"RTO": "Water, Hygiene & Pest Control",
"ELSSF": "Water, Hygiene & Pest Control",
"EMSHF": "Special Chemical - Europe",
"BCHMY": "Special Chemical - Europe",
"IFCNF": "Special Chemical - Europe",
"JMPLY": "Emission Control & Catalysis",
"CBT": "Emission Control & Catalysis",
"CLZNY": "Emission Control & Catalysis",
"TROX": "Emission Control & Catalysis",
"SCL": "Emission Control & Catalysis",
"LIN": "Industrial Gas - Large",
"AIQUY": "Industrial Gas - Large",
"APD": "Industrial Gas - Large",
"NPXYY": "Industrial Gas - Japan",
"MTLHF": "Industrial Gas - Japan",
"SHWDY": "Industrial Gas - Japan",
"AWTRF": "Industrial Gas - Japan",
"NTR": "Fertilizer",
"CF": "Fertilizer",
"ICL": "Fertilizer",
"YARIY": "Fertilizer",
"MOS": "Fertilizer",
"SHECY": "Chemical for Semiconductors",
"SKFOF": "Chemical for Semiconductors",
"AHKSY": "Chemical for Semiconductors",
"TOSCF": "Chemical for Semiconductors",
"DICCF": "Chemical for Semiconductors",
"TRYIY": "Chemical for Textile",
"KURRF": "Chemical for Textile",
"SOLVAY": "Chemical for Textile",
"AVNT": "Adhesive",
"FUL": "Adhesive",
"WDFC": "Adhesive",
"KOP": "Adhesive",
"ATMU": "Air & Water Treatment",
"PCT": "Air & Water Treatment",
"CECO": "Air & Water Treatment",
"WTTR": "Air & Water Treatment",
"AWK": "Utility - Water - US",
"WTRG": "Utility - Water - US",
"AWR": "Utility - Water - US",
"CWT": "Utility - Water - US",
"HTO": "Utility - Water - US",
"BMI": "Meter",
"ITRI": "Meter",
"MWA": "Meter",
"CTAS": "Uniforms Rental & Services",
"UNF": "Uniforms Rental & Services",
"VSTS": "Uniforms Rental & Services",
"HCSG": "Uniforms Rental & Services",
"CLH": "Waste Projects",
"CWST": "Utility - Waste - US & Canada",
"MEG": "Waste Projects",
"NVRI": "Waste Projects",
"WM": "Utility - Waste - US & Canada",
"RSG": "Utility - Waste - US & Canada",
"WCN": "Utility - Waste - US & Canada",
"VEOEY": "Waste Projects",
"GFL": "Utility - Waste - US & Canada",
"SCI": "Funeral",
"CSV": "Funeral",
"MATW": "Funeral",
"WMS": "Drainage & Water Treatment",
"ZWS": "Drainage & Water Treatment",
"HWKN": "Drainage & Water Treatment",
"PRM": "Drainage & Water Treatment",
"HDSN": "Drainage & Water Treatment",
"UMICY": "Recycling",
"ABAT": "Recycling",
"ADUO": "Recycling",
"SBS": "Utility - Water - NonUS",
"STRNY": "Utility - Water - NonUS",
"UUGRY": "Utility - Water - NonUS",
"MSEX": "Water Utilities - Small",
"CWCO": "Water Utilities - Small",
"YORW": "Water Utilities - Small",
"GWRS": "Water Utilities - Small",
"AKAAF": "Carbon capture",
"AKRYY": "Carbon capture",
"ERII": "Carbon capture",
"CLNE": "Carbon capture",
"PESI": "Waste Management - Small",
"AKCCF": "Waste Management - Small",
"ORGN": "Waste Management - Small",
"LNZA": "Waste Management - Small",
"QRHC": "Waste Management - Small",
"AMD": "AI Chips",
"INTC": "AI Chips",
"NVDA": "AI Chips",
"AVGO": "AI Chips",
"MRVL": "Network Chips",
"CRDO": "Network Chips",
"ALAB": "Network Chips",
"MPWR": "Power Chips",
"ROHCY": "Power Chips",
"ALGM": "Power Chips",
"VICR": "Power Chips",
"POWI": "Power Chips",
"NVTS": "Power Chips - Small",
"AOSL": "Power Chips - Small",
"WOLF": "Power Chips - Small",
"QCOM": "Mobile Chips",
"ARM": "Mobile Chips",
"HY9H": "Memory Chips",
"MU": "Memory Chips",
"SNDK": "Memory Chips",
"KXIAY": "Memory Chips",
"SIMO": "Memory - IP - Controller",
"TXN": "Analog Chips",
"ADI": "Analog Chips",
"ON": "Analog Chips",
"MTSI": "Analog Chips",
"SITM": "Semiconductor MEMS",
"SMTC": "Semiconductor MEMS",
"SLAB": "Semiconductor MEMS",
"PI": "Semiconductor MEMS",
"CGNX": "Machine Vision",
"NOVT": "Machine Vision",
"ST": "Machine Vision",
"TSEM": "Semiconductor Manufacturer",
"SKYT": "Semiconductor Manufacturer - Other",
"RMBS": "Memory - IP - Controller",
"IDCC": "IP Licensing",
"ADEA": "IP Licensing",
"CEVA": "IP Licensing",
"ASE": "Packaging & Testing",
"AMKR": "Semiconductor Packaging",
"DSCSY": "Wafer Cutting & Cleaning Tools",
"COHR": "optical systems",
"LITE": "optical systems",
"IPGP": "optical systems",
"AAOI": "optical systems",
"LASR": "optical systems",
"ATZAF": "Apparel Brands & Retail",
"URBN": "Apparel Brands & Retail",
"ANF": "Apparel Brands & Retail",
"BKE": "Apparel Brands & Retail",
"POET": "AI Chips - Startup",
"CALX": "communication device - medium",
"ADTN": "Optic Fiber - Small",
"LWLG": "Semiconductor Substrates",
"CLFD": "Optic Fiber - Small",
"AVNW": "Satellite Communication - Small",
"CRNT": "Satellite Communication - Small",
"ZOOM": "Communication Software",
"TWLO": "Communication Software",
"RNG": "Communication Software",
"FIVN": "Communication Software",
"CLCMF": "Communication Software",
"TMSNY": "Banking Software",
"QTWO": "Banking Software",
"NCNO": "Banking Software",
"ALKT": "Banking Software",
"BLND": "Banking Software",
"CMXHF": "Hematology",
"SSMXF": "Hematology",
"GRFS": "Hematology",
"HAE": "Hematology",
"SNN": "Medical Devices - Heart",
"BAX": "Medical Devices - Heart",
"ICUI": "Medical Supplies - single-use",
"CNMD": "Medical Supplies - single-use",
"IMXI": "Cross-Border Remittance",
"POOL": "Pool Retail",
"LESL": "Pool Retail",
"CIEN": "communication equipment",
"NOK": "communication equipment",
"ERIC": "communication equipment",
"ZTCOF": "communication equipment",
"HPE": "Computer Systems - Major",
"ALGN": "Dental Equipment",
"NVST": "Dental Equipment",
"XRAY": "Dental Equipment",
"ENOV": "Dental Equipment",
"DHR": "Medical Diagnosis & Measure",
"TMO": "Medical Diagnosis & Measure",
"A": "Medical Diagnosis & Measure",
"WAT": "Medical Diagnosis & Measure",
"RVTY": "Laboratory Solutions",
"QGEN": "Laboratory Solutions",
"AVTR": "Medical packaging",
"PNR": "Water & Pool Equipment",
"AOS": "Water & Pool Equipment",
"GTLS": "Gas Compression Equipment & Service",
"HAYW": "Water & Pool Equipment",
"SWIM": "Water & Pool Equipment",
"XYL": "Gas & Liquid Equipment",
"MLI": "Gas & Liquid Equipment",
"WTS": "Gas & Liquid Equipment",
"VMI": "Gas & Liquid Equipment",
"LZAGY": "Medical packaging",
"WST": "Medical packaging",
"ATR": "Medical packaging",
"STVN": "Medical packaging",
"GNGBY": "Medical packaging",
"MTD": "Biomedical Measurement",
"SOAGY": "Biomedical Measurement",
"BMXMF": "Biomedical Measurement",
"ERFSF": "Biomedical Measurement",
"SMMNY": "Medical Imaging Equipment",
"GEHC": "Medical Imaging Equipment",
"PHG": "Medical Imaging Equipment",
"BDX": "Surgical Equipment - Sterilization",
"STE": "Surgical Equipment - Sterilization",
"RMD": "Respiratory Equipment",
"INSP": "Respiratory Equipment",
"FSPKF": "Respiratory Equipment",
"AHCO": "Respiratory Equipment",
"OM": "Medical Device - Small",
"LUNG": "Medical Device - Small",
"RMTI": "Medical Device - Small",
"IESC": "Power Infrastructure",
"AGX": "Power Infrastructure",
"MYRG": "Infrastructure - North",
"LGN": "Power Infrastructure",
"WLDN": "Power Infrastructure",
"TIC": "Infrastructure Construction - Small",
"AMRC": "Infrastructure Construction - Small",
"BIRDF": "Infrastructure Construction - Small",
"ETN": "Electric Infrastructure",
"EMR": "Electric Infrastructure",
"HUBB": "Electric Infrastructure",
"RRX": "Electric Infrastructure",
"VRT": "Electric Infrastructure - data center",
"NVT": "Electric Infrastructure - data center",
"AEIS": "Electric Infrastructure - data center",
"FPS": "Electric Infrastructure - data center",
"ESE": "Electric Infrastructure - data center",
"POWL": "Electric Infrastructure - medium",
"FELE": "Electric Infrastructure - medium",
"ENS": "Electric Infrastructure - medium",
"AMSC": "Electric Infrastructure - medium",
"PLPC": "Electric Infrastructure - medium",
"SONY": "Entertainment - large",
"NTDOY": "Entertainment - large",
"HTHIY": "IT - Large Japan",
"FJTSY": "IT - Large Japan",
"NIPNF": "IT - Large Japan",
"NTDTY": "IT - Large Japan",
"NRILY": "IT - Large Japan",
"PAYC": "Software - Payroll & HR",
"PCTY": "Software - Payroll & HR",
"ALIT": "HCM software - Medium",
"ASUR": "HCM software - Medium",
"LINE": "Cold Storage",
"COLD": "Cold Storage",
"CVNA": "Used Car Retail",
"CPRT": "Used Car Retail",
"RBA": "Used Car Retail",
"KMX": "Used Car Retail",
"INFQ": "Quantum - Startup",
"BTQQF": "Quantum - Startup",
"ARQQ": "Quantum - Startup",
"LAES": "Quantum - Startup",
"IBRX": "Immunity Biotech",
"IOVA": "Immunity Biotech",
"DNTH": "Immunity Biotech",
"ELVN": "Immunity Biotech",
"CHA": "Pearl Tea & Ice Cream",
"RCL": "Cruise",
"CCL": "Cruise",
"VIK": "Cruise",
"NCLH": "Cruise",
"VSCO": "Beauty & Jewelry Retail",
"RICK": "Intimate Retail",
"PLBY": "Intimate Retail",
"WHLM": "Intimate Retail",
"MCHP": "FPGA",
"LSCC": "FPGA",
"CRUS": "FPGA",
"WAY": "Health IT - payment",
"PRVA": "Health IT - payment",
"EVH": "Health IT - payment",
"CTEV": "Health IT - payment",
"MDRX": "Health IT - payment",
"SNTMF": "AI Security - China",
"LBTYA": "Internet Service - Europe",
"FRTAF": "Internet Service - Europe",
"RDDT": "Social Network",
"PINS": "Social Network",
"SNAP": "Social Network",
"YUM": "Fast Food Chain - Major",
"QSR": "Fast Food Chain - Major",
"YUMC": "Fast Food Chain - Major",
"DPZ": "Pizza",
"WING": "Fast Casual - Grill",
"ALKS": "Drugs Anti-Addiction & Depression",
"MENS": "Drugs Anti-Addiction & Depression",
"LNTH": "Radio Therapy",
"IMCR": "Radio Therapy",
"AMPH": "Radio Therapy",
"NVCR": "Radio Therapy",
"DC": "Gold Prospecting - America",
"THM": "Gold Prospecting - America",
"CTGO": "Gold Prospecting - America",
"GOTRF": "Gold Prospecting - America",
"GLDG": "Gold Prospecting - America",
"USGO": "Gold Prospecting - US - Small",
"BYAGF": "Gold Prospecting - Canada",
"CHPGF": "Gold Prospecting - Canada",
"AUMBF": "Gold Prospecting - Canada",
"RMLFF": "Gold Prospecting - Canada",
"FDMIF": "Gold Prospecting - Canada",
"PZG": "Gold Prospecting - US - Small",
"JGLDF": "Gold Prospecting - US - Small",
"IAUX": "Gold Miner - America",
"IDR": "Gold Miner - America",
"CMCL": "Gold Miner - America",
"GORO": "Gold Miner - America",
"ACMR": "Etch Equipment - Small",
"ACLS": "Etch Equipment - Small",
"VECO": "Etch Equipment - Small",
"UCTT": "Etch Equipment - Small",
"TOWCF": "Etch Equipment - Small",
"GEV": "Power Generator - Large",
"SMNEY": "Power Generator - Large",
"MHVYF": "Power Generator - Large",
"VWDRY": "Power Generator - Large",
"DNNGY": "Power Generator - Large",
"IHICY": "Machinery - Japan",
"KWHIF": "Machinery - Japan",
"SOHVY": "Machinery - Japan",
"MIELY": "Electric Equipment - Japan",
"FANUY": "Electric Equipment - Japan",
"NJDCY": "Electric Equipment - Japan",
"YASKY": "Electric Equipment - Japan",
"SOCNF": "Electric Equipment - Japan",
"FEIM": "RF Device - Small",
"BKTI": "RF Device - Small",
"RFIL": "RF Device - Small",
"OPXS": "RF Device - Small",
"ELTK": "Smart Building - Small",
"OPTX": "RF Device - Small",
"COMM": "communication device - medium",
"EXTR": "communication device - medium",
"ATEN": "communication device - medium",
"HLIT": "communication device - medium",
"NTGR": "communication device - medium",
"IOT": "IOT Infrastructure",
"ZBRA": "IOT Infrastructure",
"VRRM": "IOT Infrastructure",
"NN": "IOT Infrastructure",
"DGII": "IOT Infrastructure",
"ATEYY": "Test & Burn-In Equipment",
"TER": "Test & Burn-In Equipment",
"KEYS": "Test & Burn-In Equipment",
"LSRCY": "Test & Burn-In Equipment",
"VIAV": "Network Testing and Measurement",
"SON": "Plastic Packaging",
"SLGN": "Plastic Packaging",
"SEE": "Plastic Packaging",
"AMCR": "Metal Packaging",
"BALL": "Metal Packaging",
"CCK": "Metal Packaging",
"AMBP": "Metal Packaging",
"LE": "Clothes Retail - Small",
"JILL": "Clothes Retail - Small",
"DIBS": "Clothes Retail - Small",
"TLYS": "Clothes Retail - Small",
"LVLU": "Clothes Retail - Small",
"FIGS": "Specialty & Children's Retail",
"CRI": "Specialty & Children's Retail",
"BBW": "Specialty & Children's Retail",
"PLCE": "Specialty & Children's Retail",
"BOOT": "Fashion Retail - Discounted",
"RVLV": "Fashion Retail - Discounted",
"REAL": "Fashion Retail - Discounted",
"DKS": "Sports Retail",
"JDSPY": "Sports Retail",
"ASO": "Sports Retail",
"MIESF": "Ship Building - Asia",
"NMRSF": "Ship Building - Asia",
"HYMTF": "Automobile - Korea",
"ARGX": "autoimmune drugs",
"ALNY": "autoimmune drugs",
"NBIX": "autoimmune drugs",
"IONS": "autoimmune drugs",
"ARWR": "autoimmune drugs",
"BBY": "Electronics Retail",
"GME": "Electronics Retail",
"HKTGF": "Electronics Retail",
"DSITF": "Electronics Retail",
"YMDAF": "Electronics Retail",
"PL": "Satellite Image",
"BKSY": "Satellite Image",
"SATL": "Satellite Image",
"SPIR": "Satellite Image",
"SIDU": "Satellite Image",
"NATL": "ATM & Retail Machines",
"CXT": "ATM & Retail Machines",
"DBD": "ATM & Retail Machines",
"VYX": "ATM & Retail Machines",
"DLGCF": "ATM & Retail Machines",
"SCHW": "Brokerage - Large",
"IBKR": "Brokerage - Large",
"HOOD": "Brokerage - Large",
"COIN": "Brokerage - Large",
"MGA": "Auto Parts Manufacturers",
"APTV": "Auto Parts Manufacturers",
"BWA": "Auto Parts Manufacturers",
"LEA": "Auto Parts Manufacturers",
"BTDR": "Bitcoin Miner",
"BITF": "Bitcoin Miner",
"HIVE": "Bitcoin Miner",
"CANG": "Bitcoin Miner",
"CAN": "Bitcoin Miner",
"WULF": "AI Data Center + Bitcoin Miner",
"CIFT": "AI Data Center + Bitcoin Miner",
"RIOT": "AI Data Center + Bitcoin Miner",
"CORZ": "AI Data Center + Bitcoin Miner",
"CLSK": "AI Data Center + Bitcoin Miner",
"CRWV": "AI Data Center - Large",
"NBIS": "AI Data Center - Large",
"IREN": "AI Data Center - Large",
"APLD": "AI Data Center - Large",
"KRYS": "CAR-T cell therapy",
"NUVL": "CAR-T cell therapy",
"ACLX": "CAR-T cell therapy",
"ALLO": "CAR-T cell therapy",
"IRT": "Apartment REIT",
"VRE": "Apartment REIT",
"NXRT": "Apartment REIT",
"ELME": "Apartment REIT",
"CDPYF": "Apartment REIT - Canada",
"BOWFF": "Apartment REIT - Canada",
"KMMPF": "Apartment REIT - Canada",
"IIPZF": "Apartment REIT - Canada",
"MNARF": "Apartment REIT - Canada",
"MIAPF": "Apartment REIT - Canada",
"LRLCF": "Cosmetics",
"EL": "Cosmetics",
"ULTA": "Cosmetics",
"ELF": "Cosmetics",
"COTY": "Cosmetics",
"BBWI": "Beauty & Jewelry Retail",
"SIG": "Beauty & Jewelry Retail",
"SBH": "Beauty & Jewelry Retail",
"EMAT": "Rare Earth - Critical",
"ALM": "Tungsten",
"TMC": "Rare Earth - Critical",
"USAR": "Rare Earth - Critical",
"CRML": "Rare Earth - Critical",
"IPX": "Rare Earth - Prospecting",
"NB": "Rare Earth - Prospecting",
"REEMF": "Rare Earth - Prospecting",
"AREC": "Rare Earth - Prospecting",
"ARRNF": "Rare Earth - Prospecting",
"TMRC": "Rare Earth - Prospecting",
"MP": "Rare Earth - Western",
"LYSCF": "Rare Earth - Western",
"ILKAF": "Rare Earth - Western",
"GSM": "Rare Earth - Western",
"NOPMF": "Rare Earth - Western",
"GLNCY": "Metal Conglomerate",
"NGLOY": "Metal Conglomerate",
"TECK": "Metal Conglomerate",
"MYTHY": "Metal Conglomerate",
"MBLY": "Autonomous Driving",
"AUR": "Autonomous Driving",
"OUST": "Autonomous Driving",
"KDK": "Autonomous Driving",
"AEVA": "Autonomous Driving",
"HRZRF": "Autonomous Driving - China",
"PONY": "Autonomous Driving - China",
"HSAI": "Autonomous Driving - China",
"WRD": "Autonomous Driving - China",
"SW": "Packaging - Paper",
"IP": "Packaging - Paper",
"PKG": "Packaging - Paper",
"GPK": "Packaging - Paper",
"SLVM": "Packaging - Paper",
"GBOOF": "Banks - Mid America",
"CIB": "Banks - Mid America",
"AVAL": "Banks - Mid America",
"BAP": "Banks - Chile",
"BCH": "Banks - Chile",
"BSAC": "Banks - Chile",
"IFS": "Banks - Chile",
"IONQ": "quantum computers",
"QBTS": "quantum computers",
"RGTI": "quantum computers",
"QUBT": "quantum computers",
"CSWC": "BDC - Medium",
"TRIN": "BDC - Medium",
"FDUS": "BDC - Medium",
"TCPC": "BDC - Private Credit Subsidiary",
"YSS": "Satellite & Spacecraft - Medium",
"ATRO": "Aerospace Electronics",
"RDW": "Aerospace Electronics",
"VOYG": "Satellite & Spacecraft - Medium",
"DCO": "Aerospace Electronics",
"SSSS": "BDC - LowerEnd",
"OXSQ": "BDC - LowerEnd",
"MRCC": "BDC - LowerEnd",
"GECC": "BDC - Small",
"RAND": "BDC - Small",
"PNC": "Banks - USA - Large",
"USB": "Banks - USA - Large",
"TFC": "Banks - USA - Large",
"ASML": "Semiconductor Equipment - Large",
"LRCX": "Semiconductor Equipment - Large",
"AMAT": "Semiconductor Equipment - Large",
"KLAC": "Semiconductor Equipment - Large",
"TOELY": "Semiconductor Equipment - Large",
"BRO": "Insurance Broker - Large",
"ERIE": "Insurance Broker - Large",
"RYAN": "Insurance Broker - Large",
"MRSH": "Insurance Broker - Big4",
"AON": "Insurance Broker - Big4",
"AJG": "Insurance Broker - Big4",
"WTW": "Insurance Broker - Big4",
"LMND": "Internet Insurance - P&C",
"ROOT": "Internet Insurance - P&C",
"HIPO": "Internet Insurance - P&C",
"CRD.A": "Insurance Broker - Health",
"TWFG": "Insurance Broker - Health",
"SLQT": "Insurance Broker - Health",
"EHTH": "Insurance Broker - Health",
"GOCO": "Insurance Broker - Health",
"NP": "Insurance Broker - Medium",
"CRVL": "Insurance Broker - Medium",
"ARX": "Insurance Broker - Medium",
"BWIN": "Insurance Broker - Medium",
"GSHD": "Insurance Broker - Medium",
"WFRD": "Oilfield Service - Medium",
"NOV": "Oilfield Service - Medium",
"LBRT": "Power - Data Center & Oilfield",
"NESR": "Oilfield Service - MedSmall - Pump & Proppant",
"DLEGF": "Electronics Manufacturer",
"YAGOY": "Electronics Manufacturer",
"CHEF": "Food Distribution - US - Large",
"UNFI": "Food Distribution - US - Large",
"SPTN": "Food Distribution - Medium",
"DIT": "Food Distribution - Small",
"BVILF": "Appliance",
"ELUXY": "Appliance",
"WHR": "Appliance",
"ALH": "Appliance",
"DELHF": "Appliance",
"SEBYF": "Appliance",
"KRG": "Shopping Centers - Medium",
"PECO": "Shopping Centers - Medium",
"FCPT": "Shopping Centers - Medium",
"LBLCF": "Grocery Shopping - Canada",
"WNGRF": "Grocery Shopping - Canada",
"MTRAF": "Grocery Shopping - Canada",
"EMLAF": "Grocery Shopping - Canada",
"PPRQF": "Commercial REIT - Canada",
"RIOCF": "Commercial REIT - Canada",
"CWYUF": "Commercial REIT - Canada",
"FCXXF": "Commercial REIT - Canada",
"KIM": "Shopping Centers",
"REG": "Shopping Centers",
"ADC": "Shopping Centers",
"FRT": "Shopping Centers",
"NNN": "Shopping Centers",
"MTTWF": "Food Distribution - International",
"MCSHF": "Food Distribution - International",
"WILC": "Food Distribution - Small",
"CLS": "Electronic OEM - large",
"JBL": "Electronic OEM - large",
"FLEX": "Electronic OEM - large",
"FN": "Electronic OEM - large",
"ASX": "Semiconductor Packaging",
"APP": "Internet Advertising",
"TTD": "Internet Advertising",
"U": "Internet Advertising",
"GOOG": "Hyperscaler",
"MSFT": "Hyperscaler",
"AMZN": "Hyperscaler",
"ORCL": "Hyperscaler",
"META": "Hyperscaler",
"NVMI": "Metrology & PDC",
"ONTO": "Metrology & PDC",
"CAMT": "Metrology & PDC",
"ICHR": "Metrology & PDC",
"AEHR": "Test Equipment - Small",
"COHU": "Test Equipment - Small",
"ASYS": "Test Equipment - Small",
"CVV": "Test Equipment - Small",
"MGCOF": "Appliance - International - Large",
"HSHCY": "Appliance - International - Large",
"PCRFF": "Appliance - International - Large",
"LPL": "Electronic Display",
"AUOTY": "Electronic Display",
"CSPKY": "Ports",
"HUPHY": "Ports",
"CKHUY": "Conglomerates - HK & Southeast Asia",
"VRSN": "Domain Name",
"GDDY": "Domain Name",
"FFIV": "Domain Name",
"AKAM": "SASE & CDN",
"NET": "SASE & CDN",
"FTNT": "SASE & CDN",
"CHKP": "SASE & CDN",
"NTSK": "SASE & CDN",
"FSLY": "SASE & CDN",
"KRKNF": "Robotics",
"RR": "Robotics",
"SERV": "Robotics",
"PDYN": "Robotics",
"KITT": "Robotics",
"RHI": "Recruiting",
"TNET": "Recruiting",
"MAN": "Recruiting",
"NSP": "Recruiting",
"AMN": "Recruiting - Nurse",
"KELYA": "Recruiting",
"BRX": "Shopping Centers",
"MAC": "Shopping Centers",
"SKT": "Shopping Centers",
"CBL": "Shopping Centers",
"NE": "Offshore Drilling",
"RIG": "Offshore Drilling",
"VAL": "Offshore Drilling",
"OII": "Offshore Drilling",
"TDW": "Offshore Drilling",
"SDRL": "Offshore Drilling - Small",
"BORR": "Offshore Drilling - Small",
"INDI": "Autonomous Driving - Small",
"MVIS": "Autonomous Driving - Small",
"LAZR": "Autonomous Driving - Small",
"RUSHA": "car dealership - medium",
"SAH": "car dealership - medium",
"PAG": "Auto Dealership",
"LAD": "Auto Dealership",
"AN": "Auto Dealership",
"ABG": "Auto Dealership",
"GPI": "Auto Dealership",
"Q": "Semiconductor Materials",
"SOLS": "Semiconductor Materials",
"CSCO": "Networking - Large",
"ANET": "Networking - Large",
"MSI": "Networking - Large",
"UI": "Networking - Large",
"PAAS": "Silver - Large",
"HL": "Silver - Large",
"AG": "Silver - Large",
"DSVSF": "Silver - Large",
"AUGO": "Gold & Silver",
"SSRM": "Gold & Silver",
"ARMN": "Gold & Silver",
"HCHDF": "Gold & Silver",
"CGAU": "Gold Miner - America",
"WDOFF": "Gold & Silver",
"IAG": "Gold - America",
"EGO": "Gold - America",
"DPMLF": "Gold - America",
"GMINF": "Gold - America",
"ARGTF": "Gold - America",
"SATS": "Satellite Communication",
"SIRI": "Satellite Communication",
"GSAT": "Satellite Communication",
"VSAT": "Satellite Communication",
"IRDM": "Satellite Communication - Europe & America",
"BWLP": "Marine Shipping - LNG",
"LPG": "Marine Shipping - LNG",
"NVGS": "Marine Shipping - LNG",
"TEN": "Marine Shipping - LNG",
"CLCO": "Marine Shipping - LNG - Small",
"ASC": "Marine Shipping - LNG - Small",
"GASS": "Marine Shipping - LNG - Small",
"VLY": "Regional Banks - NY / NJ",
"FLG": "Regional Banks - NY / NJ",
"CBU": "Regional Banks - NY / NJ",
"PFS": "Regional Banks - NY / NJ",
"DCOM": "Regional Banks - NY / NJ",
"UBSI": "Regional Banks - Virginia",
"AUB": "Regional Banks - Virginia",
"WSBC": "Regional Banks - Virginia",
"TOWN": "Regional Banks - Virginia",
"OPOF": "Community Banks - Virginia",
"BHRB": "Community Banks - Virginia",
"FCBC": "Community Banks - Virginia",
"PLTR": "AI Software - Large",
"CRM": "AI Software - Large",
"NOW": "AI Software - Large",
"CCSI": "Communication Software - Small",
"BAND": "Communication Software - Small",
"ONTF": "Communication Software - Small",
"SNOW": "Big Data",
"MDB": "Big Data",
"ESTC": "Big Data",
"OTEX": "Big Data",
"TDC": "Big Data",
"DDOG": "APM & data security",
"DT": "APM & data security",
"RBRK": "APM & data security",
"CVLT": "APM & data security",
"PD": "APM & data security",
"FOXA": "TV Media",
"NXST": "TV Media",
"VSNT": "TV Media",
"TGNA": "TV Media",
"TV": "TV Media - Medium",
"SBGI": "TV Media - Medium",
"NMAX": "TV Media - Medium",
"FUBO": "TV Media - Medium",
"NWSA": "News Media",
"NYT": "News Media",
"DJCO": "News Media",
"GCI": "News Media",
"LEE": "News Media",
"DIOD": "Semiconductor MEMS",
"MXL": "Power Chips - Small",
"OLED": "Chips for Video & Image",
"AMBA": "Chips for Video & Image",
"HIMX": "Chips for Video & Image",
"CVLG": "Logistics - Small",
"CYRX": "Logistics - Small",
"PAMT": "Logistics - Small",
"WKCMF": "Semiconductor Substrates",
"SUMCF": "Semiconductor Substrates",
"SLTCY": "Semiconductor Substrates",
"AXTI": "Semiconductor Substrates",
"CARG": "Auto Retails - Auction",
"KAR": "Auto Retails - Auction",
"ACVA": "Auto Retails - Auction",
"CARS": "Auto Retails - Auction",
"MTZ": "E&C - Power & HVAC",
"DY": "Infrastructure Construction - South",
"PRIM": "Infrastructure Construction - South",
"J": "General Construction",
"ACM": "General Construction",
"FLR": "General Construction",
"TPC": "General Construction",
"PANW": "Network Security",
"CRWD": "Network Security",
"ZS": "Network Security",
"ALMS": "Autoimmune TYK2",
"MESO": "Autoimmune TYK2",
"NKTR": "Autoimmune TYK2",
"BNTC": "Gene Therapy - Small",
"CYDY": "Gene Therapy - Small",
"QTRX": "Gene Therapy - Small",
"HRTX": "Gene Therapy - Small",
"ALEC": "Gene Therapy - Small",
"SAVA": "Gene Therapy - Small",
"MCRB": "Gene Therapy - Small",
"ANVS": "Gene Therapy - Small",
"PRPO": "Gene Therapy - Small",
"CNSWF": "Vertical Software",
"ROP": "Vertical Software",
"TYL": "Vertical Software",
"TOITF": "Vertical Software",
"LMGIF": "Vertical Software",
"WPM": "Gold & Silver Royalty",
"FNV": "Gold & Silver Royalty",
"RGLD": "Gold & Silver Royalty",
"OR": "Gold & Silver Royalty",
"TFPM": "Gold & Silver Royalty",
"GILT": "Satellite Communication - Small",
"CMTL": "Satellite Communication - Small",
"KVHI": "Satellite Communication - Small",
"CMBM": "Satellite Communication - Small",
"HUBS": "Marketing Software",
"KVYO": "Marketing Software",
"ZETA": "Marketing Software",
"FRSH": "Marketing Software",
"GTM": "Marketing Software",
"CATY": "Regional Banks - CA",
"CVBF": "Regional Banks - CA",
"BANC": "Regional Banks - CA",
"HOPE": "Regional Banks - CA - Small",
"WABC": "Regional Banks - CA - Small",
"PFBC": "Community Banks - Virginia",
"BSRR": "Community Banks - Virginia",
"ITRG": "Gold - USA - Small",
"DDEJF": "Gold - USA - Small",
"SMAGF": "Gold - USA - Small",
"ARCC": "BDC - Large",
"BXSL": "BDC - Large",
"OBDC": "BDC - Large",
"FSK": "BDC - Large",
"NTRA": "NGS - gene",
"ILMN": "NGS - gene",
"GH": "NGS - gene",
"BLLN": "NGS - gene",
"GRAL": "NGS - gene",
"AMG": "Asset Management - Medium",
"CNS": "Asset Management - Medium",
"AB": "Asset Management - Medium",
"GCMG": "Asset Management - Medium",
"OSW": "Health & Leisure Services",
"NUTX": "Health & Leisure Services",
"JYNT": "Health & Leisure Services",
"EWCZ": "Health & Leisure Services",
"DCGO": "Health & Leisure Services",
"HIMS": "Health Services",
"TDOC": "Health Services",
"GDRX": "Health Services",
"WHTCF": "Health Services",
"LFMD": "Health Services",
"APH": "Fiber & Connectivity",
"GLW": "Fiber & Connectivity",
"TEL": "Fiber & Connectivity",
"SMTOY": "Cable - Japan - Big3",
"PRYMY": "Fiber & Connectivity",
"NEXNY": "Cable - Medium",
"NRKBF": "Cable - Medium",
"FUWAY": "Cable - Japan - Big3",
"ATKR": "Cable - Medium",
"PWR": "E&C - Power & HVAC",
"FIX": "E&C - Power & HVAC",
"EME": "E&C - Power & HVAC",
"APG": "Infrastructure - North",
"ENTG": "Wafer Cutting & Cleaning Tools",
"DINRF": "Wafer Cutting & Cleaning Tools",
"MKSI": "Wafer Cutting & Cleaning Tools",
"KOKSF": "Wafer Cutting & Cleaning Tools",
"AYI": "Lighting",
"SFFYF": "Lighting",
"AMSSY": "Lighting",
"FORM": "Probe Card",
"THNBY": "Probe Card",
"MJPNF": "Probe Card",
"FTV": "Danaher Spinoff - Industrial",
"VNT": "Danaher Spinoff - Industrial",
"RAL": "Danaher Spinoff - Industrial",
"ELV": "Health Insurance - Large",
"HUM": "Health Insurance - Large",
"CNC": "Health Insurance - Large",
"MOH": "Health Insurance - Large",
"OSCR": "Health Insurance & Analytics",
"ALHC": "Health Insurance & Analytics",
"PGNY": "Health Insurance & Analytics",
"CLOV": "Health Insurance & Analytics",
"NEUE": "Health Insurance & Analytics",
"CCOEY": "Games - Japan & Korea",
"SQNNY": "Games - Japan & Korea",
"TKHCF": "Games - Japan & Korea",
"EA": "Internet Games - Western",
"RBLX": "Internet Games - Western",
"TTWO": "Internet Games - Western",
"NEXOY": "Internet Games - Japan",
"KONMY": "Internet Games - Japan",
"ZTS": "Animal Health - Major",
"IDXX": "Animal Health - Major",
"ELAN": "Animal Health - Major",
"SHC": "Animal Health - Medium",
"NEOG": "Animal Health - Medium",
"PAHC": "Animal Health - Medium",
"CTRGF": "Real Estate - China",
"CTRYF": "Real Estate - China",
"EVGPF": "Real Estate - China",
"HPDHF": "Real Estate - China",
"EGRNF": "Real Estate - China",
"ISFFF": "Building Service",
"MMS": "Building Service",
"ABM": "Building Service",
"BV": "Building Service",
"BEEP": "Building Service",
"NFLX": "Entertainment Giants",
"DIS": "Entertainment Giants",
"WBD": "Entertainment Giants",
"ROKU": "Entertainment Giants",
"PSKY": "Entertainment Giants",
"OLCLY": "Resorts",
"MTN": "Resorts",
"PRKS": "Resorts",
"FUN": "Resorts",
"ASST": "Bitcoin Treasury - Small",
"SMLR": "Bitcoin Treasury - Small",
"BCHXF": "Bitcoin Treasury - Small",
"BRRWW": "Bitcoin Treasury - Small",
"OKLO": "Nuclear SMR",
"SMR": "Nuclear SMR",
"DJT": "Nuclear SMR",
"NNE": "Nuclear SMR",
"NKLR": "Nuclear SMR - Small",
"HUT": "Bitcoin Miner",
"ABTC": "Bitcoin Miner",
"WYFI": "Hyperconverged Infrastructure",
"SCCO": "Copper Miner",