summaryrefslogtreecommitdiffstats
path: root/tools/cats.json
blob: d622aba9ea0f9926e199480cfe7f826e4cf39c76 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
{
    "all": [
        {
            "_id": "58e009550aac31001185ed12",
            "text": "The oldest cat video on YouTube dates back to 1894.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 8,
            "userUpvoted": null
        },
        {
            "_id": "58e008340aac31001185ecfb",
            "text": "Cats sleep 70% of their lives.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "599f87db9a11040c4a16343f",
            "text": "The goddess of love, beauty, and fertility in Norse mythology, Freyja was the first cat lady. She is depicted in stories as riding a chariot that was drawn by cats.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "5894af975cdc7400113ef7f9",
            "text": "The technical term for a cat’s hairball is a bezoar.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "5b0c5e3e7ab3c50014df65fe",
            "text": "People who own cats have on average 2.1 pets per household, where dog owners have about 1.6.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "58e00a000aac31001185ed15",
            "text": "Female cats are typically right-pawed while male cats are typically left-pawed.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "58e00a1a0aac31001185ed18",
            "text": "Cats and humans have nearly identical sections of the brain that control emotion.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "58e0088b0aac31001185ed09",
            "text": "The world's largest cat measured 48.5 inches long.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 6,
            "userUpvoted": null
        },
        {
            "_id": "58e00b4d0aac31001185ed22",
            "text": "Original kitty litter was made out of sand but it was replaced by more absorbent clay in 1948.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "58e00a7e0aac31001185ed19",
            "text": "A cat's cerebral cortex (the part of the brain in charge of cognitive information processing) has 300 million neurons, compared with a dog's 160 million.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "58e00b1f0aac31001185ed1e",
            "text": "In the 15th century, Pope Innocent VIII began ordering the killing of cats, pronouncing them demonic.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "5b01a447c6914f0014cc9a30",
            "text": "The special sensory organ called the Jacobson's organ allows a cat to have 14 times the sense of smell of a human. It consists of two fluid-filled sacs that connect to the cat's nasal cavity and is located on the roof of their mouth behind their teeth.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "5b1b4055841d9700146158d3",
            "text": "Scottish sailer Alexander Selkirk once survived for 4 years on a deserted island thanks to feral cats that protected him from large rats during the night.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "58e00b2b0aac31001185ed1f",
            "text": "A cat has five toes on his front paws, and four on the back, unless he's a polydactyl.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "58e00be30aac31001185edfe",
            "text": "Cats use their whiskers to detect if they can fit through a space.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "58f89cff11658e00113ddd26",
            "text": "Cats love to eat olives or for that matter anything preserved in brine.",
            "type": "cat",
            "user": {
                "_id": "58f89c8d11658e00113ddd24",
                "name": {
                    "first": "Malvika",
                    "last": "Tewari"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "599f89639a11040c4a163440",
            "text": "Here is a video of some cats in zero gravity. youtu.be/O9XtK6R1QAk",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "5955792c7b77520020799431",
            "text": "Cats \"knead\" because of seperation from their mothers",
            "type": "cat",
            "user": {
                "_id": "595579027b77520020799430",
                "name": {
                    "first": "Is It Still Memes That",
                    "last": "Make You Sweat?"
                }
            },
            "upvotes": 5,
            "userUpvoted": null
        },
        {
            "_id": "590c752b5363e000200d5141",
            "text": "Kangaroos can't hop backwards",
            "type": "cat",
            "user": {
                "_id": "590c74045363e000200d5140",
                "name": {
                    "first": "Hampton",
                    "last": "McGrath"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "59951d5ef2db18002031693c",
            "text": "America’s cats, including housecats that adventure outdoors and feral cats, kill between 1.3 billion and 4.0 billion birds in a year.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "58e008800aac31001185ed07",
            "text": "Wikipedia has a recording of a cat meowing, because why not?",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "5b3bd7d24cf4e10014bfd199",
            "text": "The myth that a cat has nine lives comes from their ability to jump and land from high places. The number 9 is believed by some to originate from William Shakespeare's Romeo and Juliet: \"A cat has nine lives. For three he plays, for three he strays, and for the last three he stays.\"",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "5b453e380fd3a600147f32f3",
            "text": "Exposure to UV light with hairless or partially-hairless cats can result in sunburn, even during cloudy or shady conditions. If your cat risks overexposure, consider applying sunscreen daily.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "58e007db0aac31001185ecf7",
            "text": "There are cats who have survived falls from over 32 stories (320 meters) onto concrete.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "59a60ba66acf530020f35873",
            "text": "Most cats don't like water because their coats do not insulate them well enough.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "5a4d76916ef087002174c28b",
            "text": "A cat’s nose pad is ridged with a unique pattern, just like the fingerprint of a human.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "58e009790aac31001185ed14",
            "text": "The technical term for \"hairball\" is \"bezoar.\"",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "58e00a090aac31001185ed16",
            "text": "Cats make more than 100 different sounds whereas dogs make around 10.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "58e00a120aac31001185ed17",
            "text": "A cat's brain is 90% similar to a human's — more similar than to a dog's.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "5974fb4dfedacb0020b5b4cc",
            "text": "Cats can survive falls from up to 65 feet or more.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "5b1b4014841d9700146158d0",
            "text": "In 1879, Belgium unsuccessfully tried to use cats to deliver mail.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 4,
            "userUpvoted": null
        },
        {
            "_id": "5a038dae8e3dbc001f719792",
            "text": "Cucumbers look enough like a snake to cause a cat's instinctive fear of snakes to kick in, causing it to panic and flee.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 3,
            "userUpvoted": null
        },
        {
            "_id": "5a4bfbbab0810f0021748b91",
            "text": "Lil' Bunny Sue Roux is a cat who was born with no front legs, and walks upright like a kangaroo. https://www.instagram.com/lilbunnysueroux",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 3,
            "userUpvoted": null
        },
        {
            "_id": "590b9d90229d260020af0b06",
            "text": "Evidence suggests domesticated cats have been around since 3600 B.C., 2,000 years before Egypt's pharaohs.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58923f2fc3878c0011784c79",
            "text": "I don't know anything about cats.",
            "type": "cat",
            "user": {
                "_id": "5887e9f65c873e001103688d",
                "name": {
                    "first": "Jackson",
                    "last": "Sippe"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "59cd7a97c828120020f7d3a1",
            "text": "Since cats treat us like cats and depend on us for things like food, water, and opening the door to let them out, they do recognize, that we are in some way in charge — the “big cat” in the shared territory. As territorial animals, our cats are constantly wondering why we’re not doing other cat things that the big cat would normally do in their territory. In fact, the “let me in, let me out, let me in” phenomenon is a good example. The bigger cat ostensibly rules the territory and therefore should be the one patrolling and marking it with pee so other cats stay away. But since humans don’t do this, indoor-outdoor cats reluctantly take on the role themselves. The apparent neuroticism of cats wanting to go outside every five minutes only to be let right back in is funny to us because it seems so silly and unnecessary. But to the cats, it’s very necessary (and frustrating) to cover for their dumb pals.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e007cc0aac31001185ecf5",
            "text": "Cats are the most popular pet in the United States: There are 88 million pet cats and 74 million dogs.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e008510aac31001185ecfe",
            "text": "In tigers and tabbies, the middle of the tongue is covered in backward-pointing spines, used for breaking off and gripping meat.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e008c50aac31001185ed0e",
            "text": "The world's richest cat is worth $13 million after his human passed away and left her fortune to him.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e008630aac31001185ed01",
            "text": "When cats grimace, they are usually \"taste-scenting.\" They have an extra organ that, with some breathing control, allows the cats to taste-sense the air.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e008a30aac31001185ed0b",
            "text": "A cat's purr may be a form of self-healing, as it can be a sign of nervousness as well as contentment.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e008d00aac31001185ed0f",
            "text": "Your cat recognizes your voice but just acts too cool to care (probably because they are).",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00a850aac31001185ed1a",
            "text": "Cats have a longer-term memory than dogs, especially when they learn by actually doing rather than simply seeing.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00b3a0aac31001185ed20",
            "text": "Polydactyl cats are also referred to as \"Hemingway cats\" because the author was so fond of them.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00b5f0aac31001185ed24",
            "text": "When asked if her husband had any hobbies, Mary Todd Lincoln is said to have replied \"cats.\"",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00bdb0aac31001185edfd",
            "text": "Cats can change their meow to manipulate a human. They often imitate a human baby when they need food, for example.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00b820aac31001185edf7",
            "text": "One legend claims that cats were created when a lion on Noah's Ark sneezed and two kittens came out.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "591d9bce227c1a0020d26827",
            "text": "In Korea and Japan, there is a Cat Cafe where you can go to drink coffee and hang out with cats for hours.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00ba00aac31001185edfa",
            "text": "When cats leave their poop uncovered, it is a sign of aggression to let you know they don't fear you.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "591d9bab227c1a0020d26825",
            "text": "Owning a cat can reduce the risk of heart attacks and strokes by more than a third, researchers found.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5a4d75a38827521790281b99",
            "text": "A cat can’t climb head first down a tree because every claw on a cat’s paw points the same way. To get down from a tree, a cat must back down.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5a4d766c6ef087002174c288",
            "text": "Some Siamese cats appear cross-eyed because the nerves from the left side of the brain go to mostly the right eye and the nerves from the right side of the brain go mostly to the left eye. This causes some double vision, which the cat tries to correct by “crossing” its eyes.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5a4d776e6ef087002174c291",
            "text": "The claws on the cat’s back paws aren’t as sharp as the claws on the front paws because the claws in the back don’t retract and, consequently, become worn.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b49110d0508220014ccfe91",
            "text": "Issac Newton decided to invent the cat flap because his own cat, Spithead, kept opening the door and spoiling his light experiments.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e008780aac31001185ed05",
            "text": "Owning a cat can reduce the risk of stroke and heart attack by a third.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b1b3f6c841d9700146158cd",
            "text": "The Indiana State Prison allows prisoners to adopt a cat and keep it in their cell. They are meant to improve the mood of the prisoners.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b1b3feb841d9700146158cf",
            "text": "In Islam, cats are revered for their cleanliness. Muhammad is reported to have said that \"a love of cats is an aspect of faith\".",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b1b4065841d9700146158d4",
            "text": "A cat named Emmy lived aboard the RMS Empress of Ireland and she never missed a voyage. On May 28,1914, however, she refused to board. The ship left without her and then sank the following day.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b1b408a841d9700146158d5",
            "text": "Domestic cats will try not to drink from a water bowl that is next to their food. This is because in the wild, water next to their kill could be contaminated.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b3d8e4960d3890713ca39a8",
            "text": "A Chinese cat named Baidianr (meaning \"white spot\") had a unique ability to choose World Cup winners. He predicted the winner of the soccer competition 6 years in a row, before he died on June 2, 2018, just before the event ended.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b4909af0508220014ccfe8a",
            "text": "Cats have a layer called the tapetum lucidum just behind their retina which reflects light inside the eye, helping it capture more light. This reflected light is the glow you see when taking a photo of a cat with the flash on.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e009390aac31001185ed10",
            "text": "Most cats are lactose intolerant, and milk can cause painful stomach cramps and diarrhea. It's best to forego the milk and just give your cat the standard: clean, cool drinking water.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5c6a105dc2d7a200140f69a0",
            "text": "When cats run, their backs contract and extend to give them maximum stride. Their shoulder blades are not attached with bone, but with muscle, and this gives a cat even greater extension and speed.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b1b40cc841d9700146158d7",
            "text": "In most US states, declawing cats is legal but in the European Union it is not.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "59d297b7c6671e0020957eb9",
            "text": "Kittens sleep so much because the growth hormone is only released when they sleep.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5a36ec5fae877e0021ed79f5",
            "text": "It has been estimated that a cat yawns on the average of 109,500 times in his life.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00b8b0aac31001185edf8",
            "text": "A cat can jump up to six times its length.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "58e00c080aac31001185ee01",
            "text": "Cats only sweat through their foot pads.",
            "type": "cat",
            "user": {
                "_id": "58e007480aac31001185ecef",
                "name": {
                    "first": "Kasimir",
                    "last": "Schulz"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5b4911e60508220014ccfe95",
            "text": "A female cat is called a “molly” or a “queen”.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "596e4989b863f300203102f4",
            "text": "Black cats are less likely to be adopted because of their \"appearance\".",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "59a60bae6acf530020f35875",
            "text": "Cats were mythic symbols of divinity in ancient Egypt.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5a038d5a8e3dbc001f719791",
            "text": "Cats have 38 chromosomes in each zygote cell.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5a4d76516ef087002174c287",
            "text": "If they have ample water, cats can tolerate temperatures up to 133 °F.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "5c471b30a99c3f00140fe4c5",
            "text": "The collective noun for kittens is a \"kindle\".",
            "type": "cat",
            "user": {
                "_id": "5c471b15a99c3f00140fe4c4",
                "name": {
                    "first": "Beth",
                    "last": "Rothwell"
                }
            },
            "upvotes": 2,
            "userUpvoted": null
        },
        {
            "_id": "59664b1f474ba80020ef8592",
            "text": "Your cat's instincts tell her that a paperweight or knickknack could turn out to be a mouse. Her poking paw would send it scurrying, giving her a good game. This is probably why cats always seem to be knocking the glasses off your counter tops!",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a026058134ec2001f032f92",
            "text": "For a cat at rest, the average heart rate usually is between 150 and 180 bpm, more than twice that of a human, which averages 70 bpm.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a026092134ec2001f032f95",
            "text": "Compared to other felines, domestic cats have narrowly spaced canine teeth, adapted to their preferred prey of small rodents.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a0260d1134ec2001f032f98",
            "text": "Cats, like dogs, are digitigrades. They walk directly on their toes, with the bones of their feet making up the lower part of the visible leg.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a038c178e3dbc001f71978e",
            "text": "A cat's kidneys are so efficient, it can survive on a diet consisting only of meat, with no additional water, and can even rehydrate by drinking seawater.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a038c628e3dbc001f71978f",
            "text": "Most breeds of cat have a noted fondness for settling in high places, or perching. In the wild, a higher place may serve as a concealed site from which to hunt.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a038cdf8e3dbc001f719790",
            "text": "The ability of a cat to reflexively twist its body and balance itself during a fall is known as the \"cat righting reflex\".",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a038e188e3dbc001f719793",
            "text": "The cat's tongue has backwards-facing spines about 500 μm long, which are called papillae. These contain keratin which makes them rigid so the papillae act like a hairbrush.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a21a9fb425e43002132f045",
            "text": "Hank the Cat was a Maine Coon feline that was put up as a joke candidate in the 2012 United States Senate election in Virginia, a feat which gained international coverage after Hank reportedly came third behind the two major candidates, including Vice Presidential candidate Tim Kaine.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a456246255f4b0021f54c04",
            "text": "A cat can die from essential oils",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4aab2c2c99ee00219e11c4",
            "text": "Hearing is the strongest of cat's senses: They can hear sounds as high as 64 kHz — compared with humans, who can hear only as high as 20 kHz.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4aab322c99ee00219e11c5",
            "text": "Cats have free-floating clavicle bones that attach their shoulders to their forelimbs, which allows them to squeeze through very small spaces.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4bfcd3b0810f0021748b93",
            "text": "Colonel Meow, a Himalayan-Persian mix who became famous on social media websites for his extremely long fur and scowling face, holds the Guinness world record for longest hair on a cat (nine inches).",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4bfdf8b0810f0021748b94",
            "text": "Towser \"The Mouser\" of Glenturret Distillery in Crieff, Scotland, holds the Guinness World Record for the most mice caught (28,899).",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d75ac8827521790281b9a",
            "text": "The cat who holds the record for the longest non-fatal fall is Andy. He fell from the 16th floor of an apartment building (about 200 ft/.06 km) and survived.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d76106ef087002174c285",
            "text": "A cat’s eyesight is both better and worse than humans. It is better because cats can see in much dimmer light and they have a wider peripheral view. It’s worse because they don’t see color as well as humans do. Scientists believe grass appears red to cats.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d76736ef087002174c289",
            "text": "The lightest cat on record is a blue point Himalayan called Tinker Toy, who weighed 1 pound, 6 ounces (616 g). Tinker Toy was 2.75 inches (7 cm) tall and 7.5 inches (19 cm) long.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d76b16ef087002174c28c",
            "text": "The first cartoon cat was Felix the Cat in 1919. In 1940, Tom and Jerry starred in the first theatrical cartoon “Puss Gets the Boot.” In 1981 Andrew Lloyd Weber created the musical Cats, based on T.S. Eliot’s Old Possum’s Book of Practical Cats.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d79016ef087002174c293",
            "text": "The most traveled cat is Hamlet, who escaped from his carrier while on a flight. He hid for seven weeks behind a panel on the airplane. By the time he was discovered, he had traveled nearly 373,000 miles (600,000 km).",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d79fb6ef087002174c295",
            "text": "The little tufts of hair in a cat’s ear that help keep out dirt direct sounds into the ear, and insulate the ears are called \"ear furnishings.\"",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b085f85be3157001432164f",
            "text": "The Australian Wildlife Conservancy completed a 44km cat-proof fence in 2018 to prevent feral cats from entering the Newhaven wildlife sanctuary, who kill about a million native birds every night across Australia and have caused the extinction of 20 native species.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59a60baa6acf530020f35874",
            "text": "Black cats are bad luck in the United States, but they are good luck in the United Kingdom and Australia.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a026087134ec2001f032f94",
            "text": "The cat skull is unusual among mammals in having very large eye sockets and a powerful and specialized jaw.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4aab132c99ee00219e11c2",
            "text": "Cats have scent glands along their tail, their forehead, lips, chin, and the underside of their front paws.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4aab372c99ee00219e11c6",
            "text": "The french tuxedo kitty, Félix, aka \"Astrocat\", was the first cat to go to space. She survived the trip.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b0ecc7287c6b21e6fafdf01",
            "text": "A male cat is called a tom.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b3fd8841d9700146158ce",
            "text": "Thank to an extremely efficient pair of kidneys, cats can hydrate themselves by drinking salt water.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b183fea64c2b20014b38f52",
            "text": "A cats whiskers are the exact width of their body.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b3f48841d9700146158cb",
            "text": "At night, Disneyland is overrun by cats. The theme park feeds them and takes care of them though, because they keep the rodent population in check.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b3f56841d9700146158cc",
            "text": "Cats lack antibodies against dog blood so they can only receive it via a transfusion once. The second time would kill them.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b4022841d9700146158d1",
            "text": "Oftentimes shelters won't let black cats be adopted around Halloween out of a fear that they may be sacrificed.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b4039841d9700146158d2",
            "text": "When cats bring dead animals back to their humans, they are \"teaching them to hunt\" as they would with a younger cat.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b4241841d9700146158da",
            "text": "Cat fanciers bred and exhibited Maus in Europe until World War II, when attention toward the cat waned and it nearly went extinct.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b1b455f841d9700146158db",
            "text": "The Egyptian Mau breed was saved from extinciton when Russian princess Natalie Trubetskaya was given a Mau that was imported from the Middle East. When she emigrated to New York City in 1956, she brought along three Mau cats. She used these kitties to establish the Fatima Egyptian Mau cattery, which produced many of the ancestors of today’s Egyptian Maus in America.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b4911770508220014ccfe93",
            "text": "Unlike kittens, adult cats don’t release any particular key hormones during sleep. They snooze all day just because they can. :)",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b4912650508220014ccfe98",
            "text": "Russian scientists discovered in the 1930s that Siamese kittens kept in very warm rooms didn't develop the breed's signature dark patches.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b4912000508220014ccfe96",
            "text": "Cats have a third eyelid called a “haw”. It’s generally only visible when they’re unwell.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b4912320508220014ccfe97",
            "text": "In the original Italian version of Cinderella, the benevolent fairy godmother figure was a cat.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "58e008450aac31001185ecfd",
            "text": "A cat was mayor of Talkeetna, Alaska, for 20 years. His name is Stubbs, and he died on July 23, 2017.",
            "type": "cat",
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3551458e0b8d00148d45e3",
            "text": "Many people think that the Turkish Van is simply a color variation of the Turkish Angora, but in fact, they are distinct breeds that developed in different parts of Turkey.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3551d48e0b8d00148d45e4",
            "text": "The Bengal is the result of crossbreeding between domestic cats and Asian leopard cats, and its name is derived from the scientific name for the Asian leopard cat (Felis bengalensis).",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3552058e0b8d00148d45e5",
            "text": "Despite its traditionally wild roots, the Bengal is domestic and will gladly make itself in the indoor \"jungle\" of your home.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3552738e0b8d00148d45e6",
            "text": "Cat's cannot see in total darkness, however their vision is much better than a human's in semidarkness because their retinas are much more sensitive to light.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3bbb236bd7ea00141eff53",
            "text": "The gene that codes orange fur is on the X chromosome, so female cats must inherit two orange genes to end up with orange fur, while male cats only need one.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c475c86a99c3f00140fe4cf",
            "text": "The Manx hails from the Isle of Man in the Irish Sea, and many Manx are tailless, a condition believed to have been caused by a dominant genetic mutation that spread among the island's cat population.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c489117e4f6130014c987b9",
            "text": "Leonardo da Vinci created a series of drawings titled \"Study of Cat Movements and Positions\", which consists of more than twenty drawings of cats and lions lying a sleep, sitting, playing, and fighting.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c60982ce549020014533033",
            "text": "The Chartreux is distinguished by a woolly blue-grey coat, a robust body poised over small paws, and full cheeks with a mouth that always appear to be smiling.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609852e549020014533036",
            "text": "While Chartreux cats aren't very vocal, they are sociable and communicate through eye contact and body language.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c60999ae549020014533038",
            "text": "Cats love playing with yarn, ribbons, and fishing-rode style toys. However, cats should not be left alone with anything that they could get tangled in.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609a02e549020014533039",
            "text": "All Scottish Folds descended from Susie, a white barn cat discovered in Scotland in the early 1960s. Susie sported the breed's folded ears – the result of a genetic mutation – and passed on the trait through breeding.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609a90e54902001453303a",
            "text": "Mark Twain was undeniably an ailurophile. He had up to 19 cats at one time and gave them such memorable names as Beelzebub, Buffalo Bill, and Soapy Sal.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c69c35cc2d7a200140f67ea",
            "text": "If you really want to treat your cat, get some lactose-free milk at the grocery store and offer some to the kitty.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c69c47dc2d7a200140f67ee",
            "text": "Abraham Lincoln, being the ailurophile that he was, once rescued three stray kittens and ensured that they were fed and found homes.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c69c4eec2d7a200140f67ef",
            "text": "The Sphynx was originally known as the Canadian Hairless Cat. The breed originated in Toronto, and was renamed to Sphynx, a nod to the famous limestone sculpture in the Egyptian Desert.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c6a104fc2d7a200140f699f",
            "text": "A cat’s spine can rotate more than the spines of most other animals, and their vertebrae have a special, flexible, elastic cushioning on the disks, which gives it even more flexibility.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c72d9b651021f001415f00c",
            "text": "Cats have been domesticated for around 4,000 years. While they were once valued for their hunting abilities, they are now valued for their companionship and loving behavior.",
            "type": "cat",
            "user": {
                "_id": "5c6fd96df4256a001498a73f",
                "name": {
                    "first": "Hedvig",
                    "last": "Annersten"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c72dbd851021f001415f010",
            "text": "The most popular pedigreed cat in North America is the Persian cat, followed by the Main Coon and the Siamese cat.",
            "type": "cat",
            "user": {
                "_id": "5c72dbb751021f001415f00f",
                "name": {
                    "first": "Hedvig",
                    "last": "Annersten"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38afd60f1c57001592f127",
            "type": "cat",
            "text": "In the early 1980s, a Chinchilla Persian cat named Jemari Sanquist mated with a Lilac Burmese named Bambino Lilac Fabergé, producing the Burmilla breed.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b0310f1c57001592f128",
            "type": "cat",
            "text": "Scratching allows a cat to shed the outer layers of her claws, mark her territory, and stretch her body. Rather than discouraging the scratching behavior altogether, try redirecting your cat to a few scratching posts placed strategically around your home.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b0c40f1c57001592f129",
            "type": "cat",
            "text": "The elegant Balinese is a longhaired variety of the Siamese, and like the Siamese, this stunning breed is sociable and intelligent. The breed was named for the grace of the dancers on the island of Bali in Indonesia.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b16c0f1c57001592f12b",
            "type": "cat",
            "text": "A large number of cats inhabit the Largo di Torre Argentina, an ancient Roman temple site near where Caesar was killed. Local volunteers care for the cats.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b2270f1c57001592f12d",
            "type": "cat",
            "text": "Among the British government officials who keep things running smoothly at 10 Downing Street is Larry, a cat that holds the distinguished position of Chief Mouser. Larry's duties, according to the U.K. government, include \"greeting guests\", \"testing antique furniture for napping quality\", and \"contemplating a solution to the mouse occupancy of the house.\".",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b27b0f1c57001592f12f",
            "type": "cat",
            "text": "The Norwegian Forest Cat is called \"skogcatt\" in its homeland of Norway and plays a role in the Norwegian fairy tales and legends.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b29f0f1c57001592f130",
            "type": "cat",
            "text": "The Abyssinian, the Siamese, and the American Shorthair were crossbred to produce the Ocicat breed.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b6280f1c57001592f133",
            "type": "cat",
            "text": "Some animal shelters require kittens be adopted in pairs to ensure they came from the same litter.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b64e0f1c57001592f134",
            "type": "cat",
            "text": "The Havana Brown breed hails from England, where it was created by crossbreeding Siamese cats with domestic black cats.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b69a0f1c57001592f135",
            "type": "cat",
            "text": "While we don't know the exact origins of the Russian Blue, it's commonly believed the breed comes from the Archangel Isles in northwestern Russia—the region's cold climate would certainly explain the breed's plush coat.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b7170f1c57001592f137",
            "type": "cat",
            "text": "The wild-looking but domestic Ocicat is named for its resemblance to the ocelot, a small South American wild cat.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38bd180f1c57001592f154",
            "type": "cat",
            "text": "Cats are among only a few animals that walk by moving their two right legs one after another and then their two left legs, rather than moving diagonal limbs simultaneously. Giraffes and camels also have this quality.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38be200f1c57001592f157",
            "type": "cat",
            "text": "The Turkish Van is often called the \"swimming cat\" because they are naturals in the water, thanks in part to their uniquely textured, water-resistant coat.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5daa192179186100154250c4",
            "type": "cat",
            "text": "GitHub is a cloud source version control system where its mascot is an octocat, an anthropomorphized cat with five tentacles.",
            "user": {
                "_id": "5daa103779186100154250bd",
                "name": {
                    "first": "Daniel",
                    "last": "Carvalho"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5de780600013130015a3ccaf",
            "type": "cat",
            "text": "About one in two cats respond to catnip, and only develop a sensitivity to it at around 3 to 6 months of age.",
            "user": {
                "_id": "5de681752c455b00153df068",
                "name": {
                    "first": "Leonard",
                    "last": "Wohlfarth"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "596f4f50a8d3440020e2d77d",
            "text": "Due to the controversy, though loved by most, the Kashmir is overlooked by many cat fanciers.",
            "type": "cat",
            "user": {
                "_id": "596ea14ed4d9720020401f7b",
                "name": {
                    "first": "Kenny",
                    "last": "Corsig"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59a60b9e6acf530020f35871",
            "text": "The Egyptian Mau is the oldest breed of cat, and is the fastest pedigreed cat.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a038bb98e3dbc001f71978d",
            "text": "The domestic cat (Felis catus) is a small, typically furry, carnivorous mammal.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4bfc91b0810f0021748b92",
            "text": "Blackie became the richest cat in history when he inherited 15 million British Pounds.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d75e46ef087002174c284",
            "text": "Cats have about 130,000 hairs per square inch (20,155 hairs per square centimeter).",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d767c6ef087002174c28a",
            "text": "Many Egyptians worshipped the goddess Bast, who had a woman’s body and a cat’s head.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d77446ef087002174c290",
            "text": "Approximately 1/3 of cat owners think their pets are able to read their minds.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c69c3ecc2d7a200140f67eb",
            "text": "The average female housecat could give birth to ove 100 kittens in her lifetime.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c69c422c2d7a200140f67ed",
            "text": "Cats don't go through menopause, so they can continue to breed into their senior years.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c470572a99c3f00140fe4bd",
            "text": "Cats like being brushed by their owners, because it reminds them of their mother.",
            "type": "cat",
            "user": {
                "_id": "5c470492a99c3f00140fe4bc",
                "name": {
                    "first": "David",
                    "last": "Gippner"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c475ca8a99c3f00140fe4d0",
            "text": "Loyal, playful, and alert, Manx are considered to be more \"doglike\" than other cats.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609758e54902001453302c",
            "text": "According to the American Society for the Prevention of Cruelty of Animals, newborn kittens get all the nutrition they need duing the first four weeks of life fom their mother's milk. If you are taking care of a kitten without its mother, or if the mother isn't producing enough milk, you can feed the kitten a commercial milk substitute.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609776e54902001453302d",
            "text": "When kittens ages to weeks five and six, they should start making the transition to dry food.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c6097eee549020014533030",
            "text": "Legend holds that the Chartreux once lived alongside the Carthusian monks of France.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b1290f1c57001592f12a",
            "type": "cat",
            "text": "Bobtail cats owe their shortened tails to a natural genetic mutation that has appeared in cats across time and in various regions of the world. The American Bobtail can be traced back to Yodi, a cat with the mutation that was found in Arizona in the 1960s. Yodi passed the genetic quirk on to his kittens, thus creating a new breed.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b6f10f1c57001592f136",
            "type": "cat",
            "text": "Traveling with cats can be stressful for everyone involved. Whether you're taking a kitty to the vet, or on a road trip, or on a flight, there are things you can do to help her stay relaxed in the carrier. Pet shops sell calming treats and sprays that can reduce a cat's anxiety. It might also help to put a beloved toy or a blanket in the carrier.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d9c556168a764001553b382",
            "type": "cat",
            "text": "A cat has 244 bones in its entire body—even more than a human, who only has 206 bones.",
            "user": {
                "_id": "5d84ce8abf541a0015b5febb",
                "name": {
                    "first": "Veronika",
                    "last": "Koval"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59669484bf604b00205c20e3",
            "text": "The fear of cats is called \"Ailurophobia\"",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59a60b896acf530020f3586d",
            "text": "Cat owners are 25% likely to pick George Harrison as their favorite Beatle.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59a60b936acf530020f3586f",
            "text": "Only 11.5% of people consider themselves \"cat people\".",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59a60b996acf530020f35870",
            "text": "\"Cat people\" are 11% more likely to be introverted than others.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59b15b18d6eb960020d6767a",
            "text": "The place where Julius Caesar was murdered is now a cat sanctuary.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59ceab6d5c87bf0020b94e0a",
            "text": "The Bombay cat breed was developed to resemble a miniature panther.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "59d297abc6671e0020957eb8",
            "text": "Cats use their whiskers to judge whether they’ll fit through a space.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a038fba8e3dbc001f719794",
            "text": "Among domestic cats, males are more likely to fight than females.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a12460add20f9001fb45060",
            "text": "The softest part of a cat is most definitely its cheek area.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a36eb68ae877e0021ed79f3",
            "text": "When a cat yawns, it's mouth opens so wide that you can count every tooth.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4aab252c99ee00219e11c3",
            "text": "Cats can move their ears 180 degrees.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d78136ef087002174c292",
            "text": "Like humans, cats tend to favor one paw over another.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5a4d79496ef087002174c294",
            "text": "Approximately 40,000 people are bitten by cats in the U.S. annually.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5b4911340508220014ccfe92",
            "text": "Kittens start to dream when they’re about a week old.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609ae8e54902001453303b",
            "text": "Approximately 40% of cats have a dominant paw. The rest are ambidextrous.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c69c409c2d7a200140f67ec",
            "text": "Cats can have three litters a year, or approximately 12 kittens.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c35531e8e0b8d00148d45e8",
            "text": "If you grow your own catnip, here's how to prepare it for kitty's enjoyment: Cut several stalks of the plant from the base. Hang them upside down in a dark and dry room for several weeks. Then cut the catnip into small pieces, rub some on your cat's favorite toys or scratching post, and let the games begin!",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3bba466bd7ea00141eff4f",
            "text": "Approximately 80% of orange tabbies are male.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c3bbab76bd7ea00141eff50",
            "text": "If you need to trim a cat's nails, choose a moment when he is relaxed. Massage his paws gently before clipping. Make sure you're using a pair of clippers specifically for cat's nails, not human nail clippers. Avoid cutting the nail too close to the \"quick,\" the pink part of a cat's nail, which is full of blood vessels and nerves.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c609945e549020014533037",
            "text": "Do you ever wake up in the middle of the night and find your cat sleeping on your head? Cat behavioral experts believe that cats are drawn to the warmth and the familiar scent of the owner. Resting on your head also keeps kitty safe from your arms and legs if you toss and turn through the night.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c7408a14dd87d001490f02b",
            "text": "The cheetah is the only cat that doesn't have retractable claws.",
            "type": "cat",
            "user": {
                "_id": "5c72e94751021f001415f012",
                "name": {
                    "first": "Tests",
                    "last": "HiQ"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c75f56272681400147b988a",
            "text": "There are only two escalators in the state of Wyoming.",
            "type": "cat",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c84248f731a60001540a193",
            "text": "When a cat lifts its butt in the air when scratched, it is a sign that your feline is giving your pats an A+. However, if you have a female kitty who hasn't been spayed, \"elevator butt\" could be a sign that she's ready to mate. The proper name for this stance is lordosis, and cats adopt it when they're in heat.",
            "type": "cat",
            "user": {
                "_id": "5c7da4bd70008708fb17c88f",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5c87d03dec1e5c0aa37e0a6b",
            "type": "cat",
            "text": "On October 24, 1963, a tuxedo cat named Félicette entered outer space aboard a French Véronique AG1 rocket and made feline history. Félicette returned from the 15-minute trip in once piece and earned the praise of French scientists, who said she made \"a valuable contribution to research.\".",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5cd42b77cfdf230015bd7a45",
            "text": "Cats can sense distress from a human being.",
            "type": "cat",
            "user": {
                "_id": "5cd42b40cfdf230015bd7a44",
                "name": {
                    "first": "Chloe",
                    "last": "Simmons"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5cd86b0e1dc6d50015ec2f08",
            "text": "Norwegian Forest Cats are usually very people friendly.",
            "type": "cat",
            "user": {
                "_id": "5cd86adb1dc6d50015ec2f07",
                "name": {
                    "first": "Shay",
                    "last": "Zhang"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b1d40f1c57001592f12c",
            "type": "cat",
            "text": "During the heat of the summer, set out an extra bowl of water and place ice cubes in it to keep it cold and refreshing. Cats love to lie on cool surfaces when it's hot—if you don't have an tile in your home, consider buying a few ceramic tiles from a home improvement store for your cat to rest on.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b2510f1c57001592f12e",
            "type": "cat",
            "text": "Courgars are the largest wild cats that can purr.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b5b50f1c57001592f131",
            "type": "cat",
            "text": "Andy Warhol amassed quite the collection of feline friends during his lifetime, beginning with a Siamese cat named Hester that was given to him by actress Gloria Swanson. By breeding Hester with a cat named Sam, Warhol ended up with multiple litters of kittens, at one point housing 25 cats in his Upper East Side townhouse in NYC.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38b6090f1c57001592f132",
            "type": "cat",
            "text": "While two kittens might sound like double trouble, adopting two at a time can actually make your job easier. Two cans can keep each other company, reducing their need for socialization, and they will expend energy by playing together. Kittens in the same litter often form tight sibling bonds.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38bb440f1c57001592f14c",
            "type": "cat",
            "text": "It's important for cats to have regular ear exams—this is something you can do at home! Gently fold back the ears and look into the ear canal. The inner ear should be pale pink with little to no earwax. If you notice redness, swelling, discharge, or a lot of earwax, it's time to see a veterinarian.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d38bb910f1c57001592f14e",
            "type": "cat",
            "text": "Dr. Seuss wrote The Cat in the Hat using only 236 words.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5d9d4ae168a764001553b388",
            "type": "cat",
            "text": "Cats conserve energy by sleeping for an average of 13 to 14 hours a day.",
            "user": {
                "_id": "5d9d4a4468a764001553b387",
                "name": {
                    "first": "Erick",
                    "last": "Vazquez"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5e83ff18f53272001515690c",
            "type": "cat",
            "text": "Cats are capable of walking very precisely because, like all felines, they directly register; that is, they place each hind paw (almost) directly in the print of the corresponding fore paw, minimizing noise and visible tracks. This also provides sure footing for their hind paws when they navigate rough terrain.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 1,
            "userUpvoted": null
        },
        {
            "_id": "5e10d7841c78ab0015bc5b15",
            "type": "cat",
            "text": "Some cats do not eat fish.",
            "user": {
                "_id": "5e10d6e51c78ab0015bc5b14",
                "name": {
                    "first": "Max",
                    "last": "Bilohatnyuk"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5e80e7cc2d4b850015003072",
            "type": "cat",
            "text": "Cats can climb on trees faster than squirels.",
            "user": {
                "_id": "5e80e6c72d4b85001500306e",
                "name": {
                    "first": "Łukasz",
                    "last": "Wiktorko"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5e19da391fd6150015fa7356",
            "type": "cat",
            "text": "\"Cats can hear the ultrasonic noises that rodents and dolphins make to communicate.\".",
            "user": {
                "_id": "5e19d99e1fd6150015fa7353",
                "name": {
                    "first": "Crystal Gale",
                    "last": "Scott"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5e1efba858449a0015ce4783",
            "type": "cat",
            "text": "\"A house cat is faster than Usain Bolt.\".",
            "user": {
                "_id": "5e1efb5958449a0015ce4781",
                "name": {
                    "first": "oyaji",
                    "last": "55"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5eafdaf354ad960017b3703d",
            "type": "cat",
            "text": "Yjyyu.",
            "user": {
                "_id": "5eafdad954ad960017b37038",
                "name": {
                    "first": "Lulu",
                    "last": "Dauphin"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ebbf5dd8046d00017776020",
            "type": "cat",
            "text": "Cats are fat, sometimes.",
            "user": {
                "_id": "5ebbf5cd8046d0001777601f",
                "name": {
                    "first": "George",
                    "last": "Miguel"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ec4aad30c796a00174d7b26",
            "type": "cat",
            "text": "Sss.",
            "user": {
                "_id": "5ec4a7d60c796a00174d7b25",
                "name": {
                    "first": "Minh",
                    "last": "Nguyễn"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ec93d1de11bba0017c67e19",
            "type": "cat",
            "text": "In a sense, cats can see in the dark.",
            "user": {
                "_id": "5ec93c89e11bba0017c67e18",
                "name": {
                    "first": "Mandy",
                    "last": "c"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ecb032ab0d92c0017cab214",
            "type": "cat",
            "text": "Cats are the best pets.",
            "user": {
                "_id": "5ecb02e4b0d92c0017cab213",
                "name": {
                    "first": "Victor Manuel",
                    "last": "Díaz de La Gasca"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ecb0333b0d92c0017cab215",
            "type": "cat",
            "text": "Hello cats.",
            "user": {
                "_id": "5ecb02e4b0d92c0017cab213",
                "name": {
                    "first": "Victor Manuel",
                    "last": "Díaz de La Gasca"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ecdda946253f20017f53ec5",
            "type": "cat",
            "text": "Cats love womans, dog loves mans.",
            "user": {
                "_id": "5ecdda686253f20017f53ec4",
                "name": {
                    "first": "Jorge Alberto",
                    "last": "Gil Rendon"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ece7253a0d2ec00178ae28c",
            "type": "cat",
            "text": "Cat is cat.",
            "user": {
                "_id": "5eccdd64ba0a92001760e263",
                "name": {
                    "first": "Paulius",
                    "last": "Bertašius"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ece9fa9a0d2ec00178ae28e",
            "type": "cat",
            "text": "Z.",
            "user": {
                "_id": "5eccdd64ba0a92001760e263",
                "name": {
                    "first": "Paulius",
                    "last": "Bertašius"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ed11e643c15f700172e3856",
            "type": "cat",
            "text": "Los gatos tienen más huesos que los seres humanos, nos ganan por 24.",
            "user": {
                "_id": "5ed11e353c15f700172e3855",
                "name": {
                    "first": "Luciano",
                    "last": "Garrido Sepulveda"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5eddfb501ed5570017aaf3b9",
            "type": "cat",
            "text": "Take a try.",
            "user": {
                "_id": "5eddfb351ed5570017aaf3b8",
                "name": {
                    "first": "calix",
                    "last": "cheng"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5eebc851515a030017471024",
            "type": "cat",
            "text": "Cats are cats.",
            "user": {
                "_id": "5eebc848515a030017471023",
                "name": {
                    "first": "Ricky",
                    "last": "Chon"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ef556dff61f300017030d4c",
            "type": "cat",
            "text": "Lucy, the oldest cat ever, lived to be 39 years old which is equivalent to 172 cat years.",
            "user": {
                "_id": "5e1a9b981fd6150015fa736f",
                "name": {
                    "first": "Andrew",
                    "last": "Pobrica"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ef5bbdbf61f300017030d4f",
            "type": "cat",
            "text": "Fdfd.",
            "user": {
                "_id": "5ef5bbcdf61f300017030d4e",
                "name": {
                    "first": "Touch",
                    "last": "Akhil"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f0371215ac1ed0017c647a9",
            "type": "cat",
            "text": "Cxcbc.",
            "user": {
                "_id": "5f03708f5ac1ed0017c647a8",
                "name": {
                    "first": "Marylange",
                    "last": "Souza"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f03712d5ac1ed0017c647aa",
            "type": "cat",
            "text": "Jfhfhf.",
            "user": {
                "_id": "5f03708f5ac1ed0017c647a8",
                "name": {
                    "first": "Marylange",
                    "last": "Souza"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f0a15090fc09b00174aec96",
            "type": "cat",
            "text": "1123405258.",
            "user": {
                "_id": "5f0a15010fc09b00174aec95",
                "name": {
                    "first": "nelson enrique",
                    "last": "redondo b"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f119d925ada6000174e785c",
            "type": "cat",
            "text": "Cat are cute.",
            "user": {
                "_id": "5f119d3e5ada6000174e785b",
                "name": {
                    "first": "Prof",
                    "last": "MATH DZ"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f27be5f1fb098001709b5fb",
            "type": "cat",
            "text": "Hello.",
            "user": {
                "_id": "5f27bda31fb098001709b5fa",
                "name": {
                    "first": "Tiến",
                    "last": "Lê Đức"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f2c80477329f500172d13bb",
            "type": "cat",
            "text": "Potato.",
            "user": {
                "_id": "5f2c649a7329f500172d13ba",
                "name": {
                    "first": "Black",
                    "last": "Rose"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f2ca50758ea8e0017ed1266",
            "type": "cat",
            "text": "Testing.",
            "user": {
                "_id": "5f2c649a7329f500172d13ba",
                "name": {
                    "first": "Black",
                    "last": "Rose"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5f2ddb9358ea8e0017ed1268",
            "type": "cat",
            "text": "Zoe.",
            "user": {
                "_id": "5f2ddb7e58ea8e0017ed1267",
                "name": {
                    "first": "Sebastian",
                    "last": "Leal"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38baf20f1c57001592f14b",
            "type": "cat",
            "text": "The stationmaster of the Kishi rail station in western Japan until 2015 was a cat named Tama. The calico cat wore a stationmaster's cap and greeted visitors by the ticket gate. After her death, Tama was elevated to the status of a goddess in a Shinto-style funeral.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bb7a0f1c57001592f14d",
            "type": "cat",
            "text": "In Norse mythology, the goddess Freya travels in a chariot pulled by two cats—specifically Norwegian Forest Cats.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bbb20f1c57001592f14f",
            "type": "cat",
            "text": "American Curl kittens are born with straight ears, but the ears begin to curl back after just a few days.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bc0c0f1c57001592f150",
            "type": "cat",
            "text": "If your cat licks from the toilet, bathtub, or sink, she may be telling you something about the water bowl. Make sure it's clean, replace the water regularly to keep it from getting stale or developing a film on top, and if necessary, get a new bowl. Some cats prefer glass bowls to plastic.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bc630f1c57001592f151",
            "type": "cat",
            "text": "Georgia O'Keeffe was a celebrated painter, a figurehead of American modernism, a fashion icon, and... a cat owner! O'Keeffe kept a number of animals at her home in New Mexico, including her pet Siamese cat, who appears alongside O'Keeffe in a portrait shot by photographer John Candelario.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bc970f1c57001592f152",
            "type": "cat",
            "text": "The pink substance inside a cat's nail is called the \"quick\" or the \"dermis\". When trimming your cat's nails, be sure to only cut the upper white part of the nail, not the quick.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bcc00f1c57001592f153",
            "type": "cat",
            "text": "The irresistable and cuddly Ragamuffin is the result of crossbreeding Ragdoll cats with Persians, Himalayans, and other larger longhaired breeds.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bd750f1c57001592f155",
            "type": "cat",
            "text": "Legend holds that a goddess rewarded a temple cat's piety by turning the cat's eyes blue and his coat golden, thus creating the first Birman cat.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38bdab0f1c57001592f156",
            "type": "cat",
            "text": "While some cats love being brushed, others don't take to it naturally. Try to groom your cat in the same spot at the same time of day to create a sense of routine.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5d38be370f1c57001592f158",
            "type": "cat",
            "text": "Kittens typically begin to engage in playful behavior at around four weeks of age.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5ea7496761cd4d0017498a94",
            "type": "cat",
            "text": "Ancient sailors believed that cats were magic and would often risk their own lives, even in an \"every man for himself\" situation, to save a cat from a sinking ship. All ships had at least one ship's cat as cats would eat the rats that have always plagued ships. The ship's cat would often be given a rank and sailors would generally take excessively good care of their cats.",
            "user": {
                "_id": "5a9ac18c7478810ea6c06381",
                "name": {
                    "first": "Alex",
                    "last": "Wohlbruck"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        },
        {
            "_id": "5eaafca69105ce00177573de",
            "type": "cat",
            "text": "Cats sleep most of the time.",
            "user": {
                "_id": "5ea977d1cd53d20017d7d8b2",
                "name": {
                    "first": "Quang",
                    "last": "Pham"
                }
            },
            "upvotes": 0,
            "userUpvoted": null
        }
    ]
}