-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathontology.py
More file actions
2611 lines (2604 loc) · 95.1 KB
/
ontology.py
File metadata and controls
2611 lines (2604 loc) · 95.1 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
tree = {
"root": {
"Arts and Entertainment" : {
"Actor Appreciation" : {
"Contacting Celebrities" : [],
},
"Amusement and Theme Parks" : {
"Carnivals" : [],
"Disneyland and Disney World" : [],
"Roller Coasters" : [],
"Water Parks" : [],
},
"Artwork" : {
"Art Appreciation" : [],
"Art Collection" : [],
"Art Equipment" : [],
"Art Media" : [],
"Art Studies" : [],
"Artwork Care and Maintenance" : [],
"Calligraphy" : [],
"Careers in Art" : [],
"Decorating with Prints and Pictures" : [],
"Exhibited Arts" : [],
"Framing" : [],
"Painting" : [],
"Selling Arts and Crafts" : [],
"Wall Art" : [],
"Sculpting" : [],
"Studios" : [],
},
"Books" : {
"Book Clubs and Book Groups" : [],
"Borrowing and Sharing Books" : [],
"Purchasing Books" : [],
"Specific Book Series" : [],
"Libraries" : [],
"EBook Readers" : [],
"Organizing and Caring for Books" : [],
"Collecting Books" : [],
"Selling Books" : [],
},
"Concerts" : {
"Backstage Concerts" : [],
"Concert Preparation" : [],
"Concert Safety" : [],
"Concert Tickets" : [],
"Dressing for Concerts" : [],
"Moshing" : [],
"Music Festivals" : [],
},
"Cosplay and Role Playing" : {
"Cosplay" : [],
"Role Playing" : [],
"Furry Fandom" : [],
},
"Costumes" : {
"Animal Costumes" : [],
"Book and Movie Character Costumes" : [],
"Cartoon and Comic Character Costumes" : [],
"Fairy Princess and Doll Costumes" : [],
"Famous People Costumes" : [],
"Historical Costumes" : [],
"Wrestling Costumes" : [],
"Video Game Character Costumes" : [],
"Santa Claus Costumes" : [],
"Star Wars Costumes" : [],
},
"Event Tickets" : {
"Concert Tickets" : [],
},
"Fairs and Fetes" : {
"Carnivals" : [],
"Science Fair" : [],
},
"Festivals" : {
"Music Festivals" : [],
},
"Movies" : {
"Movie Appreciation" : [],
"Making Movies" : [],
"Cinemas" : [],
"Movie Nights" : [],
"Movie Collections" : [],
},
"Music" : {
"Musical Instruments" : [],
"Music Techniques" : [],
"Orchestra" : [],
"Singing" : [],
"Songs and Song Writing" : [],
"Music Listening and Appreciation" : [],
"Disc Jockeys" : [],
"Bands" : [],
"Music Collectibles" : [],
},
"Nightclubs" : {
"Club Dance" : [],
"Disco" : [],
},
"Parades" : {
},
"Parks" : {
"Botanical Gardens" : [],
"Dog Parks" : [],
"National Parks" : [],
"Zoos" : [],
},
"Performing Arts" : {
"Acting" : [],
"Theater" : [],
"Dancing" : [],
"Talent Shows" : [],
"Performing Comedy" : [],
"Circuses" : [],
"Street Performance" : [],
},
"TV Viewing and Shows" : {
"Doctor Who" : [],
"My Little Pony: Friendship is Magic" : [],
"Television Commercials" : [],
},
},
"Cars and Other Vehicles" : {
"Automotive and Transportation Businesses" : {
},
"Automotive Tools" : {
},
"Aviation" : {
"Flight Training" : [],
"Flight Phases" : [],
"Cessna Aircraft" : [],
"Rotorcraft" : [],
"Unmanned Aerial Vehicles" : [],
"Air Shows" : [],
"Air Travel" : [],
"Aircraft Spotting" : [],
"Aviation Careers" : [],
},
"Bicycles" : {
"Bicycle Tire Maintenance" : [],
"Bicycle Brake and Chain Maintenance" : [],
"Bicycle Theft" : [],
},
"Boats" : {
"Boat Motors and Marine Engines" : [],
"Transporting and Storing Boats" : [],
"Purchasing Boats" : [],
"Boat Building" : [],
"Boat Service and Repair" : [],
"Boating Safety" : [],
},
"Cars" : {
"Car Maintenance and Repair" : [],
"Auto Exterior and Interior Accessories" : [],
"Renting Cars" : [],
"Car Makes" : [],
"Transporting and Storing Cars" : [],
"Customizing and Modifying Cars" : [],
"Car Safety and Security" : [],
"Buying a Car" : [],
"Car Sales" : [],
"Car Donations" : [],
"Car Identification and Registration" : [],
},
"Driving Techniques" : {
"Defensive Driving Skills & Safety" : [],
"Efficient Driving" : [],
"Driving Basics" : [],
"Country Specific Driving Skills" : [],
},
"Farm Vehicles" : {
},
"Motor Vehicle Accidents" : {
"First Aid for Traffic Accident Injuries" : [],
"Motor Vehicle Accidents and Law" : [],
},
"Motorcycles" : {
"Motorcycle Safety" : [],
"Motorcycle Stunt Riding" : [],
"Motorcycle Sales" : [],
"Motorcycle Accessories" : [],
"Motorcycle Gear" : [],
"Motorcycle Servicing and Repairs" : [],
"Transporting and Storing Motorcycles" : [],
"Modifying Motorcycles" : [],
},
"Off Road Vehicles" : {
"Dirt Bikes" : [],
"All Terrain Vehicles and Quads" : [],
},
"Public Transport" : {
"Train Travel" : [],
"Bus Travel" : [],
"Taxi Cab Travel" : [],
"Ridesharing" : [],
"Rapid Transit" : [],
},
"Recreational Vehicles" : {
"Recreational Vehicle Sales and Rental" : [],
"Mobile Homes" : [],
},
"Scooters" : {
"Kick Scooters" : [],
"Motorized Scooters" : [],
},
"Security and Military Vehicles" : {
},
"Trailers" : {
},
"Trucks" : {
"Forklifts" : [],
"Truck Maintenance" : [],
"Truck Accessories" : [],
},
"Vehicle Loans" : {
"Car Loans" : [],
},
"Vehicle Sports" : {
"Kart Racing" : [],
"Vehicle Clubs and Shows" : [],
},
"Vehicles and the Law" : {
"Legal Documents for Driving" : [],
"Fines and Road Offenses" : [],
"Driving Under the Influence" : [],
"Car Identification and Registration" : [],
"Motor Vehicle Accidents and Law" : [],
"Vehicle Theft" : [],
},
},
"Computers and Electronics" : {
"Basic Computer Skills" : {
"Computer Alarms" : [],
},
"Buying Consumer Electronics" : {
"Selecting and Buying a Computer" : [],
"Buying Fridges and Freezers" : [],
},
"Computer Theft" : {
},
"Hacks" : {
},
"Hardware" : {
"External Components" : [],
"Internal Components" : [],
"Cabling and Wiring Connection" : [],
},
"Internet" : {
"Downloading" : [],
"AOL Internet Provider" : [],
"Wikis" : [],
"Internet Forums and Message Boards" : [],
"Internet Security" : [],
"Internet Browsers" : [],
"Email and Instant Messaging" : [],
"Website Application Instructions" : [],
"Website and Blog Creation" : [],
"Internet Memes" : [],
"Internet Streaming Services" : [],
},
"Laptops" : {
"Laptop Batteries" : [],
"Laptop Maintenance and Repair" : [],
"MacBook" : [],
"Chromebook" : [],
},
"Maintenance and Repair" : {
"System Maintenance and Repair" : [],
"Hardware Maintenance and Repair" : [],
},
"Networking" : {
"Wireless Networking" : [],
},
"Operating Systems" : {
"Linux" : [],
"Windows" : [],
"Mac" : [],
},
"Phones and Gadgets" : {
"Bluetooth" : [],
"Mobile Operating Systems" : [],
"Robots" : [],
"Telephone Providers" : [],
"Calculators" : [],
"Smartphones" : [],
"GPS" : [],
"Portable Media Players" : [],
"Cell Phones" : [],
"Communications Monitoring" : [],
"Mobile Features" : [],
"Phone Theft" : [],
},
"Software" : {
"Media" : [],
"Graphics" : [],
"Install & Uninstall Software" : [],
"Software Testing" : [],
"Web Programming" : [],
"Media Software" : [],
"MySQL" : [],
"Adobe Software" : [],
"CAD Software" : [],
"Accounting Software" : [],
"Office" : [],
"Virtual Machines" : [],
"File Manipulation" : [],
"Programming" : [],
"Migration Software" : [],
},
"Tablet Computers" : {
"Ipad" : [],
"Microsoft Surface" : [],
},
"TV and Home Audio" : {
"Home Theater" : [],
"Television" : [],
"Home Audio" : [],
},
"Video Games" : {
"PC Games" : [],
"Electronic Game Strategies" : [],
"Arcade Games" : [],
"PlayStation Video Game Consoles" : [],
"Multi Platform Games" : [],
"Emulators and Roms" : [],
"Video Game Creation" : [],
"Nintendo Video Game Consoles" : [],
"Xbox" : [],
"Video Game Console Maintenance and Repair" : [],
"Buying and Selling Video Games" : [],
"Steam Games" : [],
},
},
"Education and Communications" : {
"College University and Postgraduate" : {
"Campus Life" : [],
"College and University Study Techniques" : [],
"Budgeting and Financial Aid for College" : [],
"Applying for Tertiary Education" : [],
"Studying Overseas" : [],
},
"Distance Learning" : {
},
"Homeschooling" : {
},
"Interview Skills" : {
},
"Language Games" : {
"Codes and Hidden Messaging" : [],
"Fictional Languages" : [],
},
"Learning Techniques and Student Skills" : {
"Homework Skills" : [],
"Tests and Exams" : [],
"Improving And Maintaining Grades" : [],
"Memorization Skills" : [],
"Advanced Placement Courses and Exams" : [],
},
"Parent Educational Resources" : {
"Teaching Children Reading and Writing" : [],
"Helping Children with Homework" : [],
},
"Postal System" : {
"Business Shipping and Delivery" : [],
"Changing Address" : [],
"Packing Fragile Items for Shipping" : [],
},
"Posters and Signs" : {
},
"Preschool and Kindergarten" : {
},
"Presentations" : {
"PowerPoint Presentations" : [],
},
"Research and Review" : {
"Essays" : [],
"Academic Surveys" : [],
},
"Social Activism" : {
"Environmental Awareness" : [],
"Volunteer and Community Service" : [],
"Human Rights" : [],
"Political Campaigning and Participation" : [],
"Health Activism" : [],
"Feminism and Sexism" : [],
"Racism" : [],
"Disability Activism" : [],
"Awareness Raising Events" : [],
},
"Speaking" : {
"Manual Communication" : [],
"Phone Skills" : [],
"Speaking and Listening Skills" : [],
"Speech Styles" : [],
"Public Speaking" : [],
},
"Stationery" : {
"Writing Implements" : [],
"Binders Files and Folders" : [],
"Paper Fasteners" : [],
"Envelopes" : [],
"Whiteboards" : [],
"Basic Paper Skills" : [],
"Pen and Pencil Crafts" : [],
"Pencil Cases" : [],
"Glue" : [],
},
"Subjects" : {
"English" : [],
"Geography" : [],
"Mathematics" : [],
"Law and Legislation" : [],
"Reading and Comprehension Skills" : [],
"History" : [],
"Psychology Studies" : [],
"Science" : [],
"Studying Literature" : [],
"Economics" : [],
"Art Studies" : [],
},
"Teacher Resources" : {
"Creating Lesson Plans" : [],
"Classroom Management and Student Conduct" : [],
"Teaching Students with Special Needs" : [],
"Information Technology in the Classroom" : [],
},
"World Languages" : {
"Spanish" : [],
"Chinese" : [],
"Japanese" : [],
"German" : [],
"Greek" : [],
"Korean" : [],
"Multiple Language Guides" : [],
"English Dialects and Slang" : [],
"French" : [],
"Russian" : [],
"Italian" : [],
"Arabic" : [],
"Hebrew" : [],
"Dutch" : [],
"Polish" : [],
"Esperanto" : [],
"Latin" : [],
"Swedish" : [],
"Urdu" : [],
"Tagalog" : [],
"Hawaiian" : [],
"Turkish" : [],
"Irish" : [],
"Portuguese" : [],
"Hindi" : [],
"Norwegian" : [],
},
"Writing" : {
"Diary and Secrets" : [],
"Ideas and Inspiration" : [],
"Official Writing and Complaints" : [],
"Publishing" : [],
"Works" : [],
"Speechwriting" : [],
"Letters" : [],
"Journal Writing" : [],
"Better Writing" : [],
"Editing and Style" : [],
"Technical Writing" : [],
"Youth Writing" : [],
"Article Writing" : [],
},
},
"Family Life" : {
"Creating Life Balance" : {
"Dealing with Parents as an Adult" : [],
},
"Death Funerals and Bereavement" : {
"Coping with Loss" : [],
},
"Family Reunions and Events" : {
},
"Family Traditions" : {
},
"Family Vacations" : {
},
"Genealogy" : {
},
"Grandparents" : {
},
"In Laws" : {
},
"Married Life" : {
"Cheating Spouses" : [],
"Wedding Anniversaries" : [],
"Marriage Issues" : [],
"Dealing with Separation and Divorce" : [],
"Arranged Marriages" : [],
},
"Parenting" : {
"Motherhood" : [],
"Parenting and Technology" : [],
"Nurturing Talent" : [],
"Teaching Children Skills" : [],
"Homeschooling" : [],
"Development Stages" : [],
"Adoption" : [],
"Behavioral Issues" : [],
},
"Retirement" : {
"Financing Retirement" : [],
},
"Weddings" : {
"Wedding Planning" : [],
"Honeymoons" : [],
"Arranged Marriages" : [],
"Engagement" : [],
"Managing Wedding Stress" : [],
"Wedding Anniversaries" : [],
"Wedding Ceremonies" : [],
"Wedding Clothes" : [],
"Wedding Crafts" : [],
"Wedding Decorating" : [],
"Wedding Etiquette" : [],
"Wedding Flowers" : [],
"Wedding Gifts" : [],
"Wedding Hair and Makeup" : [],
"Wedding Memories" : [],
"Wedding Music" : [],
"Wedding Party" : [],
"Wedding Photography" : [],
"Wedding Receptions" : [],
"Weddings by Nationality or Ethnicity" : [],
},
},
"Finance and Business" : {
"Auctions" : {
"Auction Sites" : []
},
"Banks and Financial Institutions" : {
"Banking and Finance Law" : [],
"Checks and Checkbooks" : [],
"Lending" : [],
"Money Transfers" : [],
"Online Banking" : [],
"Opening a Bank Account" : [],
"Payment Cards" : [],
"Using Automated Teller Machines" : [],
"Credit Rating" : [],
"Personal Savings" : [],
"Counterfeit Money" : []
},
"Business" : {
"Customer Relations" : [],
"Business by Industry" : [],
"Business Personnel" : [],
"Running a Business" : [],
"Starting a Business" : [],
"Business Skills" : [],
"Business Promotion" : [],
"Business Security" : [],
"Business Communications and Information Technology" : []
},
"Finance Careers" : {
},
"Fundraising and Charity" : {
"Crowdfunding" : [],
"School Fundraising" : [],
"Fundraising for Animals" : [],
"Raffles" : [],
"Donations" : []
},
"Government" : {
"Citizenship and Immigration" : [],
"Government Assistance" : [],
"Social Security" : [],
"Careers in Government" : [],
"Political Campaigning and Participation" : [],
"Political Occupations" : [],
"Taxes" : []
},
"Investments and Trading" : {
"Financial Stocks" : [],
"Financial Bonds" : [],
"Financial Ratios" : [],
"Precious Metals Investment" : [],
"Foreign Exchange Market" : [],
"Mineral and Energy Investment" : [],
"Investing in Real Estate" : []
},
"Legal Matters" : {
"Retaining a Lawyer" : [],
"Intellectual Property" : [],
"Wills and Testaments" : [],
"Contracts and Legal Agreements" : [],
"Animals and the Law" : [],
"Vehicles and the Law" : [],
"Vital Records" : [],
"Freedom of Information Processes" : [],
"Family Law" : [],
"Property Law" : [],
"Consumer Protection Law" : [],
"Employment Law" : [],
"Health Law" : [],
"Anti Discrimination Law" : [],
"Sports Law" : [],
"Tort Law" : [],
"Malpractice and Misconduct" : [],
"Court Practice and Procedure" : [],
"Missing Persons" : [],
"Communications Law" : [],
"Public Law" : [],
"Legal Careers" : [],
"Law Enforcement" : [],
"Banking and Finance Law" : [],
"Corporate Law" : [],
"Criminal Law" : [],
"Alternative Dispute Resolution" : [],
"Trust Law" : []
},
"Managing Your Money" : {
"Budgeting" : [],
"Recession" : [],
"Making Money" : [],
"Frugality" : [],
"Personal Income" : [],
"Wealth" : [],
"Payment Cards" : [],
"Managing Personal Debt" : [],
"Financing Retirement" : [],
"Personal Savings" : [],
"Handling and Storing Money" : [],
"Working with Financial Experts" : [],
"Passive Income" : [],
"Coins" : [],
"Money Gifts" : [],
"Counterfeit Money" : [],
"Money Transfers" : []
},
"Marketing" : {
"Advertising" : [],
"Business Promotion" : [],
"Ethical Consumerism" : [],
"Hiring Marketing Experts" : [],
"Marketing Careers" : [],
"Marketing Materials" : [],
"Marketing Plans and Strategies" : [],
"Marketing Specific Products" : [],
"Marketing Styles" : [],
"Public Relations" : [],
"Surveys" : []
},
"Mobile Payment Systems" : {
"PayPal" : [],
"Venmo" : [],
"Apple Pay" : [],
"Square App" : []
},
"Real Estate" : {
"Renting" : [],
"Selling Property" : [],
"Buying Property" : [],
"Property Loans and Mortgages" : [],
"Commercial Real Estate" : [],
"Investing in Real Estate" : [],
"Property Law" : [],
"Real Estate Businesses" : [],
"Vacation Real Estate" : [],
"Homelessness" : [],
"Land Surveys" : []
},
"Risk Management" : {
"Insurance" : []
},
"Sharing Economy" : {
"Cryptocurrencies" : [],
"Couchsurfing" : [],
"Freecycling" : []
},
"Shopping" : {
"Shopping Online" : [],
"Ethical Consumerism" : [],
"Sales and Bargain Shopping" : [],
"Buying Goods by Type" : [],
"Consumer Education" : [],
"Dealing with Retailers and Salespeople" : [],
"Shopping Cards and Vouchers" : [],
"Returns Refunds and Exchanges" : [],
"Retail Self Checkouts" : [],
"Christmas Shopping" : []
},
},
"Food and Entertaining" : {
"Appreciation of Food" : {
"Chocophilia": [],
"Eating Techniques" : [],
},
"Barbecue" : {
"Barbecue Equipment": [],
"Barbecue Fish": [],
"Barbecue Meat": [],
"Smoked Meat": [],
"Barbecue Fruits": [],
"Barbecue Vegetables": [],
"Burgers": [],
"Coleslaw": [],
"Grill Rubs" : [],
},
"Breakfast" : {
"French Toast": [],
"Pancakes": [],
"Waffles": [],
"Breakfast Cereal": [],
"Toast": [],
"Savory Breakfast Dishes": [],
"Pop Tarts" : [],
},
"Care and Use of Cooking Equipment" : {
},
"Cooking Equipment" : {
"Bakeware": [],
"Cooking Knives and Blades": [],
"Cookware": [],
"Cutting Boards": [],
"Kitchen Utensils": [],
"Opening Food Containers" : [],
},
"Cooking for Children" : {
"Baby Recipes": [],
"Toddler Recipes": [],
"Snacks for Kids" : [],
},
"Dining Etiquette" : {
},
"Dining Out" : {
"Eating Out on a Budget" : [],
},
"Drinks" : {
"Coffee": [],
"Tea": [],
"Water Ice and Sports Drinks": [],
"Smoothies Shakes and Milk": [],
"Chocolate and Cocoa Drinks": [],
"Alcoholic Drinks": [],
"Juice": [],
"Sodas and Fizzy Drinks": [],
"Citrus Based Drinks": [],
"Mocktails": [],
"Rose Drinks": [],
"Holiday Drinks" : [],
},
"Food and Grocery Shopping" : {
"Food and Grocery Budgeting" : [],
},
"Food Gifts" : {
},
"Food Preparation" : {
"Meal Planning": [],
"Food Selection and Storage": [],
"Food Preservation Techniques": [],
"Peeling Food": [],
"Food Cutting Techniques": [],
"Cleaning Food": [],
"Basic Cooking Skills" : [],
},
"Food Safety" : {
},
"Herbs and Spices" : {
"Spice Mixes": [],
"Preserving Herbs": [],
"Salt and Pepper": [],
"Garlic": [],
"Pesto": [],
"Edible Flowers" : [],
},
"Holiday Cooking" : {
"Thanksgiving Cooking": [],
"Christmas Cooking": [],
"Easter Cooking": [],
"Valentine's Day Cooking": [],
"New Year Cooking": [],
"Islamic Holiday Cooking": [],
"Jewish Holiday Cooking": [],
"Fourth of July Food and Drink": [],
"Saint Patrick's Day Cooking": [],
"Cranberries": [],
"Stuffings": [],
"Chestnuts" : [],
},
"Nuts and Seeds" : {
"Walnuts": [],
"Chestnuts" : [],
},
"Parties" : {
"Dinner Parties": [],
"Party Snacks": [],
"Theme Parties": [],
"Party Games": [],
"Parties for Children": [],
"Party Planning": [],
"Party Decorations": [],
"Teen Parties": [],
"Buffets": [],
"Cocktail Parties": [],
"Party Etiquette": [],
"Parties for Animal Lovers and Pets": [],
"Party Socializing": [],
"Party Cleaning" : [],
},
"Picnics" : {
},
"Recipe Books and Cookbooks" : {
},
"Recipes" : {
"Desserts and Sweets": [],
"Fruits and Vegetables": [],
"Meat": [],
"Fish and Seafood": [],
"Salads": [],
"Jams Preserves and Condiments": [],
"Pasta and Noodles": [],
"Sandwiches and Quick Meals": [],
"Soups": [],
"Eggs and Dairy": [],
"Rice and Beans": [],
"Cereal Grains": [],
"Chocolate and Candy": [],
"World Cuisines": [],
"Specialty Diet Recipes": [],
"Vegetarian": [],
"Baking": [],
"Slow Cooker Recipes": [],
"Pressure Cooker Recipes" : [],
},
},
"Health" : {
"Alternative Health" : {
"Breathing and Meditation" : [],
"Relaxation Techniques" : [],
"Yoga" : [],
"Home Remedies" : [],
"Hypnosis" : [],
"Reiki" : [],
"Acupuncture" : [],
"Chakras" : [],
"Crystal Healing" : [],
"Essential Oils" : [],
"Homeopathy" : [],
"Reflexology" : [],
},
"Cancer" : {
"Breast Cancer" : [],
"Cervical Cancer" : [],
"Chemotherapy" : [],
"Children and Cancer" : [],
"Colon Cancer" : [],
"Lung Cancer" : [],
"Ovarian Cancer" : [],
"Prostate Cancer" : [],
"Skin Cancer" : [],
"Supporting Cancer Patients" : [],
"Blood Cancers" : [],
"Preventing Cancer" : [],
},
"Cardiovascular System Health" : {
"Angina" : [],
"Artery Health" : [],
"Blood Health" : [],
"Cholesterol and Lipoproteins" : [],
"Eating for Heart Health" : [],
"Fainting (Syncope)" : [],
"Heart Attacks (Myocardial Infarction)" : [],
"Pulse Rate" : [],
"Strokes" : [],
"Vein Health" : [],
"Cardiac Arrest" : [],
"Cardio Exercises" : [],
"Defibrillation" : [],
"Heart Arrhythmia (Irregular Heartbeat)" : [],
"Heart Disease" : [],
"Heart Failure" : [],
},
"Childhood Health" : {
"Childhood Fears and Phobias" : [],
},
"Coping with Illness" : {
"Being a Patient" : [],
"Caregiving" : [],
"Chronic Illness" : [],
"Pain Management" : [],
"Recovery from Illness" : [],
"Sleep Affected by Illness or Pain" : [],
"Talking to Your Doctor" : [],
"Visiting Hospital and Patients" : [],
"End of Life Care" : [],
},
"Diet & Lifestyle" : {
"Vegetarian Health" : [],
"Eating Disorders" : [],
"Nutrition and Lifestyle Eating" : [],
"Food Addictions and Cravings" : [],
"Maintaining Diets" : [],
"Losing Weight" : [],
},
"Digestive System Health" : {
"Foodborne Illnesses (Food Poisoning)" : [],
"Gastrointestinal Tract Health" : [],
"Gallbladder Health" : [],
"Hernias" : [],
"Liver Health" : [],
"Nausea and Vomiting" : [],
"Pancreas Health" : [],
"Tongue Health" : [],
},
"Disability Issues" : {
"Attention and Developmental Disorders" : [],
"Disability Forms Permits and Benefits" : [],
"Blind and Visually Impaired" : [],
"Deaf and Hard of Hearing" : [],
"Autism Spectrum" : [],
"Down Syndrome" : [],
"Dyslexia" : [],
"Mobility Disabilities" : [],
},
"Ear Health" : {
"Ear Infections" : [],
"Ear Pain" : [],
"Hearing Loss" : [],
"Hearing Aids" : [],
"Tinnitus" : [],
"Noise and Health" : [],
"Vestibular System (Sense of Balance)" : [],
"Cleaning Ears" : [],
},
"Emotional Health" : {
"Emotional Conditions" : [],
"Assertiveness & Self Esteem" : [],
"Overcoming Shyness & Insecurities" : [],
"Happiness & Optimism" : [],
"Managing Negative Feelings" : [],
"Stress Anxiety and Crisis Management" : [],
"Personal Development" : [],
"Abuse" : [],
"Addictions" : [],
},
"Endocrine System Health" : {
"Endocrine Disorders" : [],
"Hormones" : [],
"Hormone Replacement Therapy" : [],
"Kidney Health" : [],
"Menopause" : [],
"Pancreas Health" : [],
"Pituitary Gland Health" : [],
"Thyroid Gland Health" : [],
},
"Environmental Health" : {
"Air Quality and Health" : [],
"Avoiding Harmful Personal Care Ingredients" : [],
"Disorders and Illnesses of Unknown Cause" : [],
"Health and Mold Exposure" : [],
"Noise and Health" : [],
"Occupational Diseases" : [],
"Radiological Health" : [],
"Safe Drinking Water" : [],
"Sun Safety" : [],
"Thermoregulation" : [],
"Toxic Chemical Exposure" : [],
},
"Eye Health" : {
"Corneal Health" : [],
"Eye Disorders" : [],
"Eye Health for Older Adults" : [],
"Eye Skin Conditions (Circles and Puffiness)" : [],
"Eye Surgery" : [],
"First Aid for Eyes" : [],
"Vision" : [],
"Eye Exercises" : [],
},
"First Aid and Emergency Health Care" : {
"Allergy Emergencies" : [],
"Asthma Emergencies" : [],
"Baby First Aid" : [],
"Bites and Stings" : [],
"Bleeding and Shock" : [],
"Burns and Scalds" : [],
"Childbirth Emergencies" : [],
"Choking First Aid" : [],
"Diabetic Emergencies" : [],
"Disturbed Behavior Emergency Response" : [],
"Drowning" : [],
"Drug Overdoses" : [],
"Epidemics" : [],
"Fainting (Syncope)" : [],
"Fever Care" : [],
"First Aid for Eyes" : [],
"First Aid for Traffic Accident Injuries" : [],
"First Aid Hygiene" : [],
"First Aid Kits" : [],
"Gastrointestinal Emergencies" : [],