-
Notifications
You must be signed in to change notification settings - Fork 0
/
topics.js
863 lines (863 loc) · 19.4 KB
/
topics.js
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
const topics = [
'Music',
'Technology',
'Fashion',
'Sports',
'Food',
'Travel',
'Fitness',
'Health',
'Finance',
'Education',
'Art',
'Photography',
'Gaming',
'Books',
'Movies',
'Cars',
'Politics',
'History',
'Science',
'DIY',
'Pets',
'Gardening',
'Meditation',
'Cooking',
'Beauty',
'Parenting',
'Relationships',
'Home decor',
'Environment',
'Design',
'Writing',
'Business',
'Psychology',
'Spirituality',
'Adventure',
'Anime',
'Comedy',
'Crafts',
'Language learning',
'Fashion trends',
'Fitness routines',
'Health tips',
'Personal finance',
'Online education',
'Contemporary art',
'Nature photography',
'Mobile gaming',
'Classic literature',
'Action movies',
'Luxury cars',
'Global politics',
'Ancient history',
'Space exploration',
'Home improvement',
'Organic gardening',
'Mindfulness practices',
'Gourmet cooking',
'Skincare routines',
'Modern parenting',
'Dating advice',
'Interior design',
'Sustainable living',
'Graphic design',
'Fiction writing',
'Start-up strategies',
'Cognitive psychology',
'Self-help books',
'Yoga practices',
'Outdoor adventures',
'Manga culture',
'Stand-up comedy',
'Handmade crafts',
'Language exchange',
'Seasonal fashion',
'Marathon training',
'Mental health awareness',
'Stock market analysis',
'E-learning platforms',
'Abstract art',
'Wildlife photography',
'Console gaming',
'Fantasy literature',
'Electric vehicles',
'Geopolitical trends',
'Medieval history',
'Astrophysics',
'Energy-efficient homes',
'Herb gardening',
'Vegan cooking',
'Anti-aging skincare',
'Positive parenting',
'Relationship counseling',
'Minimalist interiors',
'Eco-friendly living',
'Web design trends',
'Non-fiction writing',
'Entrepreneurship',
'Behavioral economics',
'Meditation techniques',
'Backpacking tips',
'Cosplay culture',
'Satirical humor',
'DIY projects',
'Language proficiency',
'Vintage fashion',
'Crossfit workouts',
'Nutritional science',
'Personal budgeting',
'Art history',
'Portrait photography',
'PC gaming',
'Mystery novels',
'Luxury watches',
'Climate change policy',
'Military history',
'Quantum physics',
'Smart home tech',
'Vertical gardening',
'Gluten-free recipes',
'Skincare ingredients',
'Blended families',
'Conflict resolution',
'Bohemian decor',
'Green architecture',
'User experience design',
'Content marketing',
'Cognitive behavioral therapy',
'Wilderness survival',
'Anime conventions',
'Improv comedy',
'Upcycling projects',
'Translation services',
'Seasonal fashion trends',
'Marathon preparation',
'Workplace wellness',
'Investment strategies',
'Online learning tools',
'Renaissance art',
'Landscape photography',
'Virtual reality gaming',
'Historical fiction',
'Luxury travel',
'Autonomous vehicles',
'Dark matter research',
'Passive solar homes',
'Aromatherapy oils',
'Paleo diet recipes',
'Anti-aging treatments',
'Positive discipline',
'Marriage counseling',
'Contemporary art galleries',
'Sustainable fashion',
'Adventure travel',
'Comic book culture',
'Stand-up specials',
'DIY home decor',
'Language teaching',
'Street fashion',
'Circuit training',
'Holistic health',
'Personal branding',
'Economic policy',
'Ancient civilizations',
'Neuroscience',
'Urban gardening',
'Vegan baking',
'Skincare routines',
'Parenting styles',
'Couples therapy',
'Scandinavian design',
'Online marketing',
'Mindfulness meditation',
'Backpacking gear',
'Japanese culture',
'Comedy writing',
'Artisan crafts',
'Translation services',
'Seasonal gardening',
'Triathlon training',
'Workplace productivity',
'Real estate investing',
'Online education tools',
'Contemporary sculpture',
'Sports photography',
'Virtual reality tours',
'World War II history',
'Space exploration',
'Renewable energy',
'Mediterranean diet',
'Korean skincare',
'Single parenting',
'Relationship advice',
'Industrial design',
'Environmental policy',
'DIY furniture',
'Language immersion',
'Fashion blogging',
'Parkour training',
'Mental wellness',
'Personal development',
'Political satire',
'Historical reenactments',
'Sustainable architecture',
'Street photography',
'Healthy eating habits',
'Fashion design',
'Athlete interviews',
'Environmental activism',
'Meditation retreats',
'Adventure sports',
'Anime art',
'Sketch comedy',
'Urban gardening',
'Freelance writing',
'Business management',
'Behavioral psychology',
'Survival skills',
'Manga reviews',
'Community gardening',
'Digital nomad lifestyle',
'Climate change research',
'Art therapy',
'Home brewing',
'Cross-cultural communication',
'Fashion illustration',
'Alternative medicine',
'Science fiction movies',
'Jazz music',
'Astronomy',
'Ballet',
'Cryptocurrency',
'Board games',
'Surfing',
'Urban planning',
'Tea culture',
'Wildlife conservation',
'Sculpture art',
'Minimalist lifestyle',
'Wine tasting',
'Skateboarding',
'Photography tips',
'Cybersecurity',
'Mental health therapies',
'Artificial intelligence',
'Culinary arts',
'Marine biology',
'Interior lighting',
'Fashion photography',
'Vintage cars',
'Soccer strategies',
'Architectural history',
'Classic rock music',
'Brewing coffee',
'Tattoo art',
'Camping gear',
'Film festivals',
'Public speaking',
'Investment banking',
'Hiking trails',
'Bird watching',
'Astrology',
'Origami',
'Renaissance history',
'Astronomical photography',
'Auto repair',
'Ballroom dancing',
'Barbecue techniques',
'Blockchain technology',
'Botanical illustration',
'Calligraphy',
'Cartooning',
'Chess strategies',
'Comic strip creation',
'Competitive gaming',
'Concert photography',
'Cooking with herbs',
'Digital illustration',
'Dog training',
'Drone photography',
'Electric guitar playing',
'Film directing',
'Film score composing',
'Fitness competitions',
'Flower arranging',
'Food photography',
'Genealogy',
'Geocaching',
'Glassblowing',
'Guitar building',
'Gymnastics',
'Herbal medicine',
'Historical photography',
'Horse riding',
'Hot air ballooning',
'Ice skating',
'Interior architecture',
'Jazz dancing',
'Jewelry making',
'Kite flying',
'Leather crafting',
'Life coaching',
'Lock picking',
'Magic tricks',
'Maritime history',
'Matcha tea preparation',
'Mathematical puzzles',
'Model building',
'Mountain biking',
'Mountaineering',
'Mural painting',
'Nail art',
'Opera singing',
'Origami',
'Paper mache',
'Perfume making',
'Photojournalism',
'Pilates',
'Pottery making',
'Quilting',
'Radio control hobbies',
'Renaissance fairs',
'Rock climbing',
'Rowing',
'Sailing',
'Scrapbooking',
'Sculpting',
'Sewing',
'Skiing',
'Snowboarding',
'Soap making',
'Speed cubing',
'Spinning yarn',
'Stained glass art',
'Stand-up paddleboarding',
'Stargazing',
'Steampunk fashion',
'Stone carving',
'Surf photography',
'Swimming',
'Table tennis',
'Tattoo culture',
'Theater production',
'Urban exploration',
'Vintage photography',
'Watercolor painting',
'Weightlifting',
'Whale watching',
'Woodworking',
'Yoga philosophy',
'Zoology',
'Alternative medicine',
'Science fiction movies',
'Jazz music',
'Astronomy',
'Ballet',
'Cryptocurrency',
'Board games',
'Surfing',
'Urban planning',
'Tea culture',
'Wildlife conservation',
'Sculpture art',
'Minimalist lifestyle',
'Wine tasting',
'Skateboarding',
'Photography tips',
'Cybersecurity',
'Mental health therapies',
'Artificial intelligence',
'Culinary arts',
'Marine biology',
'Interior lighting',
'Fashion photography',
'Vintage cars',
'Soccer strategies',
'Architectural history',
'Classic rock music',
'Brewing coffee',
'Tattoo art',
'Camping gear',
'Film festivals',
'Public speaking',
'Investment banking',
'Hiking trails',
'Bird watching',
'Astrology',
'Origami',
'Renaissance history',
'Astronomical photography',
'Auto repair',
'Ballroom dancing',
'Barbecue techniques',
'Blockchain technology',
'Botanical illustration',
'Calligraphy',
'Cartooning',
'Chess strategies',
'Comic strip creation',
'Competitive gaming',
'Concert photography',
'Cooking with herbs',
'Digital illustration',
'Dog training',
'Drone photography',
'Electric guitar playing',
'Film directing',
'Film score composing',
'Fitness competitions',
'Flower arranging',
'Food photography',
'Genealogy',
'Geocaching',
'Glassblowing',
'Guitar building',
'Gymnastics',
'Herbal medicine',
'Historical photography',
'Horse riding',
'Hot air ballooning',
'Ice skating',
'Interior architecture',
'Jazz dancing',
'Jewelry making',
'Kite flying',
'Leather crafting',
'Life coaching',
'Lock picking',
'Magic tricks',
'Maritime history',
'Matcha tea preparation',
'Mathematical puzzles',
'Model building',
'Mountain biking',
'Mountaineering',
'Mural painting',
'Nail art',
'Opera singing',
'Origami',
'Paper mache',
'Perfume making',
'Photojournalism',
'Pilates',
'Pottery making',
'Quilting',
'Radio control hobbies',
'Renaissance fairs',
'Rock climbing',
'Rowing',
'Sailing',
'Scrapbooking',
'Sculpting',
'Sewing',
'Skiing',
'Snowboarding',
'Soap making',
'Speed cubing',
'Spinning yarn',
'Stained glass art',
'Stand-up paddleboarding',
'Stargazing',
'Steampunk fashion',
'Stone carving',
'Surf photography',
'Swimming',
'Table tennis',
'Tattoo culture',
'Theater production',
'Urban exploration',
'Vintage photography',
'Watercolor painting',
'Weightlifting',
'Whale watching',
'Woodworking',
'Yoga philosophy',
'Zoology',
'Hiking expeditions',
'Kayaking',
'Fly fishing',
'Bird watching',
'Antique collecting',
'Marine navigation',
'Competitive swimming',
'Scuba diving',
'Water skiing',
'Hot spring bathing',
'Mountain climbing',
'Base jumping',
'Paragliding',
'Skydiving',
'Gliding',
'Wing walking',
'Rally driving',
'Go-kart racing',
'Motocross',
'Car tuning',
'Autocross',
'Drag racing',
'Monster truck rallies',
'Hot rod culture',
'Muscle car restoration',
'Off-road racing',
'Formula 1 racing',
'Vintage motorcycle restoration',
'Superbike racing',
'Custom bike building',
'Chopper culture',
'Café racer building',
'Motorcycle touring',
'Motorcycle camping',
'Dirt biking',
'ATV riding',
'Snowmobiling',
'Jet skiing',
'Boating',
'Sailing races',
'Yacht sailing',
'Fishing tournaments',
'Deep-sea fishing',
'Canoeing',
'Rafting',
'River tubing',
'Paddleboarding',
'Kiteboarding',
'Windsurfing',
'Surfing competitions',
'Big wave surfing',
'Bodyboarding',
'Skimboarding',
'Wakeboarding',
'Water polo',
'Synchronized swimming',
'Ice hockey',
'Figure skating',
'Curling',
'Bobsledding',
'Luge',
'Skeleton racing',
'Snowshoeing',
'Cross-country skiing',
'Biathlon',
'Freestyle skiing',
'Alpine skiing',
'Snowboarding competitions',
'Halfpipe snowboarding',
'Big air snowboarding',
'Freeride snowboarding',
'Slopestyle skiing',
'Ski jumping',
'Nordic combined',
'Telemark skiing',
'Mogul skiing',
'Winter triathlons',
'Ice climbing',
'Glacier hiking',
'Polar expeditions',
'Arctic surfing',
'Ice fishing',
'Dog sledding',
'Reindeer herding',
'Igloo building',
'Survival training',
'Primitive camping',
'Bushcraft',
'Foraging',
'Mushroom hunting',
'Edible plant identification',
'Fire starting techniques',
'Shelter building',
'Navigation skills',
'Tracking animals',
'Wildlife observation',
'Nature photography',
'Bird banding',
'Citizen science projects',
'Stargazing',
'Meteor shower watching',
'Aurora borealis viewing',
'Wildflower identification',
'Rock hounding',
'Fossil hunting',
'Meteorite collecting',
'Gem hunting',
'Gold panning',
'Metal detecting',
'Treasure hunting',
'Cave exploration',
'Speleology',
'Spelunking',
'Caving safety',
'Bat watching',
'Subterranean biology',
'Archaeological digs',
'Paleontology',
'Ancient history',
'Medieval reenactments',
'Renaissance fairs',
'Historical research',
'Genealogical research',
'Ethnography',
'Cultural anthropology',
'Linguistic anthropology',
'Physical anthropology',
'Archaeobotany',
'Zooarchaeology',
'Bioarchaeology',
'Experimental archaeology',
'Underwater archaeology',
'Industrial archaeology',
'Classical archaeology',
'Near Eastern archaeology',
'Mesoamerican archaeology',
'Andean archaeology',
'African archaeology',
'Asian archaeology',
'European archaeology',
'Oceania archaeology',
'Arctic archaeology',
'Desert archaeology',
'Tropical archaeology',
'High-altitude archaeology',
'Historical archaeology',
'Prehistoric archaeology',
'Cognitive archaeology',
'Landscape archaeology',
'Public archaeology',
'Cultural resource management',
'Museum studies',
'Conservation science',
'Archaeometry',
'Geoarchaeology',
'Archaeological theory',
'Ethnoarchaeology',
'Paleopathology',
'Ancient DNA studies',
'Isotope analysis',
'Archaeological illustration',
'Heritage management',
'Digital archaeology',
'Virtual reality in archaeology',
'3D scanning in archaeology',
'Archaeological site surveys',
'Remote sensing in archaeology',
'Geophysical prospection',
'LiDAR in archaeology',
'Dendrochronology',
'Radiocarbon dating',
'Thermoluminescence dating',
'Obsidian hydration dating',
'Potassium-argon dating',
'Amino acid racemization',
'Archaeomagnetic dating',
'Paleomagnetic dating',
'Electron spin resonance dating',
'Uranium-series dating',
'Fission track dating',
'Luminescence dating',
'Paleoclimatology',
'Paleoenvironmental studies',
'Paleobotany',
'Paleozoology',
'Paleoecology',
'Paleoanthropology',
'Quaternary science',
'Glacial geology',
'Fluvial geology',
'Marine geology',
'Volcanology',
'Seismology',
'Petrology',
'Mineralogy',
'Sedimentology',
'Stratigraphy',
'Geochronology',
'Geochemistry',
'Geophysics',
'Geobiology',
'Astrobiology',
'Planetary geology',
'Geomorphology',
'Soil science',
'Hydrology',
'Hydrogeology',
'Glaciology',
'Meteorology',
'Climatology',
'Oceanography',
'Environmental science',
'Ecology',
'Evolutionary biology',
'Genetics',
'Molecular biology',
'Cell biology',
'Developmental biology',
'Neurobiology',
'Behavioral biology',
'Conservation biology',
'Restoration ecology',
'Landscape ecology',
'Urban ecology',
'Industrial ecology',
'Agricultural ecology',
'Forest ecology',
'Marine ecology',
'Freshwater ecology',
'Wetland ecology',
'Grassland ecology',
'Desert ecology',
'Polar ecology',
'Tropical ecology',
'Temperate ecology',
'Ecological modeling',
'Ecological genetics',
'Population genetics',
'Conservation genetics',
'Molecular ecology',
'Evolutionary ecology',
'Behavioral ecology',
'Community ecology',
'Ecosystem ecology',
'Global change biology',
'Climate change ecology',
'Biodiversity conservation',
'Endangered species recovery',
'Invasive species management',
'Habitat restoration',
'Wildlife management',
'Environmental monitoring',
'Ecological risk assessment',
'Ecotoxicology',
'Environmental impact assessment',
'Sustainable development',
'Ecological economics',
'Natural resource management',
'Water resource management',
'Forest resource management',
'Fisheries management',
'Wildlife conservation',
'Marine conservation',
'Coastal zone management',
'Watershed management',
'Landscape management',
'Urban planning',
'Regional planning',
'Environmental policy',
'Environmental law',
'Environmental ethics',
'Environmental education',
'Environmental communication',
'Environmental psychology',
'Environmental sociology',
'Environmental anthropology',
'Political ecology',
'Human ecology',
'Cultural ecology',
'Historical ecology',
'Industrial ecology',
'Urban ecology',
'Landscape ecology',
'Restoration ecology',
'Agroecology',
'Forest ecology',
'Marine ecology',
'Freshwater ecology',
'Wetland ecology',
'Desert ecology',
'Polar ecology',
'Tropical ecology',
'Temperate ecology',
'Ecological modeling',
'Ecological informatics',
'Spatial ecology',
'Ecosystem services',
'Ecological footprint analysis',
'Life cycle assessment',
'Sustainability science',
'Sustainable agriculture',
'Sustainable forestry',
'Sustainable fisheries',
'Sustainable energy',
'Renewable energy',
'Energy efficiency',
'Green building',
'Sustainable transportation',
'Sustainable tourism',
'Sustainable business',
'Corporate social responsibility',
'Social entrepreneurship',
'Environmental entrepreneurship',
'Ecotourism',
'Conservation finance',
'Climate finance',
'Green bonds',
'Carbon trading',
'Environmental economics',
'Natural resource economics',
'Ecological economics',
'Behavioral economics',
'Institutional economics',
'Development economics',
'International economics',
'Agricultural economics',
'Energy economics',
'Environmental policy',
'Environmental law',
'Environmental ethics',
'Environmental communication',
'Environmental education',
'Environmental psychology',
'Environmental sociology',
'Environmental anthropology',
'Political ecology',
'Human ecology',
'Cultural ecology',
'Historical ecology',
'Industrial ecology',
'Urban ecology',
'Landscape ecology',
'Restoration ecology',
'Agroecology',
'Forest ecology',
'Marine ecology',
'Freshwater ecology',
'Wetland ecology',
'Desert ecology',
'Polar ecology',
'Tropical ecology',
'Temperate ecology',
'Ecological modeling',
'Ecological informatics',
'Spatial ecology',
'Ecosystem services',
'Ecological footprint analysis',
'Life cycle assessment',
'Sustainability science',
'Sustainable agriculture',
'Sustainable forestry',
'Sustainable fisheries',
'Sustainable energy',
'Renewable energy',
'Energy efficiency',
'Green building',
'Sustainable transportation',
'Sustainable tourism',
'Sustainable business',
'Corporate social responsibility',
'Social entrepreneurship',
'Environmental entrepreneurship',
'Ecotourism',
'Conservation finance',
'Climate finance',
'Green bonds',
'Carbon trading',
'Environmental economics',
'Natural resource economics',
'Ecological economics',
'Behavioral economics',
'Institutional economics',
'Development economics',
'International economics',
'Agricultural economics',
'Energy economics'
];