forked from diegohaz/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
2773 lines (2773 loc) · 83.6 KB
/
db.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
{
"categories": [
{
"_id": 1,
"name": "EO HAND SANITIZER",
"description": "Maecenas pulvinar lobortis est. Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum. Proin eu mi.",
"parent": 81,
"picture": {
"url": "http://dummyimage.com/215x320.jpg/dddddd/000000",
"color": "#8c745c"
},
"meta": {
"title": "Diltiazem Hydrochloride",
"description": "Small World Trading Company"
},
"slug": "eo hand sanitizer",
"created": "2016-11-01T16:19:09Z",
"ancestors": [
{
"_id": 47,
"name": "Panache"
},
{
"_id": 87,
"name": "Disopyramide Phosphate"
},
{
"_id": 85,
"name": "Propofol"
}
]
},
{
"_id": 2,
"name": "Carbamazepine",
"description": "Nunc rhoncus dui vel sem. Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus. Pellentesque at nulla.",
"parent": 75,
"picture": {
"url": "http://dummyimage.com/204x320.png/dddddd/000000",
"color": "#86ed7b"
},
"meta": {
"title": "FACE IT 4D PERPECT TWO-WAY CAKE NB21",
"description": "Physicians Total Care, Inc."
},
"slug": "carbamazepine",
"created": "2017-01-31T18:49:32Z",
"ancestors": [
{
"_id": 38,
"name": "EpiPen Jr"
},
{
"_id": 14,
"name": "Testosterone Cypionate"
},
{
"_id": 23,
"name": "POPULUS DELTOIDES POLLEN"
}
]
},
{
"_id": 3,
"name": "Birch",
"description": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
"parent": 11,
"picture": {
"url": "http://dummyimage.com/235x320.png/dddddd/000000",
"color": "#adcbbc"
},
"meta": {
"title": "isosorbide mononitrate",
"description": "Nelco Laboratories, Inc."
},
"slug": "birch",
"created": "2016-09-06T03:04:16Z",
"ancestors": [
{
"_id": 17,
"name": "aspirin"
},
{
"_id": 84,
"name": "Opana"
}
]
},
{
"_id": 4,
"name": "NUTRIXYL",
"description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
"parent": 19,
"picture": {
"url": "http://dummyimage.com/210x320.bmp/5fa2dd/ffffff",
"color": "#90d003"
},
"meta": {
"title": "Soothe Hydration",
"description": "APOLLO HEALTH AND BEAUTY CARE"
},
"slug": "nutrixyl",
"created": "2016-12-05T21:21:23Z",
"ancestors": [
{
"_id": 43,
"name": "Triaminic"
},
{
"_id": 28,
"name": "ABATUSS DMX"
},
{
"_id": 5,
"name": "Muscle Rub"
}
]
},
{
"_id": 5,
"name": "SEROQUEL",
"description": "Nulla nisl. Nunc nisl. Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.",
"parent": 5,
"picture": {
"url": "http://dummyimage.com/224x320.bmp/dddddd/000000",
"color": "#214d08"
},
"meta": {
"title": "Food - Plant Source, Celery Apium graveolens",
"description": "Contract Pharmacy Services-PA"
},
"slug": "seroquel",
"created": "2016-08-15T09:13:39Z",
"ancestors": [
{
"_id": 33,
"name": "Lorcet 10/650"
}
]
},
{
"_id": 6,
"name": "Malathion",
"description": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
"picture": {
"url": "http://dummyimage.com/204x320.bmp/5fa2dd/ffffff",
"color": "#e3a6d2"
},
"meta": {
"title": "Treatment Set TS351004",
"description": "Taro Pharmaceuticals U.S.A., Inc."
},
"slug": "malathion",
"created": "2016-11-13T19:15:56Z",
"ancestors": [
{
"_id": 83,
"name": "Meclizine Hydrochloride"
}
]
},
{
"_id": 7,
"name": "Bio Larch",
"description": "Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat. In congue. Etiam justo.",
"parent": 42,
"picture": {
"url": "http://dummyimage.com/221x320.jpg/5fa2dd/ffffff",
"color": "#9ca035"
},
"meta": {
"title": "Care One Ibuprofen",
"description": "BioActive Nutritional, Inc."
},
"slug": "bio larch",
"created": "2016-02-19T03:55:33Z",
"ancestors": [
{
"_id": 21,
"name": "Midazolam hydrochloride"
},
{
"_id": 92,
"name": "Protriptyline hydrochloride"
}
]
},
{
"_id": 8,
"name": "Rimmel BB Cream Matte 9-IN-1 Skin Perfecting Super Makeup",
"description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh. Quisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.",
"parent": 87,
"picture": {
"url": "http://dummyimage.com/224x320.jpg/ff4444/ffffff",
"color": "#4720fc"
},
"meta": {
"title": "Lemon Quince Allergy Relief",
"description": "Rimmel Inc."
},
"slug": "rimmel bb cream matte 9-in-1 skin perfecting super makeup",
"created": "2016-12-16T00:18:04Z",
"ancestors": [
{
"_id": 29,
"name": "Bicalutamide"
}
]
},
{
"_id": 9,
"name": "Neomycin and Polymyxin B Sulfates and Dexamethasone",
"description": "Curabitur convallis. Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus. Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.",
"parent": 21,
"picture": {
"url": "http://dummyimage.com/212x320.bmp/cc0000/ffffff",
"color": "#09b797"
},
"meta": {
"title": "Erythromycin",
"description": "Falcon Pharmaceuticals, Ltd."
},
"slug": "neomycin and polymyxin b sulfates and dexamethasone",
"created": "2016-10-27T13:36:31Z",
"ancestors": [
{
"_id": 100,
"name": "dimethicone"
},
{
"_id": 72,
"name": "HZ-Chord"
},
{
"_id": 7,
"name": "OXYGEN"
}
]
},
{
"_id": 10,
"name": "SinuFrin Plus",
"description": "In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.",
"picture": {
"url": "http://dummyimage.com/218x320.bmp/ff4444/ffffff",
"color": "#a9dabb"
},
"meta": {
"title": "Theophylline",
"description": "NeilMed Pharmaceuticals, Inc."
},
"slug": "sinufrin plus",
"created": "2016-08-23T06:19:54Z",
"ancestors": [
{
"_id": 90,
"name": "Anastrozole"
},
{
"_id": 92,
"name": "Flecainide Acetate"
},
{
"_id": 39,
"name": "sunmark milk of magnesia"
}
]
},
{
"_id": 11,
"name": "GODDESS GARDEN ORGANICS Sunny Kids NATURAL SUNSCREEN BROAD SPECTRUM SPF 30 WATER RESISTANT",
"description": "Integer ac neque. Duis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.",
"parent": 73,
"picture": {
"url": "http://dummyimage.com/216x320.png/cc0000/ffffff",
"color": "#c649de"
},
"meta": {
"title": "Brussels Sprout",
"description": "Crossing Cultures, LLC dba Goddess Garden"
},
"slug": "goddess garden organics sunny kids natural sunscreen broad spectrum spf 30 water resistant",
"created": "2016-09-29T10:43:24Z",
"ancestors": [
{
"_id": 98,
"name": "Promethazine Hydrochloride"
},
{
"_id": 50,
"name": "OXYGEN"
}
]
},
{
"_id": 12,
"name": "Lorazepam",
"description": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio. Curabitur convallis. Duis consequat dui nec nisi volutpat eleifend.",
"parent": 15,
"picture": {
"url": "http://dummyimage.com/208x320.bmp/ff4444/ffffff",
"color": "#c8e27b"
},
"meta": {
"title": "Sorbet APF",
"description": "Lake Erie Medical & Surgical Supply DBA Quality Care Products LLC"
},
"slug": "lorazepam",
"created": "2016-06-29T11:29:35Z",
"ancestors": [
{
"_id": 7,
"name": "Dr.Jart CC Essence Balm 02 Medium - Deep"
},
{
"_id": 11,
"name": "Terbinex"
},
{
"_id": 60,
"name": "Galantamine Hydrobromide"
}
]
},
{
"_id": 13,
"name": "Tioconazole 1",
"description": "In est risus, auctor sed, tristique in, tempus sit amet, sem. Fusce consequat. Nulla nisl.",
"parent": 90,
"picture": {
"url": "http://dummyimage.com/204x320.png/5fa2dd/ffffff",
"color": "#524baf"
},
"meta": {
"title": "Halibut",
"description": "Walgreen Company"
},
"slug": "tioconazole 1",
"created": "2016-06-13T14:36:30Z",
"ancestors": [
{
"_id": 64,
"name": "Atenolol"
},
{
"_id": 38,
"name": "Etodolac"
},
{
"_id": 67,
"name": "Metformin Hydrochloride Extended Release"
}
]
},
{
"_id": 14,
"name": "RISPERDAL CONSTA",
"description": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem. Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy.",
"parent": 15,
"picture": {
"url": "http://dummyimage.com/207x320.png/5fa2dd/ffffff",
"color": "#970251"
},
"meta": {
"title": "Amiodarone Hydrochloride",
"description": "Janssen Pharmaceuticals, Inc."
},
"slug": "risperdal consta",
"created": "2016-12-18T05:10:37Z",
"ancestors": [
{
"_id": 91,
"name": "benzonatate"
}
]
},
{
"_id": 15,
"name": "Allergy Relief Now Inhaled Allergy Remedy",
"description": "Morbi non quam nec dui luctus rutrum. Nulla tellus. In sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.",
"parent": 5,
"picture": {
"url": "http://dummyimage.com/228x320.jpg/cc0000/ffffff",
"color": "#873a0a"
},
"meta": {
"title": "Carvedilol",
"description": "Homeocare Laboratories"
},
"slug": "allergy relief now inhaled allergy remedy",
"created": "2016-10-31T23:44:10Z",
"ancestors": [
{
"_id": 41,
"name": "Argentum 0.4% Adult"
},
{
"_id": 3,
"name": "Diphenhydramine Hydrochloride"
}
]
},
{
"_id": 16,
"name": "OxyContin",
"description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi. Cras non velit nec nisi vulputate nonummy.",
"parent": 28,
"picture": {
"url": "http://dummyimage.com/200x320.bmp/cc0000/ffffff",
"color": "#7b6674"
},
"meta": {
"title": "Triple Antibiotic",
"description": "Bryant Ranch Prepack"
},
"slug": "oxycontin",
"created": "2016-08-23T23:55:54Z",
"ancestors": [
{
"_id": 6,
"name": "MUCOR PLUMBEUS"
},
{
"_id": 30,
"name": "FIREBUSH KOCHIA POLLEN"
}
]
},
{
"_id": 17,
"name": "MOISTURE RICH FOUNDATION",
"description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst. Maecenas ut massa quis augue luctus tincidunt.",
"parent": 13,
"picture": {
"url": "http://dummyimage.com/205x320.png/ff4444/ffffff",
"color": "#545499"
},
"meta": {
"title": "Ketorocaine LM Kit",
"description": "Bobbi Brown Professional Cosmetics Inc."
},
"slug": "moisture rich foundation",
"created": "2016-11-04T11:27:30Z",
"ancestors": [
{
"_id": 79,
"name": "Captopril"
},
{
"_id": 56,
"name": "Perphenazine"
}
]
},
{
"_id": 18,
"name": "Ampicillin",
"description": "Vestibulum sed magna at nunc commodo placerat. Praesent blandit. Nam nulla.",
"picture": {
"url": "http://dummyimage.com/239x320.bmp/dddddd/000000",
"color": "#659709"
},
"meta": {
"title": "Clamue Healthy Fresh BB Cream Light",
"description": "APP Pharmaceuticals, Inc."
},
"slug": "ampicillin",
"created": "2016-08-24T18:19:08Z",
"ancestors": [
{
"_id": 98,
"name": "Citroma Magnesium Citrate"
},
{
"_id": 9,
"name": "Naproxen Sodium"
},
{
"_id": 61,
"name": "ESIKA Extreme Moisturizing SPF 16"
}
]
},
{
"_id": 19,
"name": "Hydrocodone Bitartrate and Acetaminophen",
"description": "Vivamus vel nulla eget eros elementum pellentesque. Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.",
"parent": 23,
"picture": {
"url": "http://dummyimage.com/218x320.bmp/ff4444/ffffff",
"color": "#377e61"
},
"meta": {
"title": "Rembrandt Deeply White Plus Peroxide Whitening",
"description": "Amneal Pharmaceuticals of New York, LLC"
},
"slug": "hydrocodone bitartrate and acetaminophen",
"created": "2016-07-21T05:04:14Z",
"ancestors": [
{
"_id": 34,
"name": "Sonata"
},
{
"_id": 84,
"name": "Complete Allergy"
},
{
"_id": 75,
"name": "Rough Pigweed"
}
]
},
{
"_id": 20,
"name": "Adult Low Strength Aspirin",
"description": "Maecenas pulvinar lobortis est. Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
"parent": 65,
"picture": {
"url": "http://dummyimage.com/204x320.bmp/ff4444/ffffff",
"color": "#bf8147"
},
"meta": {
"title": "Muscle and Joint Pain Relief",
"description": "WOONSOCKET PRESCRIPTION CENTER,INCORPORATED"
},
"slug": "adult low strength aspirin",
"created": "2016-09-03T15:39:03Z",
"ancestors": [
{
"_id": 56,
"name": "care one miconazole 1"
},
{
"_id": 58,
"name": "KETOROLAC TROMETHAMINE"
}
]
},
{
"_id": 21,
"name": "Diazepam",
"description": "Morbi quis tortor id nulla ultrices aliquet. Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui. Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.",
"parent": 97,
"picture": {
"url": "http://dummyimage.com/237x320.jpg/ff4444/ffffff",
"color": "#16887e"
},
"meta": {
"title": "Desipramine Hydrochloride",
"description": "PD-Rx Pharmaceuticals, Inc."
},
"slug": "diazepam",
"created": "2016-05-08T16:15:02Z",
"ancestors": [
{
"_id": 91,
"name": "Fenofibrate"
},
{
"_id": 92,
"name": "LBEL UV DEFENSE 365"
}
]
},
{
"_id": 22,
"name": "Colgate",
"description": "Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est. Phasellus sit amet erat.",
"parent": 83,
"picture": {
"url": "http://dummyimage.com/226x320.jpg/dddddd/000000",
"color": "#b8e66b"
},
"meta": {
"title": "Selsun Blue Itchy Dry Scalp",
"description": "Mission Hills S.A de C.V"
},
"slug": "colgate",
"created": "2017-01-12T03:03:32Z",
"ancestors": [
{
"_id": 13,
"name": "Alendronate Sodium"
}
]
},
{
"_id": 23,
"name": "Ibuprofen",
"description": "Phasellus in felis. Donec semper sapien a libero. Nam dui. Proin leo odio, porttitor id, consequat in, consequat ut, nulla. Sed accumsan felis.",
"parent": 10,
"picture": {
"url": "http://dummyimage.com/231x320.jpg/ff4444/ffffff",
"color": "#ce7ecd"
},
"meta": {
"title": "ProQuad",
"description": "HHS/Program Support Center/Supply Service Center"
},
"slug": "ibuprofen",
"created": "2016-04-27T01:17:20Z",
"ancestors": [
{
"_id": 20,
"name": "Dextroamphetamine Saccharate and Amphetamine Aspartate and Dextroamphetamine Sulfate and Amphetamine Sulfate"
},
{
"_id": 43,
"name": "Alendronate Sodium"
},
{
"_id": 100,
"name": "Neutrogena Intensified Day Moisture"
}
]
},
{
"_id": 24,
"name": "Hydrocodone Bitartrate and Acetaminophen",
"description": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus. Suspendisse potenti. In eleifend quam a odio.",
"parent": 23,
"picture": {
"url": "http://dummyimage.com/215x320.png/dddddd/000000",
"color": "#05d596"
},
"meta": {
"title": "Desloratadine",
"description": "PD-Rx Pharmaceuticals, Inc."
},
"slug": "hydrocodone bitartrate and acetaminophen",
"created": "2017-01-05T13:00:46Z",
"ancestors": [
{
"_id": 30,
"name": "hemorrhoidal"
}
]
},
{
"_id": 25,
"name": "SOLE SERUM",
"description": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus. Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.",
"parent": 37,
"picture": {
"url": "http://dummyimage.com/231x320.bmp/cc0000/ffffff",
"color": "#3167d2"
},
"meta": {
"title": "Gentamicin Sulfate in Sodium Chloride",
"description": "THE COMFORT LAB LLC"
},
"slug": "sole serum",
"created": "2016-05-07T14:25:02Z",
"ancestors": [
{
"_id": 57,
"name": "Glyburide"
},
{
"_id": 22,
"name": "Tribenzor"
}
]
},
{
"_id": 26,
"name": "Fluoxetine",
"description": "Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus. Curabitur at ipsum ac tellus semper interdum.",
"parent": 44,
"picture": {
"url": "http://dummyimage.com/232x320.png/5fa2dd/ffffff",
"color": "#c732a8"
},
"meta": {
"title": "Ranitidine Hydrochloride",
"description": "Rebel Distributors Corp"
},
"slug": "fluoxetine",
"created": "2016-05-15T14:06:10Z",
"ancestors": [
{
"_id": 73,
"name": "Acetaminophen"
}
]
},
{
"_id": 27,
"name": "dg health all day allergy",
"description": "Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum. Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.",
"parent": 2,
"picture": {
"url": "http://dummyimage.com/208x320.jpg/dddddd/000000",
"color": "#26b513"
},
"meta": {
"title": "Advanced Arnica",
"description": "Dolgencorp Inc"
},
"slug": "dg health all day allergy",
"created": "2016-05-08T22:51:56Z",
"ancestors": [
{
"_id": 85,
"name": "Mirtazapine"
},
{
"_id": 13,
"name": "Migranade"
}
]
},
{
"_id": 28,
"name": "OLUX",
"description": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem. Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit. Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.",
"parent": 79,
"picture": {
"url": "http://dummyimage.com/200x320.png/ff4444/ffffff",
"color": "#9dc1be"
},
"meta": {
"title": "EXALGO",
"description": "Prestium Pharma, Inc."
},
"slug": "olux",
"created": "2016-04-27T10:29:36Z",
"ancestors": [
{
"_id": 4,
"name": "Scabies Control"
}
]
},
{
"_id": 29,
"name": "Acne/Pimple Cleanse",
"description": "Duis mattis egestas metus. Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.",
"parent": 14,
"picture": {
"url": "http://dummyimage.com/239x320.bmp/dddddd/000000",
"color": "#df3094"
},
"meta": {
"title": "Candida Alb",
"description": "Forces of Nature"
},
"slug": "acne/pimple cleanse",
"created": "2016-06-12T01:41:53Z",
"ancestors": [
{
"_id": 34,
"name": "FERMENTED SOY MILK WRINKLE CARE SLEEPING MASK"
},
{
"_id": 24,
"name": "Medium Cuts and Scratches"
},
{
"_id": 7,
"name": "Loratadine and Pseudoephedrine Sulfate"
}
]
},
{
"_id": 30,
"name": "Cockroach American",
"description": "Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh. Quisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
"parent": 51,
"picture": {
"url": "http://dummyimage.com/234x320.png/5fa2dd/ffffff",
"color": "#e832f0"
},
"meta": {
"title": "allergy relief",
"description": "Nelco Laboratories, Inc."
},
"slug": "cockroach american",
"created": "2016-05-05T09:20:51Z",
"ancestors": [
{
"_id": 23,
"name": "Entecavir"
}
]
},
{
"_id": 31,
"name": "Sulfur 30 Special Order",
"description": "Duis at velit eu est congue elementum. In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
"parent": 56,
"picture": {
"url": "http://dummyimage.com/239x320.bmp/ff4444/ffffff",
"color": "#c39884"
},
"meta": {
"title": "Health Smart Creamy Petroleum",
"description": "Uriel Pharmacy Inc."
},
"slug": "sulfur 30 special order",
"created": "2016-07-10T01:08:54Z",
"ancestors": [
{
"_id": 1,
"name": "Rx Act Antacid"
},
{
"_id": 89,
"name": "Your Logo Here Bandage Aid"
},
{
"_id": 45,
"name": "Delsym"
}
]
},
{
"_id": 32,
"name": "doxazosin",
"description": "Quisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros. Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.",
"parent": 82,
"picture": {
"url": "http://dummyimage.com/206x320.bmp/dddddd/000000",
"color": "#54c627"
},
"meta": {
"title": "Anti-Diarrheal",
"description": "Mylan Institutional Inc."
},
"slug": "doxazosin",
"created": "2016-11-19T10:49:51Z",
"ancestors": [
{
"_id": 76,
"name": "Pain Relief Maximum Strength"
}
]
},
{
"_id": 33,
"name": "Rice Grain",
"description": "Mauris lacinia sapien quis libero. Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum.",
"parent": 52,
"picture": {
"url": "http://dummyimage.com/202x320.bmp/dddddd/000000",
"color": "#975efa"
},
"meta": {
"title": "Geodon",
"description": "Nelco Laboratories, Inc."
},
"slug": "rice grain",
"created": "2016-10-10T13:21:02Z",
"ancestors": [
{
"_id": 94,
"name": "No7 Protect and Perfect Skincare System Day Sunscreen SPF 15"
}
]
},
{
"_id": 34,
"name": "Exchange Select Allergy Relief",
"description": "Curabitur convallis. Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
"parent": 48,
"picture": {
"url": "http://dummyimage.com/212x320.bmp/dddddd/000000",
"color": "#070468"
},
"meta": {
"title": "ACTIQ",
"description": "Army & Air Force Exchange Service"
},
"slug": "exchange select allergy relief",
"created": "2016-05-19T03:21:32Z",
"ancestors": [
{
"_id": 70,
"name": "MEIJER LUBRICATING EYE DROPS"
}
]
},
{
"_id": 35,
"name": "Red Mulberry",
"description": "In eleifend quam a odio. In hac habitasse platea dictumst. Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.",
"picture": {
"url": "http://dummyimage.com/232x320.jpg/dddddd/000000",
"color": "#772718"
},
"meta": {
"title": "Doxycycline Hyclate",
"description": "Nelco Laboratories, Inc."
},
"slug": "red mulberry",
"created": "2016-04-03T22:40:21Z",
"ancestors": [
{
"_id": 63,
"name": "Robitussin Medi-Soothers Cough DM"
},
{
"_id": 100,
"name": "Montelukast Sodium"
}
]
},
{
"_id": 36,
"name": "DDF",
"description": "In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin interdum mauris non ligula pellentesque ultrices.",
"parent": 60,
"picture": {
"url": "http://dummyimage.com/213x320.bmp/5fa2dd/ffffff",
"color": "#dfcf2b"
},
"meta": {
"title": "Chestal Childrens Cough and Cold",
"description": "Procter & Gamble Manufacturing Co."
},
"slug": "ddf",
"created": "2016-12-28T15:09:54Z",
"ancestors": [
{
"_id": 65,
"name": "Amitriptyline Hydrochloride"
},
{
"_id": 24,
"name": "good sense migraine formula"
}
]
},
{
"_id": 37,
"name": "Alendronate Sodium",
"description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis. Sed ante. Vivamus tortor.",
"picture": {
"url": "http://dummyimage.com/232x320.png/5fa2dd/ffffff",
"color": "#a0855e"
},
"meta": {
"title": "Gas Relief",
"description": "Physicians Total Care, Inc."
},
"slug": "alendronate sodium",
"created": "2016-08-22T18:20:16Z",
"ancestors": [
{
"_id": 56,
"name": "Spatheraphy"
},
{
"_id": 80,
"name": "PREPOPIK"
},
{
"_id": 64,
"name": "Tretin-X"
}
]
},
{
"_id": 38,
"name": "Kicking and Screaming",
"description": "Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl. Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.",
"parent": 15,
"picture": {
"url": "http://dummyimage.com/229x320.png/ff4444/ffffff",
"color": "#ea6e48"
},
"meta": {
"title": "Risperidone",
"description": "Home Sweet Homeopathics"
},
"slug": "kicking and screaming",
"created": "2016-07-22T22:47:19Z",
"ancestors": [
{
"_id": 1,
"name": "LACHESIS MUTUS"
}
]
},
{
"_id": 39,
"name": "CYZONE",
"description": "Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus. Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.",
"parent": 19,
"picture": {
"url": "http://dummyimage.com/239x320.bmp/dddddd/000000",
"color": "#5eb789"
},
"meta": {
"title": "Clarithromycin",
"description": "Ventura Corporation LTD."
},
"slug": "cyzone",
"created": "2016-03-24T05:38:11Z",