-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
10129 lines (10073 loc) · 319 KB
/
data.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": [
{
"name": "Success",
"id": 1,
"subcategories": [
{
"name": "Career Success",
"id": 11,
"quotes": [
{
"id": 111,
"text": "Success usually comes to those who are too busy to be looking for it.",
"author": "Henry David Thoreau"
},
{
"id": 112,
"text": "Opportunities don't happen. You create them.",
"author": "Chris Grosser"
},
{
"id": 113,
"text": "Don't be afraid to give up the good to go for the great.",
"author": "John D. Rockefeller"
},
{
"id": 114,
"text": "I find that the harder I work, the more luck I seem to have.",
"author": "Thomas Jefferson"
},
{
"id": 115,
"text": "Success is not in what you have, but who you are.",
"author": "Bo Bennett"
},
{
"id": 116,
"text": "Success is walking from failure to failure with no loss of enthusiasm.",
"author": "Winston Churchill"
},
{
"id": 117,
"text": "The way to get started is to quit talking and begin doing.",
"author": "Walt Disney"
},
{
"id": 118,
"text": "Your time is limited, don’t waste it living someone else’s life.",
"author": "Steve Jobs"
},
{
"id": 119,
"text": "Success doesn’t come from what you do occasionally, it comes from what you do consistently.",
"author": "Marie Forleo"
},
{
"id": 120,
"text": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
}
]
},
{
"name": "Personal Achievement",
"id": 12,
"quotes": [
{
"id": 121,
"text": "The only place where success comes before work is in the dictionary.",
"author": "Vidal Sassoon"
},
{
"id": 122,
"text": "Don't watch the clock; do what it does. Keep going.",
"author": "Sam Levenson"
},
{
"id": 123,
"text": "The future belongs to those who believe in the beauty of their dreams.",
"author": "Eleanor Roosevelt"
},
{
"id": 124,
"text": "Believe you can and you're halfway there.",
"author": "Theodore Roosevelt"
},
{
"id": 125,
"text": "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.",
"author": "Albert Schweitzer"
},
{
"id": 126,
"text": "Success is not the result of spontaneous combustion. You must set yourself on fire.",
"author": "Arnold H. Glasow"
},
{
"id": 127,
"text": "Hard work beats talent when talent doesn’t work hard.",
"author": "Kevin Durant"
},
{
"id": 128,
"text": "Success doesn’t come from what you do occasionally, it comes from what you do consistently.",
"author": "Marie Forleo"
},
{
"id": 129,
"text": "The road to success and the road to failure are almost exactly the same.",
"author": "Colin R. Davis"
},
{
"id": 130,
"text": "Success is going from failure to failure without losing your enthusiasm.",
"author": "Winston Churchill"
}
]
},
{
"name": "Motivation for Goals",
"id": 13,
"quotes": [
{
"id": 131,
"text": "The best way to predict your future is to create it.",
"author": "Peter Drucker"
},
{
"id": 132,
"text": "You are never too old to set another goal or to dream a new dream.",
"author": "C.S. Lewis"
},
{
"id": 133,
"text": "What lies behind us and what lies before us are tiny matters compared to what lies within us.",
"author": "Ralph Waldo Emerson"
},
{
"id": 134,
"text": "Success is not the result of making goals but rather of achieving them.",
"author": "Unknown"
},
{
"id": 135,
"text": "Success is the sum of small efforts, repeated day in and day out.",
"author": "Robert Collier"
},
{
"id": 136,
"text": "If you want something you’ve never had, you must be willing to do something you’ve never done.",
"author": "Thomas Jefferson"
},
{
"id": 137,
"text": "To achieve greatness, start where you are, use what you have, do what you can.",
"author": "Arthur Ashe"
},
{
"id": 138,
"text": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"id": 139,
"text": "Your life does not get better by chance, it gets better by change.",
"author": "Jim Rohn"
},
{
"id": 140,
"text": "Do what you can, with what you have, where you are.",
"author": "Theodore Roosevelt"
}
]
},
{
"name": "Overcoming Challenges",
"id": 14,
"quotes": [
{
"id": 141,
"text": "Challenges are what make life interesting and overcoming them is what makes life meaningful.",
"author": "Joshua J. Marine"
},
{
"id": 142,
"text": "It does not matter how slowly you go as long as you do not stop.",
"author": "Confucius"
},
{
"id": 143,
"text": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
},
{
"id": 144,
"text": "You may encounter many defeats, but you must not be defeated.",
"author": "Maya Angelou"
},
{
"id": 145,
"text": "We may encounter many defeats but we must not be defeated.",
"author": "Maya Angelou"
},
{
"id": 146,
"text": "Strength does not come from winning. Your struggles develop your strengths.",
"author": "Arnold Schwarzenegger"
},
{
"id": 147,
"text": "The greater the obstacle, the more glory in overcoming it. Skillful pilots gain their reputation from storms and tempests.",
"author": "Epictetus"
},
{
"id": 148,
"text": "Hard times may have held you down, but they will not keep you down.",
"author": "Unknown"
},
{
"id": 149,
"text": "Challenges make you discover things about yourself that you never really knew.",
"author": "Catherine Pulsifer"
},
{
"id": 150,
"text": "In the middle of every difficulty lies opportunity.",
"author": "Albert Einstein"
}
]
},
{
"name": "Success Stories",
"id": 15,
"quotes": [
{
"id": 151,
"text": "Success is not final, failure is not fatal: It is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"id": 152,
"text": "Success usually comes to those who are too busy to be looking for it.",
"author": "Henry David Thoreau"
},
{
"id": 153,
"text": "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.",
"author": "Albert Schweitzer"
},
{
"id": 154,
"text": "Success is the sum of small efforts, repeated day in and day out.",
"author": "Robert Collier"
},
{
"id": 155,
"text": "The only way to achieve the impossible is to believe it is possible.",
"author": "Charles Kingsleigh"
},
{
"id": 156,
"text": "Success is not in what you have, but who you are.",
"author": "Bo Bennett"
},
{
"id": 157,
"text": "The best way to predict your future is to create it.",
"author": "Peter Drucker"
},
{
"id": 158,
"text": "You are never too old to set another goal or to dream a new dream.",
"author": "C.S. Lewis"
},
{
"id": 159,
"text": "What lies behind us and what lies before us are tiny matters compared to what lies within us.",
"author": "Ralph Waldo Emerson"
},
{
"id": 160,
"text": "Success is not the result of making goals but rather of achieving them.",
"author": "Unknown"
},
{
"id": 161,
"text": "Success is the sum of small efforts, repeated day in and day out.",
"author": "Robert Collier"
},
{
"id": 162,
"text": "If you want something you’ve never had, you must be willing to do something you’ve never done.",
"author": "Thomas Jefferson"
},
{
"id": 163,
"text": "To achieve greatness, start where you are, use what you have, do what you can.",
"author": "Arthur Ashe"
},
{
"id": 164,
"text": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"id": 165,
"text": "Your life does not get better by chance, it gets better by change.",
"author": "Jim Rohn"
}
]
}]
},
{
"name": "Inspiration",
"id": 2,
"subcategories": [
{
"name": "Life Inspiration",
"id": 21,
"quotes": [
{
"id": 201,
"text": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"id": 202,
"text": "Life is 10% what happens to us and 90% how we react to it.",
"author": "Charles R. Swindoll"
},
{
"id": 203,
"text": "Believe you can and you're halfway there.",
"author": "Theodore Roosevelt"
},
{
"id": 204,
"text": "The best way to get started is to quit talking and begin doing.",
"author": "Walt Disney"
},
{
"id": 205,
"text": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
},
{
"id": 206,
"text": "You must be the change you wish to see in the world.",
"author": "Mahatma Gandhi"
},
{
"id": 207,
"text": "You have within you right now, everything you need to deal with whatever the world can throw at you.",
"author": "Brian Tracy"
},
{
"id": 208,
"text": "Start where you are. Use what you have. Do what you can.",
"author": "Arthur Ashe"
},
{
"id": 209,
"text": "The best revenge is massive success.",
"author": "Frank Sinatra"
},
{
"id": 210,
"text": "Don’t watch the clock; do what it does. Keep going.",
"author": "Sam Levenson"
}
]
},
{
"name": "Personal Growth",
"id": 22,
"quotes": [
{
"id": 211,
"text": "Growth is never by mere chance; it is the result of forces working together.",
"author": "James Cash Penney"
},
{
"id": 212,
"text": "The only person you are destined to become is the person you decide to be.",
"author": "Ralph Waldo Emerson"
},
{
"id": 213,
"text": "The mind is everything. What you think you become.",
"author": "Buddha"
},
{
"id": 214,
"text": "The journey of a thousand miles begins with one step.",
"author": "Lao Tzu"
},
{
"id": 215,
"text": "Success is not final, failure is not fatal: It is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"id": 216,
"text": "Believe in yourself and all that you are. Know that there is something inside you that is greater than any obstacle.",
"author": "Christian D. Larson"
},
{
"id": 217,
"text": "Your time is limited, don't waste it living someone else's life.",
"author": "Steve Jobs"
},
{
"id": 218,
"text": "You miss 100% of the shots you don’t take.",
"author": "Wayne Gretzky"
},
{
"id": 219,
"text": "If you want to lift yourself up, lift up someone else.",
"author": "Booker T. Washington"
},
{
"id": 220,
"text": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
}
]
},
{
"name": "Creativity",
"id": 23,
"quotes": [
{
"id": 221,
"text": "Creativity is intelligence having fun.",
"author": "Albert Einstein"
},
{
"id": 222,
"text": "Every artist was first an amateur.",
"author": "Ralph Waldo Emerson"
},
{
"id": 223,
"text": "Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.",
"author": "Scott Adams"
},
{
"id": 224,
"text": "The best way to predict the future is to invent it.",
"author": "Alan Kay"
},
{
"id": 225,
"text": "The chief enemy of creativity is ‘good’ sense.",
"author": "Pablo Picasso"
},
{
"id": 226,
"text": "Creativity is the way I share my soul with the world.",
"author": "Brené Brown"
},
{
"id": 227,
"text": "You can’t use up creativity. The more you use, the more you have.",
"author": "Maya Angelou"
},
{
"id": 228,
"text": "Creativity involves breaking out of expected patterns in order to look at things in a different way.",
"author": "Edward de Bono"
},
{
"id": 229,
"text": "Innovation distinguishes between a leader and a follower.",
"author": "Steve Jobs"
},
{
"id": 230,
"text": "To live a creative life, we must lose our fear of being wrong.",
"author": "Joseph Chilton Pearce"
}
]
},
{
"name": "Daily Motivation",
"id": 24,
"quotes": [
{
"id": 231,
"text": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"id": 232,
"text": "Don’t watch the clock; do what it does. Keep going.",
"author": "Sam Levenson"
},
{
"id": 233,
"text": "You must be the change you wish to see in the world.",
"author": "Mahatma Gandhi"
},
{
"id": 234,
"text": "The best way to predict your future is to create it.",
"author": "Peter Drucker"
},
{
"id": 235,
"text": "Your time is limited, don’t waste it living someone else’s life.",
"author": "Steve Jobs"
},
{
"id": 236,
"text": "The journey of a thousand miles begins with one step.",
"author": "Lao Tzu"
},
{
"id": 237,
"text": "You are never too old to set another goal or to dream a new dream.",
"author": "C.S. Lewis"
},
{
"id": 238,
"text": "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.",
"author": "Albert Schweitzer"
},
{
"id": 239,
"text": "Believe you can and you’re halfway there.",
"author": "Theodore Roosevelt"
},
{
"id": 240,
"text": "The future belongs to those who believe in the beauty of their dreams.",
"author": "Eleanor Roosevelt"
}
]
}]},
{
"name": "Wisdom",
"id": 3,
"subcategories": [
{
"name": "Philosophical Wisdom",
"id": 41,
"quotes": [
{
"id": 401,
"text": "The unexamined life is not worth living.",
"author": "Socrates"
},
{
"id": 402,
"text": "He who has a why to live can bear almost any how.",
"author": "Friedrich Nietzsche"
},
{
"id": 403,
"text": "Knowing yourself is the beginning of all wisdom.",
"author": "Aristotle"
},
{
"id": 404,
"text": "The only true wisdom is in knowing you know nothing.",
"author": "Socrates"
},
{
"id": 405,
"text": "Wisdom begins in wonder.",
"author": "Socrates"
},
{
"id": 406,
"text": "To be, or not to be, that is the question.",
"author": "William Shakespeare"
},
{
"id": 407,
"text": "The more you know, the more you realize you don't know.",
"author": "Aristotle"
},
{
"id": 408,
"text": "It is not length of life, but depth of life.",
"author": "Ralph Waldo Emerson"
},
{
"id": 409,
"text": "The only way to deal with an unfree world is to become so absolutely free that your very existence is an act of rebellion.",
"author": "Albert Camus"
},
{
"id": 410,
"text": "The journey of a thousand miles begins with one step.",
"author": "Lao Tzu"
}
]
},
{
"name": "Life Lessons",
"id": 42,
"quotes": [
{
"id": 411,
"text": "In the end, we will remember not the words of our enemies, but the silence of our friends.",
"author": "Martin Luther King Jr."
},
{
"id": 412,
"text": "Life is what happens when you're busy making other plans.",
"author": "John Lennon"
},
{
"id": 413,
"text": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
},
{
"id": 414,
"text": "The best way to find yourself is to lose yourself in the service of others.",
"author": "Mahatma Gandhi"
},
{
"id": 415,
"text": "In three words I can sum up everything I've learned about life: it goes on.",
"author": "Robert Frost"
},
{
"id": 416,
"text": "Do not take life too seriously. You will never get out of it alive.",
"author": "Elbert Hubbard"
},
{
"id": 417,
"text": "We do not remember days; we remember moments.",
"author": "Cesare Pavese"
},
{
"id": 418,
"text": "You only live once, but if you do it right, once is enough.",
"author": "Mae West"
},
{
"id": 419,
"text": "Life is really simple, but we insist on making it complicated.",
"author": "Confucius"
},
{
"id": 420,
"text": "The purpose of life is not to be happy. It is to be useful, to be honorable, to be compassionate, to have it make some difference that you have lived and lived well.",
"author": "Ralph Waldo Emerson"
}
]
},
{
"name": "Motivational Wisdom",
"id": 43,
"quotes": [
{
"id": 421,
"text": "The only limit to our realization of tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt"
},
{
"id": 422,
"text": "Opportunities don't happen. You create them.",
"author": "Chris Grosser"
},
{
"id": 423,
"text": "The harder you work for something, the greater you'll feel when you achieve it.",
"author": "Unknown"
},
{
"id": 424,
"text": "Dream bigger. Do bigger.",
"author": "Unknown"
},
{
"id": 425,
"text": "Don't stop when you're tired. Stop when you're done.",
"author": "Unknown"
},
{
"id": 426,
"text": "Wake up with determination. Go to bed with satisfaction.",
"author": "Unknown"
},
{
"id": 427,
"text": "Do something today that your future self will thank you for.",
"author": "Unknown"
},
{
"id": 428,
"text": "Little things make big days. Great days build strong habits. Strong habits make a successful life.",
"author": "Unknown"
},
{
"id": 429,
"text": "It's going to be hard, but hard does not mean impossible.",
"author": "Unknown"
},
{
"id": 430,
"text": "Push yourself, because no one else is going to do it for you.",
"author": "Unknown"
}
]
},
{
"name": "Timeless Wisdom",
"id": 44,
"quotes": [
{
"id": 431,
"text": "Wisdom is not a product of schooling but of the lifelong attempt to acquire it.",
"author": "Albert Einstein"
},
{
"id": 432,
"text": "It is the mark of an educated mind to be able to entertain a thought without accepting it.",
"author": "Aristotle"
},
{
"id": 433,
"text": "In the middle of difficulty lies opportunity.",
"author": "Albert Einstein"
},
{
"id": 434,
"text": "Knowledge speaks, but wisdom listens.",
"author": "Jimi Hendrix"
},
{
"id": 435,
"text": "To know yourself, you have to spend time with yourself.",
"author": "Unknown"
},
{
"id": 436,
"text": "The best way to predict the future is to create it.",
"author": "Peter Drucker"
},
{
"id": 437,
"text": "To live a creative life, we must lose our fear of being wrong.",
"author": "Joseph Chilton Pearce"
},
{
"id": 438,
"text": "The more I read, the more I acquire, the more certain I am that I know nothing.",
"author": "Voltaire"
},
{
"id": 439,
"text": "Knowing others is intelligence; knowing yourself is true wisdom.",
"author": "Lao Tzu"
},
{
"id": 440,
"text": "The greatest wealth is to live content with little.",
"author": "Plato"
}
]
}]},
{
"name": "Resilience",
"id": 4,
"subcategories": [
{
"name": "Overcoming Adversity",
"id": 51,
"quotes": [
{
"id": 451,
"text": "It does not matter how slowly you go as long as you do not stop.",
"author": "Confucius"
},
{
"id": 452,
"text": "The greatest glory in living lies not in never falling, but in rising every time we fall.",
"author": "Nelson Mandela"
},
{
"id": 453,
"text": "Strength does not come from physical capacity. It comes from an indomitable will.",
"author": "Mahatma Gandhi"
},
{
"id": 454,
"text": "Success is not final, failure is not fatal: It is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"id": 455,
"text": "Hard times may have held you down, but they will make you stronger.",
"author": "Unknown"
},
{
"id": 456,
"text": "The best way out is always through.",
"author": "Robert Frost"
},
{
"id": 457,
"text": "Do not wait to strike till the iron is hot, but make it hot by striking.",
"author": "William Butler Yeats"
},
{
"id": 458,
"text": "Life is 10% what happens to us and 90% how we react to it.",
"author": "Charles R. Swindoll"
},
{
"id": 459,
"text": "Our greatest glory is not in never falling, but in rising every time we fall.",
"author": "Confucius"
},
{
"id": 460,
"text": "You may encounter many defeats, but you must not be defeated.",
"author": "Maya Angelou"
}
]
},
{
"name": "Inner Strength",
"id": 52,
"quotes": [
{
"id": 461,
"text": "The human spirit is stronger than anything that can happen to it.",
"author": "C.C. Scott"
},
{
"id": 462,
"text": "You are never given a dream without also being given the power to make it come true.",
"author": "Unknown"
},
{
"id": 463,
"text": "In the middle of every difficulty lies opportunity.",
"author": "Albert Einstein"
},
{
"id": 464,
"text": "Believe you can and you're halfway there.",
"author": "Theodore Roosevelt"
},
{
"id": 465,
"text": "The only way to deal with fear is to face it head-on.",
"author": "Unknown"
},
{
"id": 466,
"text": "Inner strength is the ability to endure and persevere through challenges and difficulties.",
"author": "Unknown"
},
{
"id": 467,
"text": "Adversity causes some men to break; others to break records.",
"author": "William Arthur Ward"
},
{
"id": 468,
"text": "You are not your circumstances. You are your possibilities.",
"author": "Oprah Winfrey"
},
{
"id": 469,
"text": "The strength of the team is each individual member. The strength of each member is the team.",
"author": "Phil Jackson"
},
{
"id": 470,
"text": "If you want to lift yourself up, lift up someone else.",
"author": "Booker T. Washington"
}
]
},
{
"name": "Perseverance",
"id": 53,
"quotes": [
{
"id": 471,
"text": "Perseverance is not a long race; it is many short races one after the other.",
"author": "Walter Elliot"
},
{
"id": 472,
"text": "The difference between a successful person and others is not a lack of strength, not a lack of knowledge, but rather a lack in will.",
"author": "Vince Lombardi"
},
{
"id": 473,
"text": "Never give up. Great things take time.",
"author": "Unknown"
},
{
"id": 474,
"text": "Perseverance is the key to unlocking your potential.",
"author": "Unknown"
},
{
"id": 475,
"text": "Fall seven times, stand up eight.",
"author": "Japanese Proverb"
},
{
"id": 476,
"text": "Perseverance is not a long race; it is many short races one after the other.",
"author": "Walter Elliot"
},
{
"id": 477,
"text": "When you come to the end of your rope, tie a knot and hang on.",
"author": "Franklin D. Roosevelt"
},
{
"id": 478,
"text": "The path to success is to take massive, determined action.",
"author": "Tony Robbins"
},
{
"id": 479,
"text": "Perseverance is the secret of all triumphs.",
"author": "Unknown"
},
{
"id": 480,
"text": "Keep going. Everything you need will come to you at the perfect time.",
"author": "Unknown"
}
]
},
{
"name": "Courage",
"id": 54,
"quotes": [
{
"id": 481,
"text": "Courage is grace under pressure.",
"author": "Ernest Hemingway"
},
{
"id": 482,
"text": "It takes courage to grow up and become who you really are.",
"author": "e.e. cummings"
},
{
"id": 483,
"text": "Courage is not the absence of fear, but the triumph over it.",
"author": "Nelson Mandela"
},
{
"id": 484,
"text": "Do one thing every day that scares you.",
"author": "Eleanor Roosevelt"
},
{
"id": 485,
"text": "The only thing we have to fear is fear itself.",
"author": "Franklin D. Roosevelt"
},
{
"id": 486,
"text": "Courage is not the absence of fear, but the ability to face it.",
"author": "Unknown"
},
{
"id": 487,
"text": "Bravery is not the absence of fear but the ability to face it.",
"author": "Unknown"
},
{
"id": 488,
"text": "Your task is not to foresee the future, but to enable it.",
"author": "Antoine de Saint-Exupery"
},
{
"id": 489,
"text": "The greatest test of courage on earth is to bear defeat without losing heart.",
"author": "Robert Green Ingersoll"
},
{
"id": 490,
"text": "Courage is being scared to death, but saddling up anyway.",
"author": "John Wayne"}]
},
{
"name": "Inner Strength",
"id": 52,
"quotes": [
{
"id": 461,
"text": "The human spirit is stronger than anything that can happen to it.",