forked from learn-co-curriculum/phase-1-monsters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonsters.json
6010 lines (6010 loc) · 311 KB
/
monsters.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
{
"monsters": [
{
"name": "Chronos",
"age": 4005.302453418598,
"description": "Effulgence eldritch shunned foetid. Ululate gibbering tenebrous foetid iridescence daemoniac. Stench nameless gambrel. Amorphous furtive iridescence noisome. Foetid mortal nameless.",
"id": 1
},
{
"name": "Tartarus",
"age": 1874.4913565609456,
"description": "Cyclopean swarthy amorphous singular accursed furtive non-euclidean stygian. Swarthy gibbering charnel eldritch daemoniac gibbous. Cyclopean lurk hideous tentacles squamous immemorial tenebrous mortal. Madness tentacles furtive mortal foetid decadent. Foetid immemorial comprehension.",
"id": 2
},
{
"name": "Hemera",
"age": 4094.8375978925988,
"description": "Dank immemorial abnormal gambrel. Cat lurk unutterable. Abnormal tenebrous ululate. Nameless swarthy manuscript eldritch indescribable accursed antediluvian decadent.",
"id": 3
},
{
"name": "Tartarus",
"age": 2364.163894640274,
"description": "Fungus blasphemous immemorial indescribable singular cat foetid. Cyclopean loathsome swarthy tenebrous madness nameless abnormal fungus. Daemoniac fungus fainted.",
"id": 4
},
{
"name": "Pontus",
"age": 4838.903020812994,
"description": "Mortal madness foetid. Foetid hideous antediluvian non-euclidean comprehension nameless lurk. Squamous shunned accursed amorphous.",
"id": 5
},
{
"name": "Nemesis",
"age": 309.71166432846627,
"description": "Mortal accursed unnamable indescribable antiquarian dank antediluvian. Cat dank unmentionable foetid antediluvian furtive. Nameless loathsome stygian tentacles abnormal antediluvian. Antiquarian iridescence daemoniac immemorial fungus furtive effulgence. Noisome ululate fungus hideous.",
"id": 6
},
{
"name": "Phanes",
"age": 61.3504188391221,
"description": "Gibbering accursed comprehension manuscript furtive madness cyclopean. Cyclopean ululate effulgence singular dank noisome unnamable. Furtive mortal manuscript indescribable foetid singular charnel stygian.",
"id": 7
},
{
"name": "Nesoi",
"age": 4885.771945693918,
"description": "Unnamable non-euclidean eldritch gibbering iridescence amorphous. Tenebrous antiquarian amorphous abnormal unnamable manuscript. Abnormal amorphous fungus loathsome stench. Effulgence tenebrous amorphous unmentionable.",
"id": 8
},
{
"name": "Gaia",
"age": 4892.092518802611,
"description": "Effulgence antediluvian tentacles abnormal. Fungus cyclopean unutterable unmentionable furtive nameless tenebrous immemorial. Furtive fungus fainted. Fainted gibbering swarthy amorphous madness antediluvian cyclopean accursed. Cyclopean indescribable accursed gambrel tentacles noisome.",
"id": 9
},
{
"name": "Hypnos",
"age": 3856.8591126857073,
"description": "Mortal unutterable daemoniac tenebrous dank iridescence madness. Manuscript stench spectral singular blasphemous decadent. Blasphemous immemorial ululate eldritch iridescence.",
"id": 10
},
{
"name": "Nyx",
"age": 387.52969067096143,
"description": "Foetid iridescence decadent antediluvian dank singular gibbering effulgence. Noisome immemorial fungus comprehension gibbous indescribable effulgence. Indescribable stench lurk gibbering manuscript spectral comprehension. Unutterable blasphemous comprehension manuscript cat.",
"id": 11
},
{
"name": "Uranus",
"age": 4059.5196233932415,
"description": "Effulgence accursed decadent. Antiquarian nameless accursed. Daemoniac blasphemous non-euclidean cat. Iridescence eldritch hideous non-euclidean.",
"id": 12
},
{
"name": "Thanatos",
"age": 4929.0138208295875,
"description": "Gambrel decadent ululate charnel indescribable cyclopean. Non-euclidean unutterable effulgence stygian madness antediluvian loathsome unmentionable. Madness antediluvian blasphemous fungus lurk gibbering unmentionable. Unutterable antiquarian non-euclidean accursed singular cat.",
"id": 13
},
{
"name": "Ourea",
"age": 3091.241149177922,
"description": "Immemorial daemoniac gibbering gibbous noisome fainted swarthy unmentionable. Accursed cyclopean lurk manuscript daemoniac swarthy. Eldritch amorphous indescribable iridescence antiquarian fungus. Lurk tenebrous iridescence cat. Shunned furtive decadent.",
"id": 14
},
{
"name": "Aion",
"age": 950.7511237463813,
"description": "Manuscript abnormal unmentionable accursed spectral blasphemous lurk fainted. Abnormal fainted stench cyclopean. Tentacles fainted unmentionable unnamable. Charnel spectral singular fungus. Unutterable hideous decadent abnormal madness.",
"id": 15
},
{
"name": "Nesoi",
"age": 4427.2687813111,
"description": "Eldritch madness antiquarian antediluvian squamous manuscript cyclopean. Mortal immemorial indescribable comprehension. Fungus non-euclidean unmentionable manuscript iridescence.",
"id": 16
},
{
"name": "Eros",
"age": 1506.615541567781,
"description": "Furtive daemoniac squamous decadent cyclopean manuscript fainted. Gibbering ululate lurk blasphemous gibbous furtive immemorial. Mortal fainted manuscript comprehension unnamable decadent. Stygian tentacles immemorial loathsome singular blasphemous noisome fungus.",
"id": 17
},
{
"name": "Pontus",
"age": 3412.686845928414,
"description": "Gibbous mortal eldritch tentacles accursed. Antiquarian eldritch effulgence ululate singular daemoniac amorphous. Madness charnel stench gibbering gibbous swarthy. Noisome gibbous madness amorphous mortal accursed. Accursed madness eldritch daemoniac loathsome unnamable.",
"id": 18
},
{
"name": "Ourea",
"age": 4439.046693657295,
"description": "Eldritch non-euclidean stench gibbous swarthy amorphous. Antediluvian cat tentacles. Loathsome eldritch antiquarian unnamable decadent.",
"id": 19
},
{
"name": "Ananke",
"age": 1327.8013348870193,
"description": "Spectral furtive blasphemous mortal unmentionable ululate non-euclidean gibbering. Fainted antiquarian accursed squamous comprehension antediluvian stygian madness. Immemorial madness foetid.",
"id": 20
},
{
"name": "Hypnos",
"age": 3097.363828009666,
"description": "Amorphous cyclopean gibbous gibbering. Lurk immemorial charnel eldritch amorphous fungus manuscript. Madness unnamable shunned. Blasphemous charnel singular hideous foetid unmentionable.",
"id": 21
},
{
"name": "Thanatos",
"age": 3574.8173165057638,
"description": "Cyclopean madness abnormal accursed indescribable. Squamous non-euclidean loathsome unnamable fungus dank gibbous swarthy. Immemorial squamous decadent. Swarthy noisome gambrel ululate unutterable unnamable antediluvian. Dank effulgence indescribable cat lurk.",
"id": 22
},
{
"name": "Chronos",
"age": 4958.377880658986,
"description": "Squamous tentacles loathsome stench unnamable non-euclidean mortal. Hideous daemoniac fungus antiquarian madness decadent shunned nameless. Tentacles cat furtive spectral. Foetid eldritch stench fainted indescribable.",
"id": 23
},
{
"name": "Pontus",
"age": 3833.1939633062043,
"description": "Mortal gambrel cyclopean manuscript. Effulgence tenebrous manuscript eldritch nameless antiquarian madness. Gibbering comprehension swarthy nameless unutterable. Swarthy non-euclidean charnel spectral gibbering hideous manuscript abnormal.",
"id": 24
},
{
"name": "Thanatos",
"age": 3396.5961759060247,
"description": "Furtive stygian daemoniac amorphous unnamable. Manuscript singular indescribable. Amorphous indescribable furtive.",
"id": 25
},
{
"name": "Nesoi",
"age": 286.71061538912977,
"description": "Squamous gibbous mortal effulgence cat daemoniac stygian. Unutterable noisome decadent. Unmentionable indescribable dank squamous swarthy eldritch. Fainted antiquarian mortal foetid. Shunned mortal gibbering immemorial antediluvian swarthy.",
"id": 26
},
{
"name": "Gaia",
"age": 2795.71339638976,
"description": "Mortal eldritch daemoniac gibbous unutterable fainted manuscript. Antiquarian eldritch loathsome antediluvian mortal abnormal. Madness cat fainted stench dank antediluvian. Manuscript foetid lurk blasphemous singular.",
"id": 27
},
{
"name": "Hypnos",
"age": 3164.710246438114,
"description": "Fungus indescribable immemorial gibbous gambrel unutterable spectral. Immemorial charnel effulgence squamous foetid hideous accursed non-euclidean. Indescribable shunned furtive blasphemous antediluvian. Charnel antiquarian singular loathsome.",
"id": 28
},
{
"name": "Nesoi",
"age": 1644.650735358931,
"description": "Indescribable shunned cyclopean effulgence nameless abnormal. Nameless indescribable dank. Swarthy manuscript comprehension shunned.",
"id": 29
},
{
"name": "Aion",
"age": 2966.02143845972,
"description": "Cyclopean foetid antiquarian charnel. Tentacles gibbering immemorial. Shunned loathsome unnamable hideous spectral cat nameless.",
"id": 30
},
{
"name": "Hypnos",
"age": 3852.312449030129,
"description": "Lurk immemorial tenebrous. Squamous daemoniac manuscript foetid unmentionable. Spectral daemoniac stygian comprehension swarthy unnamable charnel cyclopean. Unmentionable gibbous furtive eldritch mortal.",
"id": 31
},
{
"name": "Eros",
"age": 1766.9688975613215,
"description": "Noisome cyclopean foetid stygian ululate manuscript unmentionable. Antediluvian cat gibbous accursed foetid. Effulgence unnamable nameless foetid singular mortal ululate gambrel. Loathsome dank nameless. Unnamable gibbous fungus.",
"id": 32
},
{
"name": "Tartarus",
"age": 2492.5832626577226,
"description": "Swarthy tentacles manuscript cat abnormal gibbering eldritch. Antiquarian daemoniac foetid amorphous. Madness immemorial effulgence gambrel noisome. Antiquarian immemorial non-euclidean decadent furtive madness loathsome amorphous.",
"id": 33
},
{
"name": "Tartarus",
"age": 4785.7137972758655,
"description": "Mortal lurk charnel. Comprehension gibbous antiquarian ululate decadent stench. Tentacles fainted squamous madness cyclopean.",
"id": 34
},
{
"name": "Nyx",
"age": 2701.621806505081,
"description": "Tentacles fainted stygian cyclopean nameless gibbous. Antediluvian tenebrous fainted dank mortal. Gibbous stench cyclopean immemorial.",
"id": 35
},
{
"name": "Nyx",
"age": 2562.999648230398,
"description": "Cyclopean noisome foetid. Charnel antediluvian gibbous tentacles amorphous tenebrous. Indescribable unmentionable swarthy.",
"id": 36
},
{
"name": "Chronos",
"age": 11.289194308180605,
"description": "Gibbous lurk cyclopean dank swarthy. Accursed squamous antediluvian fungus unmentionable spectral iridescence immemorial. Manuscript gibbous tentacles hideous nameless. Antiquarian squamous foetid unnamable immemorial. Shunned dank antiquarian madness stench.",
"id": 37
},
{
"name": "Nemesis",
"age": 4110.993735781614,
"description": "Foetid blasphemous spectral. Hideous stench loathsome unnamable fainted ululate singular gambrel. Immemorial dank hideous noisome. Noisome furtive decadent singular eldritch.",
"id": 38
},
{
"name": "Uranus",
"age": 3126.8985443561614,
"description": "Charnel iridescence gibbous mortal. Accursed comprehension eldritch tentacles cyclopean nameless daemoniac hideous. Unnamable tenebrous eldritch hideous fainted furtive spectral gambrel. Nameless antediluvian daemoniac madness gibbous hideous.",
"id": 39
},
{
"name": "Chaos",
"age": 3659.058118181269,
"description": "Tenebrous nameless mortal iridescence antiquarian gibbous. Cat comprehension singular gambrel unmentionable. Unutterable dank antiquarian non-euclidean hideous daemoniac.",
"id": 40
},
{
"name": "Nesoi",
"age": 3907.636705532479,
"description": "Indescribable antiquarian madness iridescence antediluvian. Gibbering madness loathsome. Fainted antiquarian cyclopean charnel spectral gibbous singular decadent. Fainted unnamable immemorial antiquarian shunned daemoniac gambrel. Spectral gambrel iridescence noisome accursed foetid indescribable abnormal.",
"id": 41
},
{
"name": "Nesoi",
"age": 2851.5483103737456,
"description": "Spectral stench fungus. Amorphous nameless dank stygian furtive manuscript blasphemous loathsome. Loathsome swarthy iridescence tenebrous accursed furtive shunned amorphous.",
"id": 42
},
{
"name": "Nesoi",
"age": 1997.5984603789811,
"description": "Effulgence charnel unutterable cyclopean eldritch unnamable. Comprehension fainted furtive unnamable loathsome non-euclidean charnel gibbous. Furtive tenebrous decadent. Dank unmentionable daemoniac manuscript mortal comprehension non-euclidean. Loathsome blasphemous cyclopean shunned comprehension furtive.",
"id": 43
},
{
"name": "Aether",
"age": 776.3223044671748,
"description": "Amorphous cyclopean non-euclidean squamous antiquarian gibbering manuscript. Tentacles lurk decadent unnamable blasphemous gibbous charnel. Immemorial gambrel stench comprehension nameless loathsome non-euclidean accursed.",
"id": 44
},
{
"name": "Nyx",
"age": 43.67124546085692,
"description": "Spectral indescribable stygian eldritch ululate non-euclidean cat shunned. Unutterable gibbous antiquarian fainted unnamable stygian amorphous. Tentacles loathsome hideous. Dank loathsome daemoniac shunned abnormal noisome. Spectral daemoniac singular amorphous furtive comprehension unmentionable.",
"id": 45
},
{
"name": "Chronos",
"age": 3398.557556339244,
"description": "Fungus singular furtive swarthy daemoniac tentacles antediluvian ululate. Abnormal stench daemoniac indescribable gibbous singular madness antediluvian. Antiquarian unmentionable mortal foetid cat.",
"id": 46
},
{
"name": "Nyx",
"age": 3243.8624961644255,
"description": "Noisome singular stygian. Antiquarian madness dank gibbering lurk. Fungus madness stench.",
"id": 47
},
{
"name": "Thalassa",
"age": 3971.558381359356,
"description": "Shunned indescribable spectral. Unutterable tenebrous non-euclidean unmentionable antiquarian hideous furtive. Loathsome singular stench dank. Manuscript foetid spectral blasphemous. Ululate shunned gambrel blasphemous lurk gibbering.",
"id": 48
},
{
"name": "Uranus",
"age": 1803.0371379961537,
"description": "Comprehension iridescence spectral non-euclidean accursed stench daemoniac blasphemous. Daemoniac stygian cat cyclopean antiquarian decadent comprehension ululate. Spectral noisome swarthy blasphemous. Daemoniac accursed ululate spectral mortal non-euclidean.",
"id": 49
},
{
"name": "Pontus",
"age": 2064.006256002994,
"description": "Decadent lurk nameless eldritch charnel mortal. Dank hideous unnamable non-euclidean nameless fainted loathsome. Iridescence fungus daemoniac charnel manuscript spectral unutterable.",
"id": 50
},
{
"name": "Uranus",
"age": 3972.645796857134,
"description": "Blasphemous tenebrous unutterable fungus furtive. Mortal foetid daemoniac fainted stench ululate. Singular immemorial nameless cyclopean. Unnamable foetid gambrel. Blasphemous non-euclidean gambrel abnormal loathsome daemoniac stygian.",
"id": 51
},
{
"name": "Nyx",
"age": 4305.107616902836,
"description": "Unmentionable stygian charnel gibbering abnormal eldritch singular spectral. Ululate noisome spectral nameless gibbous. Loathsome nameless cat stench tentacles iridescence unmentionable non-euclidean. Tenebrous cat noisome manuscript foetid abnormal antediluvian.",
"id": 52
},
{
"name": "Chaos",
"age": 3878.75530066085,
"description": "Swarthy gibbering immemorial iridescence gambrel. Gibbous comprehension abnormal ululate. Abnormal stench manuscript shunned unutterable. Squamous accursed ululate.",
"id": 53
},
{
"name": "Nesoi",
"age": 3181.777197894293,
"description": "Iridescence gibbous accursed non-euclidean swarthy ululate decadent. Stench mortal blasphemous nameless. Stygian spectral abnormal blasphemous effulgence.",
"id": 54
},
{
"name": "Nesoi",
"age": 1536.5242547227342,
"description": "Gibbous squamous accursed amorphous non-euclidean blasphemous nameless. Foetid iridescence antiquarian stygian gibbering cat ululate unutterable. Abnormal lurk singular. Daemoniac gambrel noisome eldritch. Shunned foetid abnormal noisome spectral comprehension eldritch stygian.",
"id": 55
},
{
"name": "Pontus",
"age": 4031.1104461418636,
"description": "Decadent comprehension eldritch immemorial antediluvian lurk gambrel tentacles. Stench unutterable squamous. Daemoniac madness lurk antediluvian dank non-euclidean. Dank gibbous squamous manuscript decadent cat abnormal spectral. Nameless dank lurk loathsome cyclopean antiquarian amorphous tenebrous.",
"id": 56
},
{
"name": "Tartarus",
"age": 3611.9556187627145,
"description": "Mortal dank daemoniac swarthy madness fainted. Stygian cat daemoniac gibbering. Non-euclidean loathsome blasphemous stygian. Decadent daemoniac effulgence antiquarian lurk tentacles dank gibbering.",
"id": 57
},
{
"name": "Gaia",
"age": 2095.209067227177,
"description": "Gibbering unmentionable accursed dank madness tenebrous non-euclidean. Stench indescribable gambrel unnamable effulgence abnormal. Accursed charnel spectral antiquarian comprehension abnormal swarthy lurk. Non-euclidean decadent swarthy. Mortal ululate eldritch.",
"id": 58
},
{
"name": "Tartarus",
"age": 3574.4412864683045,
"description": "Shunned foetid effulgence amorphous stygian spectral. Stench immemorial gibbous. Eldritch indescribable unmentionable nameless.",
"id": 59
},
{
"name": "Erebus",
"age": 735.9212742762215,
"description": "Daemoniac antediluvian dank gambrel. Unmentionable amorphous stench madness spectral loathsome daemoniac. Cyclopean immemorial loathsome noisome decadent. Eldritch stygian indescribable charnel abnormal.",
"id": 60
},
{
"name": "Hemera",
"age": 3363.045999829255,
"description": "Manuscript stench loathsome shunned madness foetid. Amorphous effulgence eldritch mortal charnel. Dank squamous eldritch loathsome comprehension hideous fungus. Tentacles cyclopean blasphemous comprehension.",
"id": 61
},
{
"name": "Tartarus",
"age": 1588.617401579991,
"description": "Dank spectral singular. Iridescence lurk antiquarian. Non-euclidean comprehension cyclopean nameless. Decadent dank non-euclidean loathsome madness effulgence ululate. Effulgence swarthy mortal singular.",
"id": 62
},
{
"name": "Erebus",
"age": 4450.65499996163,
"description": "Unnamable gambrel effulgence. Cat furtive fainted ululate blasphemous. Iridescence fainted spectral foetid gambrel manuscript.",
"id": 63
},
{
"name": "Eros",
"age": 2944.2054373308433,
"description": "Immemorial effulgence non-euclidean cyclopean. Spectral swarthy shunned antiquarian stygian unnamable tenebrous immemorial. Manuscript eldritch stench dank noisome charnel nameless lurk.",
"id": 64
},
{
"name": "Nesoi",
"age": 2492.321822534445,
"description": "Unmentionable swarthy abnormal lurk fainted. Charnel daemoniac swarthy squamous stygian unmentionable. Eldritch stench unnamable.",
"id": 65
},
{
"name": "Thalassa",
"age": 1714.8707545206305,
"description": "Gambrel fainted eldritch. Foetid cyclopean fainted. Eldritch abnormal unnamable spectral madness accursed gambrel.",
"id": 66
},
{
"name": "Pontus",
"age": 2452.51070250453,
"description": "Charnel antediluvian decadent mortal immemorial fungus. Eldritch spectral gambrel indescribable hideous tenebrous. Fungus swarthy daemoniac eldritch blasphemous gibbous.",
"id": 67
},
{
"name": "Nyx",
"age": 951.1782846831879,
"description": "Ululate fainted hideous daemoniac gibbering nameless. Stench unmentionable antediluvian lurk foetid shunned madness swarthy. Stench stygian dank gambrel manuscript. Eldritch dank gambrel immemorial squamous madness. Tentacles comprehension decadent antediluvian manuscript singular swarthy.",
"id": 68
},
{
"name": "Phanes",
"age": 988.0910242187032,
"description": "Dank shunned tenebrous blasphemous cyclopean gibbering hideous stygian. Unnamable noisome cyclopean. Antediluvian cyclopean singular decadent cat. Furtive eldritch dank unmentionable daemoniac tentacles swarthy. Fainted non-euclidean ululate comprehension gambrel gibbering.",
"id": 69
},
{
"name": "Aether",
"age": 2826.90993170009,
"description": "Singular shunned nameless manuscript. Gambrel effulgence antediluvian dank tentacles. Nameless singular tentacles iridescence madness ululate unnamable abnormal. Decadent squamous comprehension charnel immemorial abnormal cyclopean. Cat spectral effulgence manuscript lurk dank unmentionable.",
"id": 70
},
{
"name": "Phanes",
"age": 2769.9176221967764,
"description": "Effulgence immemorial gibbous tenebrous antiquarian. Spectral mortal antiquarian loathsome. Foetid eldritch lurk hideous nameless accursed unmentionable tentacles. Fungus abnormal swarthy.",
"id": 71
},
{
"name": "Gaia",
"age": 1966.9008406050268,
"description": "Amorphous non-euclidean unutterable unmentionable tenebrous iridescence hideous noisome. Ululate eldritch lurk dank fungus cyclopean mortal unnamable. Gibbous effulgence eldritch. Squamous unutterable indescribable daemoniac. Abnormal spectral stench antiquarian eldritch swarthy gambrel.",
"id": 72
},
{
"name": "Thanatos",
"age": 587.6410975004319,
"description": "Mortal foetid non-euclidean. Amorphous cat spectral swarthy squamous dank. Non-euclidean effulgence ululate squamous. Ululate cyclopean dank indescribable lurk comprehension mortal fungus.",
"id": 73
},
{
"name": "Pontus",
"age": 2601.300444142924,
"description": "Accursed immemorial indescribable unnamable. Foetid gibbous loathsome ululate dank singular. Decadent tenebrous eldritch immemorial. Mortal comprehension fainted accursed foetid lurk cat. Cat loathsome tenebrous.",
"id": 74
},
{
"name": "Ananke",
"age": 3252.372857751386,
"description": "Noisome accursed non-euclidean swarthy. Non-euclidean ululate unmentionable noisome comprehension fungus cat antediluvian. Squamous stygian eldritch daemoniac.",
"id": 75
},
{
"name": "Tartarus",
"age": 4851.009211568719,
"description": "Gibbous tenebrous tentacles decadent iridescence gibbering unnamable. Lurk decadent stygian loathsome gibbous iridescence daemoniac antediluvian. Immemorial indescribable non-euclidean squamous eldritch decadent fainted unmentionable.",
"id": 76
},
{
"name": "Eros",
"age": 176.86521101633167,
"description": "Spectral tentacles foetid fainted amorphous blasphemous singular ululate. Noisome shunned abnormal unnamable comprehension madness cat. Cyclopean noisome immemorial blasphemous. Fungus eldritch immemorial stench.",
"id": 77
},
{
"name": "Ananke",
"age": 2395.3596734467174,
"description": "Fungus squamous spectral blasphemous gambrel. Effulgence mortal ululate fainted madness eldritch stench. Noisome unnamable hideous ululate blasphemous.",
"id": 78
},
{
"name": "Nesoi",
"age": 1652.1246249388448,
"description": "Madness dank charnel ululate. Non-euclidean hideous unnamable dank. Foetid unnamable accursed manuscript.",
"id": 79
},
{
"name": "Nyx",
"age": 1302.6138954407077,
"description": "Swarthy furtive immemorial. Accursed shunned swarthy ululate lurk hideous cat. Eldritch unnamable cyclopean. Antiquarian comprehension squamous spectral lurk blasphemous cat.",
"id": 80
},
{
"name": "Aether",
"age": 3088.0049853196265,
"description": "Spectral tentacles noisome squamous. Stygian shunned antiquarian fainted gibbering dank decadent. Manuscript foetid stygian unutterable cyclopean indescribable gibbering blasphemous.",
"id": 81
},
{
"name": "Uranus",
"age": 3152.136256745188,
"description": "Accursed comprehension blasphemous swarthy gibbous hideous. Fainted manuscript stench lurk singular hideous. Lurk decadent stench ululate tentacles immemorial non-euclidean nameless.",
"id": 82
},
{
"name": "Erebus",
"age": 3464.890979673409,
"description": "Fungus charnel lurk fainted. Eldritch cat stench unnamable antiquarian. Ululate fainted cyclopean hideous.",
"id": 83
},
{
"name": "Hemera",
"age": 295.52882769036347,
"description": "Decadent swarthy shunned gambrel immemorial effulgence. Singular charnel fainted decadent madness shunned unnamable. Dank nameless ululate fainted fungus unutterable comprehension tentacles. Stygian tenebrous accursed charnel.",
"id": 84
},
{
"name": "Aether",
"age": 183.05003355935855,
"description": "Stygian swarthy amorphous. Tentacles manuscript madness swarthy charnel effulgence dank furtive. Non-euclidean iridescence singular comprehension furtive unmentionable.",
"id": 85
},
{
"name": "Ananke",
"age": 1688.8792218688038,
"description": "Squamous gibbering non-euclidean decadent eldritch cyclopean. Stench accursed eldritch noisome cat. Non-euclidean comprehension decadent furtive nameless. Madness cat amorphous daemoniac mortal. Swarthy unmentionable madness dank shunned mortal blasphemous loathsome.",
"id": 86
},
{
"name": "Phanes",
"age": 3230.1875519226883,
"description": "Hideous mortal unmentionable. Eldritch ululate tentacles dank amorphous manuscript furtive loathsome. Stench antediluvian noisome.",
"id": 87
},
{
"name": "Gaia",
"age": 995.7876939495433,
"description": "Spectral tentacles squamous stench daemoniac hideous stygian. Fainted ululate unnamable lurk fungus. Unnamable decadent hideous non-euclidean dank eldritch shunned fainted. Fungus non-euclidean stench cyclopean lurk accursed eldritch shunned. Swarthy furtive cyclopean ululate.",
"id": 88
},
{
"name": "Eros",
"age": 1605.350256579942,
"description": "Lurk immemorial foetid unmentionable. Swarthy comprehension immemorial tenebrous. Gibbering gambrel blasphemous ululate.",
"id": 89
},
{
"name": "Thanatos",
"age": 2919.059649221079,
"description": "Tentacles singular comprehension amorphous indescribable hideous. Stygian tenebrous unnamable charnel. Antiquarian effulgence unnamable antediluvian fungus swarthy. Unnamable unmentionable stygian shunned indescribable eldritch effulgence.",
"id": 90
},
{
"name": "Pontus",
"age": 3247.0574038657705,
"description": "Unutterable immemorial gambrel non-euclidean. Effulgence unutterable swarthy foetid. Stygian lurk fungus tenebrous squamous non-euclidean accursed tentacles. Cyclopean squamous singular effulgence. Furtive manuscript hideous.",
"id": 91
},
{
"name": "Pontus",
"age": 4141.907766223823,
"description": "Furtive manuscript daemoniac. Antiquarian fungus unnamable foetid manuscript dank mortal. Ululate gambrel iridescence foetid gibbous. Gambrel abnormal antediluvian.",
"id": 92
},
{
"name": "Hemera",
"age": 157.2976560909849,
"description": "Stygian eldritch furtive immemorial gibbous. Squamous hideous fungus spectral. Squamous eldritch gambrel.",
"id": 93
},
{
"name": "Chronos",
"age": 3660.6628350275455,
"description": "Eldritch noisome mortal lurk indescribable tenebrous dank singular. Unmentionable fainted charnel loathsome non-euclidean. Eldritch comprehension antediluvian. Shunned furtive mortal nameless. Cyclopean foetid ululate shunned gibbous charnel.",
"id": 94
},
{
"name": "Thalassa",
"age": 1257.7779667143582,
"description": "Blasphemous antediluvian indescribable effulgence amorphous decadent ululate tenebrous. Tentacles antiquarian singular furtive shunned cat nameless swarthy. Tentacles noisome cyclopean unmentionable. Foetid ululate spectral swarthy hideous loathsome nameless. Antediluvian comprehension nameless effulgence decadent.",
"id": 95
},
{
"name": "Nyx",
"age": 1883.8449108645582,
"description": "Madness daemoniac tentacles foetid. Cyclopean unnamable shunned cat decadent fainted. Gibbering stygian eldritch iridescence daemoniac.",
"id": 96
},
{
"name": "Chronos",
"age": 4248.351771852589,
"description": "Hideous tentacles eldritch amorphous abnormal. Loathsome manuscript noisome gibbous swarthy effulgence nameless. Antiquarian stygian dank manuscript. Iridescence antediluvian squamous charnel immemorial swarthy.",
"id": 97
},
{
"name": "Erebus",
"age": 2867.2930857902084,
"description": "Blasphemous amorphous unmentionable. Madness dank lurk. Squamous antediluvian mortal noisome loathsome unutterable. Antediluvian accursed unnamable daemoniac mortal shunned. Tentacles unnamable cyclopean daemoniac mortal fungus tenebrous.",
"id": 98
},
{
"name": "Hypnos",
"age": 2543.700137943005,
"description": "Daemoniac manuscript antiquarian. Squamous comprehension ululate tentacles stench lurk antediluvian unutterable. Tenebrous antediluvian unutterable singular decadent. Mortal blasphemous madness iridescence cyclopean hideous.",
"id": 99
},
{
"name": "Hypnos",
"age": 3300.1040447727873,
"description": "Fainted loathsome charnel gambrel manuscript. Noisome stench unutterable madness accursed. Accursed foetid immemorial cat. Gibbering tenebrous amorphous. Daemoniac stygian lurk.",
"id": 100
},
{
"name": "Gaia",
"age": 3381.3652025899864,
"description": "Immemorial gambrel tentacles non-euclidean stench daemoniac. Stygian fungus gambrel. Charnel unutterable hideous decadent gibbering immemorial noisome eldritch.",
"id": 101
},
{
"name": "Pontus",
"age": 2736.3753520191085,
"description": "Unnamable squamous gambrel amorphous mortal. Blasphemous noisome cat dank madness comprehension unmentionable squamous. Abnormal furtive amorphous.",
"id": 102
},
{
"name": "Nemesis",
"age": 2184.088501462482,
"description": "Shunned gibbering daemoniac fainted. Mortal non-euclidean tenebrous. Accursed indescribable dank lurk. Gambrel swarthy non-euclidean.",
"id": 103
},
{
"name": "Ourea",
"age": 2852.962160609508,
"description": "Indescribable accursed noisome non-euclidean ululate. Stench cyclopean noisome fainted comprehension unnamable. Shunned eldritch gibbous fungus loathsome.",
"id": 104
},
{
"name": "Chaos",
"age": 953.7947364473198,
"description": "Stygian ululate manuscript eldritch tentacles cyclopean antiquarian tenebrous. Iridescence singular nameless. Non-euclidean amorphous foetid spectral ululate cat abnormal. Swarthy squamous tenebrous comprehension effulgence lurk hideous immemorial. Fainted madness non-euclidean stygian.",
"id": 105
},
{
"name": "Chaos",
"age": 4870.500329388104,
"description": "Dank noisome unmentionable accursed. Amorphous fungus hideous. Loathsome stench shunned.",
"id": 106
},
{
"name": "Aion",
"age": 297.1748552052436,
"description": "Eldritch indescribable abnormal lurk accursed unmentionable stygian. Comprehension fungus abnormal singular loathsome. Dank amorphous accursed gibbering effulgence. Lurk singular hideous madness iridescence spectral antiquarian. Antediluvian foetid madness cat.",
"id": 107
},
{
"name": "Thalassa",
"age": 3026.932677454658,
"description": "Eldritch furtive spectral antiquarian accursed. Lurk loathsome hideous. Effulgence cat iridescence spectral cyclopean fainted mortal. Dank stench stygian swarthy. Spectral gibbous stygian.",
"id": 108
},
{
"name": "Eros",
"age": 4468.685635931884,
"description": "Fungus antiquarian shunned stygian cat gambrel singular. Gibbous effulgence gibbering accursed tentacles. Dank blasphemous comprehension unnamable singular fainted.",
"id": 109
},
{
"name": "Nemesis",
"age": 436.93900123585485,
"description": "Fungus comprehension unmentionable manuscript tentacles ululate charnel iridescence. Decadent stygian charnel. Charnel indescribable immemorial unutterable. Amorphous gibbering loathsome. Decadent abnormal effulgence fungus hideous.",
"id": 110
},
{
"name": "Nesoi",
"age": 2320.4400286821765,
"description": "Unnamable nameless hideous dank blasphemous non-euclidean spectral. Gibbous stygian lurk spectral cat foetid. Squamous manuscript cat iridescence nameless spectral abnormal.",
"id": 111
},
{
"name": "Uranus",
"age": 4499.428118607849,
"description": "Cat cyclopean amorphous unutterable abnormal antiquarian gambrel. Eldritch fungus noisome nameless loathsome shunned. Hideous singular swarthy tentacles spectral indescribable eldritch dank.",
"id": 112
},
{
"name": "Hemera",
"age": 4718.349889400827,
"description": "Madness unutterable tenebrous furtive tentacles non-euclidean eldritch. Tentacles furtive ululate gibbous nameless. Non-euclidean accursed gibbering abnormal cat madness fungus. Loathsome decadent foetid stygian cyclopean squamous stench. Cat gibbous indescribable madness manuscript.",
"id": 113
},
{
"name": "Hemera",
"age": 232.01772605292896,
"description": "Indescribable dank nameless antiquarian mortal charnel eldritch. Accursed swarthy decadent. Tenebrous noisome dank.",
"id": 114
},
{
"name": "Hypnos",
"age": 4682.423482644605,
"description": "Shunned noisome fainted tenebrous gibbering stench amorphous. Furtive shunned singular unutterable. Mortal effulgence antediluvian singular fungus decadent amorphous. Cyclopean nameless cat tentacles non-euclidean charnel. Comprehension effulgence antediluvian loathsome antiquarian hideous foetid non-euclidean.",
"id": 115
},
{
"name": "Aether",
"age": 2156.4915901213735,
"description": "Gibbous squamous stygian unmentionable mortal lurk spectral dank. Unmentionable cat eldritch antiquarian unutterable. Tenebrous antediluvian abnormal. Hideous immemorial effulgence iridescence cat.",
"id": 116
},
{
"name": "Aion",
"age": 4350.350886985093,
"description": "Madness loathsome shunned. Loathsome non-euclidean accursed antiquarian. Cyclopean lurk antediluvian antiquarian indescribable accursed fungus loathsome. Accursed mortal indescribable spectral. Decadent gibbous daemoniac fungus lurk.",
"id": 117
},
{
"name": "Aion",
"age": 4666.231650305159,
"description": "Abnormal accursed singular effulgence daemoniac. Loathsome gibbering tentacles manuscript eldritch stygian non-euclidean tenebrous. Antiquarian gibbering fainted gibbous decadent. Tentacles cat blasphemous antediluvian stygian madness effulgence squamous.",
"id": 118
},
{
"name": "Pontus",
"age": 1598.9791094177262,
"description": "Stench dank immemorial unmentionable shunned loathsome tentacles. Indescribable stench blasphemous hideous decadent lurk. Madness stygian immemorial indescribable non-euclidean charnel. Effulgence shunned unnamable spectral antiquarian. Unutterable cat lurk cyclopean eldritch.",
"id": 119
},
{
"name": "Ananke",
"age": 1260.7707801059478,
"description": "Fungus stygian gibbering nameless. Madness accursed lurk furtive cyclopean foetid. Daemoniac ululate iridescence tenebrous comprehension stygian.",
"id": 120
},
{
"name": "Ourea",
"age": 4627.71785049479,
"description": "Blasphemous charnel tenebrous fainted foetid antediluvian. Immemorial charnel singular gibbering. Daemoniac tentacles tenebrous non-euclidean dank. Mortal antiquarian decadent tentacles non-euclidean. Squamous iridescence fainted.",
"id": 121
},
{
"name": "Aion",
"age": 2718.8007979030453,
"description": "Indescribable gibbering non-euclidean gibbous abnormal gambrel. Eldritch tenebrous ululate indescribable gibbering accursed. Unnamable foetid stygian charnel nameless.",
"id": 122
},
{
"name": "Thalassa",
"age": 4911.269589545082,
"description": "Non-euclidean immemorial foetid gibbous swarthy antediluvian unutterable. Madness ululate swarthy furtive stench unmentionable abnormal fainted. Accursed spectral loathsome dank stench decadent. Unnamable antediluvian shunned noisome.",
"id": 123
},
{
"name": "Tartarus",
"age": 2681.4206639161957,
"description": "Foetid non-euclidean cyclopean decadent. Stench noisome furtive effulgence nameless. Spectral cyclopean dank manuscript unutterable.",
"id": 124
},
{
"name": "Erebus",
"age": 2513.701785280377,
"description": "Swarthy stench accursed. Gambrel accursed gibbering antediluvian ululate stench mortal. Mortal charnel eldritch furtive. Cat loathsome mortal spectral tentacles. Daemoniac mortal squamous accursed effulgence.",
"id": 125
},
{
"name": "Chronos",
"age": 43.31848523277113,
"description": "Loathsome unutterable squamous gibbering effulgence cyclopean antediluvian. Eldritch ululate gambrel cyclopean stench. Tentacles antediluvian cyclopean stench.",
"id": 126
},
{
"name": "Erebus",
"age": 2640.005752802214,
"description": "Comprehension gibbous effulgence spectral amorphous manuscript eldritch madness. Daemoniac immemorial stench non-euclidean loathsome unmentionable. Hideous manuscript dank cyclopean noisome gibbous.",
"id": 127
},
{
"name": "Chaos",
"age": 1149.2876493465521,
"description": "Charnel noisome stygian. Blasphemous eldritch ululate singular. Decadent swarthy stygian shunned unmentionable tentacles furtive accursed. Dank hideous abnormal eldritch shunned lurk unnamable singular. Accursed fainted gibbering antiquarian cat indescribable iridescence hideous.",
"id": 128
},
{
"name": "Aether",
"age": 24.320491523262987,
"description": "Antediluvian amorphous furtive cyclopean abnormal effulgence. Gambrel daemoniac iridescence madness amorphous. Gibbous swarthy dank. Fungus foetid daemoniac unnamable swarthy loathsome. Tentacles eldritch squamous lurk charnel loathsome comprehension.",
"id": 129
},
{
"name": "Aion",
"age": 1715.896930712988,
"description": "Non-euclidean amorphous manuscript antediluvian unutterable madness stygian. Spectral unutterable singular antiquarian eldritch cat loathsome cyclopean. Comprehension cyclopean unnamable immemorial non-euclidean amorphous iridescence. Nameless decadent singular spectral effulgence. Unmentionable hideous stench gambrel madness amorphous.",
"id": 130
},
{
"name": "Tartarus",
"age": 1636.496787522101,
"description": "Accursed indescribable cat gambrel tentacles antediluvian squamous. Lurk gibbering fungus. Accursed antediluvian abnormal loathsome.",
"id": 131
},
{
"name": "Ourea",
"age": 3692.9927158875494,
"description": "Unutterable madness dank accursed stygian loathsome antiquarian effulgence. Cyclopean tentacles iridescence non-euclidean charnel. Swarthy abnormal noisome dank antiquarian iridescence madness. Shunned iridescence foetid manuscript effulgence singular.",
"id": 132
},
{
"name": "Chaos",
"age": 1590.9548034928468,
"description": "Gibbous charnel dank. Tentacles hideous tenebrous non-euclidean. Charnel mortal indescribable singular. Gibbous effulgence foetid gambrel antediluvian squamous dank immemorial. Unnamable daemoniac antediluvian accursed noisome immemorial singular mortal.",
"id": 133
},
{
"name": "Tartarus",
"age": 3156.6523520964693,
"description": "Shunned lurk comprehension iridescence. Stygian madness charnel foetid. Loathsome immemorial noisome cat stench iridescence madness. Antiquarian comprehension stygian hideous fungus. Gibbous foetid lurk effulgence nameless loathsome.",
"id": 134
},
{
"name": "Ananke",
"age": 1630.5760975810933,
"description": "Ululate foetid gibbous. Gibbous singular noisome. Abnormal decadent effulgence comprehension. Amorphous madness accursed foetid manuscript spectral abnormal charnel.",
"id": 135
},
{
"name": "Erebus",
"age": 4760.3984848348955,
"description": "Eldritch accursed amorphous abnormal gibbering hideous. Squamous tentacles effulgence fainted. Ululate cyclopean stench daemoniac effulgence gibbering. Fainted immemorial antiquarian nameless cyclopean amorphous madness.",
"id": 136
},
{
"name": "Uranus",
"age": 999.0598505667091,
"description": "Squamous comprehension antiquarian fungus foetid unnamable. Stench unnamable ululate daemoniac unmentionable gibbering eldritch. Ululate unutterable non-euclidean shunned cyclopean madness daemoniac fainted. Shunned loathsome noisome cat.",
"id": 137
},
{
"name": "Chaos",
"age": 44.540209330753676,
"description": "Tentacles ululate unmentionable cat. Singular furtive unutterable hideous daemoniac stench. Accursed noisome amorphous. Hideous daemoniac tentacles swarthy eldritch gibbous loathsome. Stench antediluvian lurk madness.",
"id": 138
},
{
"name": "Eros",
"age": 337.29233582436217,
"description": "Foetid furtive unutterable decadent. Furtive immemorial dank accursed blasphemous. Amorphous foetid hideous tentacles decadent fungus shunned. Cyclopean comprehension effulgence stygian ululate lurk.",
"id": 139
},
{
"name": "Aether",
"age": 1837.5400886367308,
"description": "Iridescence loathsome spectral madness. Tentacles abnormal unmentionable spectral tenebrous eldritch. Swarthy iridescence tenebrous unutterable madness. Stench immemorial gibbering dank effulgence antiquarian abnormal spectral.",
"id": 140
},
{
"name": "Chaos",
"age": 98.25324737257064,
"description": "Spectral dank accursed. Unutterable iridescence nameless non-euclidean blasphemous. Stench nameless stygian abnormal immemorial lurk antiquarian. Nameless antediluvian hideous unmentionable.",
"id": 141
},
{
"name": "Chronos",
"age": 492.4805794676744,
"description": "Charnel eldritch tentacles foetid gibbering antiquarian. Noisome decadent comprehension gibbous indescribable spectral madness unnamable. Foetid swarthy effulgence antiquarian daemoniac gambrel dank mortal. Mortal stench fainted non-euclidean stygian lurk. Stygian amorphous gambrel fungus.",
"id": 142
},
{
"name": "Phanes",
"age": 4607.0431627307635,
"description": "Effulgence stygian charnel spectral swarthy noisome. Gambrel iridescence madness. Shunned manuscript stench lurk charnel. Swarthy noisome loathsome mortal stygian gibbering gambrel. Lurk dank ululate gibbous foetid accursed fainted gibbering.",
"id": 143
},
{
"name": "Hemera",
"age": 782.6618794618388,
"description": "Stench lurk mortal cyclopean squamous eldritch furtive. Gibbous hideous lurk. Unnamable abnormal decadent non-euclidean. Fungus abnormal furtive fainted effulgence manuscript. Singular comprehension spectral.",
"id": 144
},
{
"name": "Chaos",
"age": 3305.431561246912,
"description": "Effulgence antiquarian squamous unmentionable cyclopean gibbering mortal manuscript. Hideous accursed cyclopean charnel tentacles antediluvian gibbous. Loathsome charnel cat. Gibbous lurk spectral singular dank antediluvian mortal.",
"id": 145
},
{
"name": "Hypnos",
"age": 2707.1311201554977,
"description": "Tentacles iridescence indescribable. Cyclopean comprehension foetid shunned iridescence indescribable. Cat mortal daemoniac. Effulgence furtive singular madness.",
"id": 146
},
{
"name": "Thanatos",
"age": 1835.2326159799961,
"description": "Amorphous antiquarian squamous stench tentacles charnel. Unmentionable abnormal gibbous spectral stygian noisome fungus. Gibbous accursed cat. Indescribable noisome tentacles.",
"id": 147
},
{
"name": "Gaia",
"age": 3830.43552530457,
"description": "Stench cyclopean shunned swarthy mortal. Gibbering ululate madness unmentionable decadent accursed manuscript gibbous. Dank antediluvian gibbous comprehension charnel squamous.",
"id": 148
},
{
"name": "Hypnos",
"age": 3217.4914452654575,
"description": "Shunned gibbous nameless stench comprehension swarthy. Hideous loathsome comprehension gibbering stygian gambrel unmentionable. Effulgence shunned stygian ululate noisome. Ululate manuscript iridescence amorphous madness shunned.",
"id": 149
},
{
"name": "Thanatos",
"age": 2127.730672370776,
"description": "Cyclopean tenebrous noisome stygian manuscript dank. Dank gibbous abnormal. Loathsome dank ululate abnormal cyclopean iridescence. Unmentionable indescribable squamous charnel cyclopean.",
"id": 150
},
{
"name": "Gaia",
"age": 2249.122229957882,
"description": "Fainted noisome spectral stench madness. Stygian foetid loathsome gambrel. Tenebrous antediluvian dank spectral gibbering furtive.",
"id": 151
},
{
"name": "Chaos",
"age": 951.9995898156618,
"description": "Tenebrous blasphemous immemorial decadent unutterable madness stygian tentacles. Daemoniac loathsome singular charnel effulgence. Unutterable daemoniac non-euclidean unmentionable fungus decadent singular stench. Gibbous mortal lurk.",
"id": 152
},
{
"name": "Erebus",
"age": 3152.6079183686884,
"description": "Comprehension mortal antediluvian. Blasphemous fainted cyclopean ululate foetid furtive. Singular stench unmentionable. Madness spectral eldritch abnormal gambrel noisome mortal cat.",
"id": 153
},
{
"name": "Chaos",
"age": 428.5534464008668,
"description": "Iridescence effulgence foetid cyclopean. Mortal nameless indescribable cyclopean unutterable. Unmentionable indescribable comprehension manuscript tenebrous shunned.",
"id": 154
},
{
"name": "Gaia",
"age": 3080.112772437141,
"description": "Madness fungus amorphous. Stygian shunned cyclopean comprehension swarthy unnamable. Cat accursed lurk squamous. Effulgence indescribable loathsome blasphemous mortal spectral decadent shunned. Noisome cat ululate.",
"id": 155
},
{
"name": "Tartarus",
"age": 1101.493788393842,
"description": "Amorphous blasphemous cyclopean unmentionable lurk loathsome antiquarian tenebrous. Charnel daemoniac gibbering iridescence loathsome eldritch antediluvian. Gambrel gibbous spectral indescribable antediluvian cyclopean unnamable. Manuscript effulgence accursed fungus lurk.",
"id": 156
},
{
"name": "Ananke",
"age": 4002.929249654614,
"description": "Unnamable accursed decadent comprehension. Non-euclidean iridescence unnamable. Unmentionable amorphous fainted nameless singular tenebrous. Hideous gibbering manuscript gambrel abnormal dank ululate squamous.",
"id": 157
},
{
"name": "Nyx",
"age": 4903.24181796771,
"description": "Gibbous charnel madness unmentionable fungus. Comprehension noisome stench antediluvian. Decadent gibbering effulgence blasphemous abnormal manuscript shunned comprehension. Lurk spectral tenebrous stygian antediluvian.",
"id": 158
},
{
"name": "Thalassa",
"age": 4682.20605223627,
"description": "Mortal amorphous tenebrous immemorial spectral fungus. Cyclopean immemorial stench squamous lurk. Loathsome cyclopean indescribable charnel stench gibbering immemorial.",
"id": 159
},
{
"name": "Chaos",
"age": 1180.355531733322,
"description": "Hideous singular lurk. Ululate madness unnamable singular. Hideous daemoniac mortal stygian gibbous noisome accursed madness. Effulgence squamous unnamable. Madness blasphemous charnel tentacles non-euclidean noisome.",
"id": 160
},
{
"name": "Aether",
"age": 347.05661889885715,
"description": "Charnel tenebrous cyclopean unutterable madness cat. Charnel comprehension spectral. Noisome foetid furtive squamous shunned lurk. Cyclopean effulgence charnel. Stench gibbous ululate squamous.",
"id": 161
},
{
"name": "Aion",
"age": 414.9434870031577,
"description": "Effulgence antediluvian tenebrous abnormal. Abnormal effulgence daemoniac immemorial blasphemous stygian gibbering fungus. Gibbous blasphemous swarthy. Comprehension charnel mortal accursed. Antiquarian madness cat.",
"id": 162
},
{
"name": "Phanes",
"age": 1807.1707962679757,
"description": "Fainted effulgence abnormal loathsome tentacles foetid. Manuscript unutterable stygian nameless hideous. Dank eldritch mortal furtive. Foetid tenebrous decadent.",
"id": 163
},
{
"name": "Uranus",
"age": 586.9451351727015,
"description": "Fungus gibbering shunned iridescence. Cat accursed gibbous fungus cyclopean unnamable. Foetid shunned manuscript.",
"id": 164
},
{
"name": "Erebus",
"age": 1450.0391446299302,
"description": "Charnel unutterable cyclopean dank tenebrous amorphous daemoniac lurk. Stench gambrel singular hideous gibbering antiquarian. Unutterable mortal decadent. Unmentionable lurk immemorial effulgence unnamable blasphemous antediluvian ululate. Unutterable unmentionable foetid indescribable.",
"id": 165
},
{
"name": "Aion",
"age": 1550.8982105055245,
"description": "Dank comprehension immemorial antediluvian decadent daemoniac manuscript stench. Eldritch foetid gibbering. Hideous immemorial gambrel daemoniac spectral fungus gibbous. Unutterable gambrel dank foetid swarthy furtive. Fungus accursed gibbering.",
"id": 166
},
{
"name": "Hypnos",