forked from jacobmas/MTurkScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
short_codes.json
2987 lines (2987 loc) · 79 KB
/
short_codes.json
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
{
"48899": {
"title": "Other Support Activities for Transportation"},
"61171": {
"title": "Educational Support Services"},
"32522": {
"title": "Artificial and Synthetic Fibers and Filaments Manufacturing"},
"32521": {
"title": "Resin and Synthetic Rubber Manufacturing"},
"42459": {
"title": "Other Farm Product Raw Material Merchant Wholesalers"
},
"42451": {
"title": "Grain and Field Bean Merchant Wholesalers"
},
"42452": {
"title": "Livestock Merchant Wholesalers"
},
"4529": {
"title": "Other General Merchandise Stores"
},
"56121": {
"title": "Facilities Support Services"},
"52392": {
"title": "Portfolio Management"
},
"52393": {
"title": "Investment Advice"
},
"52391": {
"title": "Miscellaneous Intermediation"
},
"81331": {
"title": "Social Advocacy Organizations"},
"1133": {
"title": "Logging"
},
"51111": {
"title": "Newspaper Publishers"},
"51113": {
"title": "Book Publishers"},
"51119": {
"title": "Other Publishers"},
"9251": {
"title": "Administration of Housing Programs, Urban Planning, and Community Development"
},
"48-49": {
"code": "48-49",
"title": "Transportation and Warehousing"
},
"4812": {
"title": "Nonscheduled Air Transportation"
},
"4811": {
"title": "Scheduled Air Transportation"
},
"45111": {
"title": "Sporting Goods Stores"
},
"45112": {
"title": "Hobby, Toy, and Game Stores"
},
"42493": {
"title": "Flower, Nursery Stock, and Florists' Supplies Merchant Wholesalers"
},
"45114": {
"title": "Musical Instrument and Supplies Stores"
},
"54143": {
"title": "Graphic Design Services"},
"33211": {
"title": "Forging and Stamping"},
"7111": {
"title": "Performing Arts Companies"
},
"92": {
"title": "Public Administration"
},
"48412": {
"title": "General Freight Trucking, Long-Distance"},
"48411": {
"title": "General Freight Trucking, Local"},
"5182": {
"title": "Data Processing, Hosting, and Related Services"
},
"54171": {
"title": "Research and Development in the Physical, Engineering, and Life Sciences"},
"54172": {
"title": "Research and Development in the Social Sciences and Humanities"},
"551": {
"title": "Management of Companies and Enterprises"
},
"33699": {
"title": "Other Transportation Equipment Manufacturing"},
"518": {
"title": "Data Processing, Hosting, and Related Services"
},
"3342": {
"title": "Communications Equipment Manufacturing"
},
"3343": {
"title": "Audio and Video Equipment Manufacturing"
},
"3341": {
"title": "Computer and Peripheral Equipment Manufacturing"
},
"3346": {
"title": "Manufacturing and Reproducing Magnetic and Optical Media"
},
"3344": {
"title": "Semiconductor and Other Electronic Component Manufacturing"
},
"3345": {
"title": "Navigational, Measuring, Electromedical, and Control Instruments Manufacturing"
},
"44422": {
"title": "Nursery, Garden Center, and Farm Supply Stores"
},
"44421": {
"title": "Outdoor Power Equipment Stores"
},
"31699": {
"title": "Other Leather and Allied Product Manufacturing"},
"4251": {
"title": "Wholesale Electronic Markets and Agents and Brokers"
},
"31123": {
"title": "Breakfast Cereal Manufacturing"},
"31121": {
"title": "Flour Milling and Malt Manufacturing"},
"72121": {
"title": "RV (Recreational Vehicle) Parks and Recreational Camps"},
"623": {
"title": "Nursing and Residential Care Facilities"
},
"72251": {
"title": "Restaurants and Other Eating Places",
"change_indicator": 2},
"23611": {
"title": "Residential Building Construction"},
"55111": {
"title": "Management of Companies and Enterprises"},
"5629": {
"title": "Remediation and Other Waste Management Services"
},
"5622": {
"title": "Waste Treatment and Disposal"
},
"5621": {
"title": "Waste Collection"
},
"32531": {
"title": "Fertilizer Manufacturing"
},
"32532": {
"title": "Pesticide and Other Agricultural Chemical Manufacturing"},
"92312": {
"title": "Administration of Public Health Programs"
},
"92313": {
"title": "Administration of Human Resource Programs (except Education, Public Health, and Veterans' Affairs Programs)"
},
"92311": {
"title": "Administration of Education Programs"
},
"32311": {
"title": "Printing"},
"32312": {
"title": "Support Activities for Printing"},
"56221": {
"title": "Waste Treatment and Disposal"
},
"32791": {
"title": "Abrasive Product Manufacturing"},
"32799": {
"title": "All Other Nonmetallic Mineral Product Manufacturing"},
"56132": {
"title": "Temporary Help Services"},
"33331": {
"title": "Commercial and Service Industry Machinery Manufacturing"},
"56131": {
"title": "Employment Placement Agencies and Executive Search Services"},
"32222": {
"title": "Paper Bag and Coated and Treated Paper Manufacturing"},
"32223": {
"title": "Stationery Product Manufacturing"},
"32229": {
"title": "Other Converted Paper Product Manufacturing"},
"81293": {
"title": "Parking Lots and Garages"
},
"81291": {
"title": "Pet Care (except Veterinary) Services"
},
"21111": {
"title": "Oil and Gas Extraction"},
"81299": {
"title": "All Other Personal Services"
},
"81341": {
"title": "Civic and Social Organizations"
},
"9241": {
"title": "Administration of Environmental Quality Programs"
},
"4539": {
"title": "Other Miscellaneous Store Retailers"
},
"4531": {
"title": "Florists"
},
"4532": {
"title": "Office Supplies, Stationery, and Gift Stores"
},
"4821": {
"title": "Rail Transportation"
},
"42482": {
"title": "Wine and Distilled Alcoholic Beverage Merchant Wholesalers"
},
"42481": {
"title": "Beer and Ale Merchant Wholesalers"
},
"42339": {
"title": "Other Construction Material Merchant Wholesalers"
},
"42333": {
"title": "Roofing, Siding, and Insulation Material Merchant Wholesalers"
},
"42332": {
"title": "Brick, Stone, and Related Construction Material Merchant Wholesalers"
},
"33441": {
"title": "Semiconductor and Other Electronic Component Manufacturing"},
"48551": {
"title": "Charter Bus Industry"},
"49319": {
"title": "Other Warehousing and Storage"},
"49312": {
"title": "Refrigerated Warehousing and Storage"},
"49313": {
"title": "Farm Product Warehousing and Storage"},
"49311": {
"title": "General Warehousing and Storage"},
"7211": {
"title": "Traveler Accommodation"
},
"7212": {
"title": "RV (Recreational Vehicle) Parks and Recreational Camps"
},
"7213": {
"title": "Rooming and Boarding Houses"
},
"48311": {
"title": "Deep Sea, Coastal, and Great Lakes Water Transportation"},
"6216": {
"title": "Home Health Care Services"
},
"6215": {
"title": "Medical and Diagnostic Laboratories"
},
"52399": {
"title": "All Other Financial Investment Activities"},
"6213": {
"title": "Offices of Other Health Practitioners"
},
"6212": {
"title": "Offices of Dentists"
},
"6211": {
"title": "Offices of Physicians"
},
"6219": {
"title": "Other Ambulatory Health Care Services"
},
"48423": {
"title": "Specialized Freight (except Used Goods) Trucking, Long-Distance"},
"48422": {
"title": "Specialized Freight (except Used Goods) Trucking, Local"},
"48421": {
"title": "Used Household and Office Goods Moving"},
"3231": {
"title": "Printing and Related Support Activities"
},
"5191": {
"title": "Other Information Services"
},
"33531": {
"title": "Electrical Equipment Manufacturing"},
"54189": {
"title": "Other Services Related to Advertising"},
"54184": {
"title": "Media Representatives"},
"54186": {
"title": "Direct Mail Advertising"},
"54181": {
"title": "Advertising Agencies"},
"54183": {
"title": "Media Buying Agencies"},
"54182": {
"title": "Public Relations Agencies"},
"3351": {
"title": "Electric Lighting Equipment Manufacturing"
},
"3353": {
"title": "Electrical Equipment Manufacturing"
},
"3352": {
"title": "Household Appliance Manufacturing"
},
"3359": {
"title": "Other Electrical Equipment and Component Manufacturing"
},
"33991": {
"title": "Jewelry and Silverware Manufacturing"},
"33993": {
"title": "Doll, Toy, and Game Manufacturing"},
"33992": {
"title": "Sporting and Athletic Goods Manufacturing"},
"33995": {
"title": "Sign Manufacturing"},
"33994": {
"title": "Office Supplies (except Paper) Manufacturing"},
"33221": {
"title": "Cutlery and Handtool Manufacturing"},
"33999": {
"title": "All Other Miscellaneous Manufacturing"},
"1142": {
"title": "Hunting and Trapping"
},
"11191": {
"title": "Tobacco Farming"},
"1141": {
"title": "Fishing"
},
"31111": {
"title": "Animal Food Manufacturing"},
"92411": {
"title": "Administration of Air and Water Resource and Solid Waste Management Programs"
},
"11192": {
"title": "Cotton Farming"},
"11119": {
"title": "Other Grain Farming"},
"31599": {
"title": "Apparel Accessories and Other Apparel Manufacturing"},
"51114": {
"title": "Directory and Mailing List Publishers"},
"11111": {
"title": "Soybean Farming"},
"11113": {
"title": "Dry Pea and Bean Farming"},
"11112": {
"title": "Oilseed (except Soybean) Farming"},
"11115": {
"title": "Corn Farming"},
"11114": {
"title": "Wheat Farming"},
"11116": {
"title": "Rice Farming"},
"541": {
"title": "Professional, Scientific, and Technical Services"
},
"72131": {
"title": "Rooming and Boarding Houses"},
"51112": {
"title": "Periodical Publishers"},
"5619": {
"title": "Other Support Services"
},
"7112": {
"title": "Spectator Sports"
},
"5612": {
"title": "Facilities Support Services"
},
"5613": {
"title": "Employment Services"
},
"5611": {
"title": "Office Administrative Services"
},
"5616": {
"title": "Investigation and Security Services"
},
"5617": {
"title": "Services to Buildings and Dwellings"
},
"5614": {
"title": "Business Support Services"
},
"5615": {
"title": "Travel Arrangement and Reservation Services"
},
"62149": {
"title": "Other Outpatient Care Centers"},
"51919": {
"title": "All Other Information Services"},
"56211": {
"title": "Waste Collection"
},
"51911": {
"title": "News Syndicates"},
"51913": {
"title": "Internet Publishing and Broadcasting and Web Search Portals"},
"11299": {
"title": "All Other Animal Production"},
"11292": {
"title": "Horses and Other Equine Production"},
"11293": {
"title": "Fur-Bearing Animal and Rabbit Production"},
"11291": {
"title": "Apiculture"},
"51821": {
"title": "Data Processing, Hosting, and Related Services"},
"52111": {
"title": "Monetary Authorities-Central Bank"},
"56145": {
"title": "Credit Bureaus"},
"56144": {
"title": "Collection Agencies"},
"4831": {
"title": "Deep Sea, Coastal, and Great Lakes Water Transportation"
},
"4832": {
"title": "Inland Water Transportation"
},
"4521": {
"title": "Department Stores"
},
"32599": {
"title": "All Other Chemical Product and Preparation Manufacturing"},
"42499": {
"title": "Other Miscellaneous Nondurable Goods Merchant Wholesalers"
},
"42494": {
"title": "Tobacco and Tobacco Product Merchant Wholesalers"
},
"42495": {
"title": "Paint, Varnish, and Supplies Merchant Wholesalers"
},
"42322": {
"title": "Home Furnishing Merchant Wholesalers"
},
"42491": {
"title": "Farm Supplies Merchant Wholesalers"
},
"42492": {
"title": "Book, Periodical, and Newspaper Merchant Wholesalers"
},
"42321": {
"title": "Furniture Merchant Wholesalers"
},
"48541": {
"title": "School and Employee Bus Transportation"},
"45311": {
"title": "Florists"
},
"6222": {
"title": "Psychiatric and Substance Abuse Hospitals"
},
"6223": {
"title": "Specialty (except Psychiatric and Substance Abuse) Hospitals"
},
"6221": {
"title": "General Medical and Surgical Hospitals"
},
"44131": {
"title": "Automotive Parts and Accessories Stores"
},
"44132": {
"title": "Tire Dealers"
},
"48121": {
"title": "Nonscheduled Air Transportation"},
"62311": {
"title": "Nursing Care Facilities (Skilled Nursing Facilities)",
"change_indicator": 1},
"45113": {
"title": "Sewing, Needlework, and Piece Goods Stores"
},
"3221": {
"title": "Pulp, Paper, and Paperboard Mills"
},
"3222": {
"title": "Converted Paper Product Manufacturing"
},
"44221": {
"title": "Floor Covering Stores"
},
"33451": {
"title": "Navigational, Measuring, Electromedical, and Control Instruments Manufacturing"},
"44229": {
"title": "Other Home Furnishings Stores"},
"54199": {
"title": "All Other Professional, Scientific, and Technical Services"},
"54194": {
"title": "Veterinary Services"},
"54192": {
"title": "Photographic Services"},
"33521": {
"title": "Small Electrical Appliance Manufacturing"},
"33522": {
"title": "Major Appliance Manufacturing"},
"54191": {
"title": "Marketing Research and Public Opinion Polling"},
"3321": {
"title": "Forging and Stamping"
},
"3322": {
"title": "Cutlery and Handtool Manufacturing"
},
"3323": {
"title": "Architectural and Structural Metals Manufacturing"
},
"3324": {
"title": "Boiler, Tank, and Shipping Container Manufacturing"
},
"3325": {
"title": "Hardware Manufacturing"
},
"3326": {
"title": "Spring and Wire Product Manufacturing"
},
"3327": {
"title": "Machine Shops; Turned Product; and Screw, Nut, and Bolt Manufacturing"
},
"3328": {
"title": "Coating, Engraving, Heat Treating, and Allied Activities"
},
"3329": {
"title": "Other Fabricated Metal Product Manufacturing"
},
"62221": {
"title": "Psychiatric and Substance Abuse Hospitals"},
"33231": {
"title": "Plate Work and Fabricated Structural Product Manufacturing"},
"33232": {
"title": "Ornamental and Architectural Metal Products Manufacturing"},
"61151": {
"title": "Technical and Trade Schools"},
"8141": {
"title": "Private Households"
},
"1151": {
"title": "Support Activities for Crop Production"
},
"1153": {
"title": "Support Activities for Forestry"
},
"1152": {
"title": "Support Activities for Animal Production"
},
"5511": {
"title": "Management of Companies and Enterprises"
},
"62134": {
"title": "Offices of Physical, Occupational and Speech Therapists, and Audiologists"},
"62131": {
"title": "Offices of Chiropractors"},
"62133": {
"title": "Offices of Mental Health Practitioners (except Physicians)"},
"62132": {
"title": "Offices of Optometrists"},
"55": {
"title": "Management of Companies and Enterprises"
},
"54": {
"title": "Professional, Scientific, and Technical Services"
},
"53": {
"title": "Real Estate and Rental and Leasing"
},
"52": {
"title": "Finance and Insurance"
},
"533": {
"title": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)"
},
"532": {
"title": "Rental and Leasing Services"
},
"531": {
"title": "Real Estate"
},
"31211": {
"title": "Soft Drink and Ice Manufacturing"},
"31212": {
"title": "Breweries"},
"31213": {
"title": "Wineries"},
"31214": {
"title": "Distilleries"},
"56": {
"title": "Administrative and Support and Waste Management and Remediation Services"
},
"51": {
"title": "Information"
},
"423": {
"title": "Merchant Wholesalers, Durable Goods"
},
"425": {
"title": "Wholesale Electronic Markets and Agents and Brokers"
},
"424": {
"title": "Merchant Wholesalers, Nondurable Goods"
},
"42472": {
"title": "Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)"
},
"48849": {
"title": "Other Support Activities for Road Transportation"},
"48841": {
"title": "Motor Vehicle Towing"},
"42471": {
"title": "Petroleum Bulk Stations and Terminals"
},
"23819": {
"title": "Other Foundation, Structure, and Building Exterior Contractors"
},
"23813": {
"title": "Framing Contractors"
},
"23812": {
"title": "Structural Steel and Precast Concrete Contractors"
},
"23815": {
"title": "Glass and Glazing Contractors"
},
"23814": {
"title": "Masonry Contractors"
},
"23817": {
"title": "Siding Contractors"
},
"23816": {
"title": "Roofing Contractors"
},
"56111": {
"title": "Office Administrative Services"},
"221": {
"title": "Utilities"
},
"2213": {
"title": "Water, Sewage and Other Systems"
},
"2212": {
"title": "Natural Gas Distribution"
},
"2211": {
"title": "Electric Power Generation, Transmission and Distribution"
},
"52231": {
"title": "Mortgage and Nonmortgage Loan Brokers"
},
"52232": {
"title": "Financial Transactions Processing, Reserve, and Clearinghouse Activities"
},
"52239": {
"title": "Other Activities Related to Credit Intermediation"
},
"51121": {
"title": "Software Publishers"},
"32111": {
"title": "Sawmills and Wood Preservation"},
"45411": {
"title": "Electronic Shopping and Mail-Order Houses"},
"4512": {
"change_indicator": 3,
"title": "Book Stores and News Dealers"
},
"81149": {
"title": "Other Personal and Household Goods Repair and Maintenance"},
"42313": {
"title": "Tire and Tube Merchant Wholesalers"
},
"42312": {
"title": "Motor Vehicle Supplies and New Parts Merchant Wholesalers"
},
"42311": {
"title": "Automobile and Other Motor Vehicle Merchant Wholesalers"
},
"42314": {
"title": "Motor Vehicle Parts (Used) Merchant Wholesalers"
},
"62412": {
"title": "Services for the Elderly and Persons with Disabilities"},
"62411": {
"title": "Child and Youth Services"},
"45322": {
"title": "Gift, Novelty, and Souvenir Stores"
},
"45321": {
"title": "Office Supplies and Stationery Stores"
},
"62419": {
"title": "Other Individual and Family Services"},
"81142": {
"title": "Reupholstery and Furniture Repair"},
"6239": {
"title": "Other Residential Care Facilities"
},
"6231": {
"change_indicator": 1,
"title": "Nursing Care Facilities (Skilled Nursing Facilities)"
},
"6233": {
"change_indicator": 1,
"title": "Continuing Care Retirement Communities and Assisted Living Facilities for the Elderly"
},
"6232": {
"title": "Residential Intellectual and Developmental Disability, Mental Health, and Substance Abuse Facilities",
"change_indicator": 1},
"48111": {
"title": "Scheduled Air Transportation"},
"44122": {
"title": "Motorcycle, Boat, and Other Motor Vehicle Dealers"},
"44121": {
"title": "Recreational Vehicle Dealers"
},
"3259": {
"title": "Other Chemical Product and Preparation Manufacturing"
},
"3251": {
"title": "Basic Chemical Manufacturing"
},
"3252": {
"title": "Resin, Synthetic Rubber, and Artificial Synthetic Fibers and Filaments Manufacturing"
},
"3253": {
"title": "Pesticide, Fertilizer, and Other Agricultural Chemical Manufacturing"
},
"3254": {
"title": "Pharmaceutical and Medicine Manufacturing"
},
"3255": {
"title": "Paint, Coating, and Adhesive Manufacturing"
},
"3256": {
"title": "Soap, Cleaning Compound, and Toilet Preparation Manufacturing"
},
"33421": {
"title": "Telephone Apparatus Manufacturing"},
"33422": {
"title": "Radio and Television Broadcasting and Wireless Communications Equipment Manufacturing"},
"33429": {
"title": "Other Communications Equipment Manufacturing"},
"811": {
"title": "Repair and Maintenance"
},
"812": {
"title": "Personal and Laundry Services"
},
"813": {
"title": "Religious, Grantmaking, Civic, Professional, and Similar Organizations"
},
"814": {
"title": "Private Households"
},
"3333": {
"title": "Commercial and Service Industry Machinery Manufacturing"
},
"3331": {
"title": "Agriculture, Construction, and Mining Machinery Manufacturing"
},
"3336": {
"title": "Engine, Turbine, and Power Transmission Equipment Manufacturing"
},
"3335": {
"title": "Metalworking Machinery Manufacturing"
},
"3334": {
"title": "Ventilation, Heating, Air-Conditioning, and Commercial Refrigeration Equipment Manufacturing"
},
"3339": {
"title": "Other General Purpose Machinery Manufacturing"
},
"48599": {
"title": "Other Transit and Ground Passenger Transportation"},
"62231": {
"title": "Specialty (except Psychiatric and Substance Abuse) Hospitals"},
"1129": {
"title": "Other Animal Production"
},
"1121": {
"title": "Cattle Ranching and Farming"
},
"1122": {
"title": "Hog and Pig Farming"
},
"1123": {
"title": "Poultry and Egg Production"
},
"1124": {
"title": "Sheep and Goat Farming"
},
"11133": {
"title": "Noncitrus Fruit and Tree Nut Farming"},
"11132": {
"title": "Citrus (except Orange) Groves"},
"11131": {
"title": "Orange Groves"},
"62121": {
"title": "Offices of Dentists"},
"524": {
"title": "Insurance Carriers and Related Activities"
},
"525": {
"title": "Funds, Trusts, and Other Financial Vehicles"
},
"521": {
"title": "Monetary Authorities-Central Bank"
},
"523": {
"title": "Securities, Commodity Contracts, and Other Financial Investments and Related Activities"
},
"42372": {
"title": "Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers"
},
"31171": {
"title": "Seafood Product Preparation and Packaging"},
"45431": {
"title": "Fuel Dealers"
},
"23712": {
"title": "Oil and Gas Pipeline and Related Structures Construction"},
"23713": {
"title": "Power and Communication Line and Related Structures Construction"},
"23711": {
"title": "Water and Sewer Line and Related Structures Construction"},
"92615": {
"title": "Regulation, Licensing, and Inspection of Miscellaneous Commercial Sectors"
},
"92614": {
"title": "Regulation of Agricultural Marketing and Commodities"
},
"92613": {
"title": "Regulation and Administration of Communications, Electric, Gas, and Other Utilities"
},
"92612": {
"title": "Regulation and Administration of Transportation Programs"
},
"92611": {
"title": "Administration of General Economic Programs"
},
"32619": {
"title": "Other Plastics Product Manufacturing"},
"32611": {
"title": "Plastics Packaging Materials and Unlaminated Film and Sheet Manufacturing"},
"32613": {
"title": "Laminated Plastics Plate, Sheet (except Packaging), and Shape Manufacturing"},
"32612": {
"title": "Plastics Pipe, Pipe Fitting, and Unlaminated Profile Shape Manufacturing"},
"32615": {
"title": "Urethane and Other Foam Product (except Polystyrene) Manufacturing"},
"32614": {
"title": "Polystyrene Foam Product Manufacturing"},
"42392": {
"title": "Toy and Hobby Goods and Supplies Merchant Wholesalers"
},
"32616": {
"title": "Plastics Bottle Manufacturing"},
"314": {
"title": "Textile Product Mills"
},
"32721": {
"title": "Glass and Glass Product Manufacturing"},
"4889": {
"title": "Other Support Activities for Transportation"
},
"238": {
"title": "Specialty Trade Contractors"
},
"236": {
"title": "Construction of Buildings"
},
"237": {
"title": "Heavy and Civil Engineering Construction"
},
"52222": {
"title": "Sales Financing"
},
"52221": {
"title": "Credit Card Issuing"
},
"54135": {
"title": "Building Inspection Services"},
"81394": {
"title": "Political Organizations"
},
"81392": {
"title": "Professional Organizations"
},
"81393": {
"title": "Labor Unions and Similar Labor Organizations"
},
"81391": {
"title": "Business Associations"
},
"81399": {
"title": "Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)"
},
"32121": {
"title": "Veneer, Plywood, and Engineered Wood Product Manufacturing"},
"52599": {
"title": "Other Financial Vehicles"
},
"52591": {
"title": "Open-End Investment Funds"
},
"52592": {
"title": "Trusts, Estates, and Agency Accounts"
},
"62161": {
"title": "Home Health Care Services"},
"81": {
"title": "Other Services (except Public Administration)"
},
"53311": {
"title": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)"},
"62423": {
"title": "Emergency and Other Relief Services"},
"62422": {
"title": "Community Housing Services"
},
"62421": {
"title": "Community Food Services"},
"7223": {
"title": "Special Food Services"
},
"7225": {
"change_indicator": 2,
"title": "Restaurants and Other Eating Places"
},
"7224": {
"title": "Drinking Places (Alcoholic Beverages)"
},
"48321": {
"title": "Inland Water Transportation"},
"6243": {
"title": "Vocational Rehabilitation Services"
},
"6244": {
"title": "Child Day Care Services"
},
"53221": {
"title": "Consumer Electronics and Appliances Rental"},
"53223": {
"title": "Video Tape and Disc Rental"},
"53222": {
"title": "Formal Wear and Costume Rental"},
"44112": {
"title": "Used Car Dealers"
},
"44111": {
"title": "New Car Dealers"
},
"33721": {
"title": "Office Furniture (including Fixtures) Manufacturing"},
"48691": {
"title": "Pipeline Transportation of Refined Petroleum Products"},
"48699": {
"title": "All Other Pipeline Transportation"},
"62331": {
"title": "Continuing Care Retirement Communities and Assisted Living Facilities for the Elderly",
"change_indicator": 1},
"3241": {
"title": "Petroleum and Coal Products Manufacturing"
},
"33431": {
"title": "Audio and Video Equipment Manufacturing"},
"48211": {
"title": "Rail Transportation"},
"71151": {
"title": "Independent Artists, Writers, and Performers"},
"5251": {
"title": "Insurance and Employee Benefit Funds"
},
"5259": {
"title": "Other Investment Pools and Funds"
},
"1132": {
"title": "Forest Nurseries and Gathering of Forest Products"
},
"1131": {
"title": "Timber Tract Operations"
},
"11121": {
"title": "Vegetable and Melon Farming"},
"62111": {
"title": "Offices of Physicians"},
"924": {
"title": "Administration of Environmental Quality Programs"
},
"519": {
"title": "Other Information Services"
},
"23811": {
"title": "Poured Concrete Foundation and Structure Contractors"