iching 0.5.0

An app for divination with the I-Ching
Documentation
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
[
  {
    "number": 1,
    "name": {
      "chinese": "",
      "pinyin": "Qián",
      "english": "The Creative"
    },
    "trigrams": {
      "above": 1,
      "below": 1
    },
    "judgement": "The Creative works sublime success,\nFurthering through perseverance.",
    "images": "The movement of heaven is full of power.\nThus the superior man makes himself strong and untiring.",
    "lines": [
      {
        "position": 1,
        "meaning": "Hidden dragon. Do not act."
      },
      {
        "position": 2,
        "meaning": "Dragon appearing in the field.\nIt furthers one to see the great man."
      },
      {
        "position": 3,
        "meaning": "All day long the superior man is creatively active.\nAt nightfall his mind is still beset with cares.\nDanger. No blame."
      },
      {
        "position": 4,
        "meaning": "Wavering flight over the depths.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "Flying dragon in the heavens.\nIt furthers one to see the great man."
      },
      {
        "position": 6,
        "meaning": "Arrogant dragon will have cause to repent."
      }
    ]
  },
  {
    "number": 2,
    "name": {
      "chinese": "",
      "pinyin": "kūn",
      "english": "The Receptive"
    },
    "trigrams": {
      "above": 8,
      "below": 8
    },
    "judgement": "The Receptive brings about sublime success,\nFurthering through the perseverance of a mare.\nIf the superior man undertakes something and tries to lead,\nHe goes astray;\nBut if he follows, he finds guidance.\nIt is favorable to find friends in the west and south,\nTo forego friends in the east and north.\nQuiet perseverance brings good fortune.",
    "images": "The earth's condition is receptive devotion.\nThus the superior man who has breadth of character\nCarries the outer world.",
    "lines": [
      {
        "position": 1,
        "meaning": "When there is hoarfrost underfoot,\nSolid ice is not far off."
      },
      {
        "position": 2,
        "meaning": "Straight, square, great.\nWithout purpose,\nYet nothing remains unfurthered."
      },
      {
        "position": 3,
        "meaning": "Hidden lines.\nOne is able to remain persevering.\nIf by chance you are in the service of a king,\nSeek not works, but bring to completion."
      },
      {
        "position": 4,
        "meaning": "A tied-up sack. No blame, no praise."
      },
      {
        "position": 5,
        "meaning": "A yellow lower garment brings supreme good fortune."
      },
      {
        "position": 6,
        "meaning": "Dragons fight in the meadow.\nTheir blood is black and yellow."
      }
    ]
  },
  {
    "number": 3,
    "name": {
      "chinese": "",
      "pinyin": "zhūn",
      "english": "Difficulty at the Beginning"
    },
    "trigrams": {
      "above": 6,
      "below": 4
    },
    "judgement": "Difficulty at the Beginning works supreme success,\nFurthering through perseverance.\nNothing should be undertaken.\nIt furthers one to appoint helpers.",
    "images": "Clouds and thunder:\nThe image of Difficulty at the Beginning.\nThus the superior man\nBrings order out of confusion.",
    "lines": [
      {
        "position": 1,
        "meaning": "Hesitation and hindrance.\nIt furthers one to remain persevering.\nIt furthers one to appoint helpers."
      },
      {
        "position": 2,
        "meaning": "Difficulties pile up.\nHorse and wagon part.\nHe is not a robber;\nHe wants to woo when the time comes.\nThe maiden is chaste,\nShe does not pledge herself.\nTen years(emthen she pledges herself."
      },
      {
        "position": 3,
        "meaning": "Whoever hunts deer without the forester\nOnly loses his way in the forest.\nThe superior man understands the signs of the time\nAnd prefers to desist.\nTo go on brings humiliation."
      },
      {
        "position": 4,
        "meaning": "Horse and wagon part.\nStrive for union.\nTo go brings good fortune.\nEverything acts to further."
      },
      {
        "position": 5,
        "meaning": "Difficulties in blessing.\nA little perseverance brings good fortune.\nGreat perseverance brings misfortune."
      },
      {
        "position": 6,
        "meaning": "Horse and wagon part.\nBloody tears flow."
      }
    ]
  },
  {
    "number": 4,
    "name": {
      "chinese": "",
      "pinyin": "méng",
      "english": "Youthful Folly"
    },
    "trigrams": {
      "above": 7,
      "below": 6
    },
    "judgement": "Youthful Folly has success.\nIt is not I who seek the young fool;\nThe young fool seeks me.\nAt the first oracle I inform him.\nIf he asks two or three times, it is importunity.\nIf he importunes, I give him no information.\nPerseverance furthers.",
    "images": "A spring wells up at the foot of the mountain:\nThe image of Youth.\nThus the superior man fosters his character\nBy thoroughness in all that he does.",
    "lines": [
      {
        "position": 1,
        "meaning": "To make a fool develop\nIt furthers one to apply discipline.\nThe fetters should be removed.\nTo go on in this way brings humiliation."
      },
      {
        "position": 2,
        "meaning": "To bear with fools in kindliness brings good fortune.\nTo know how to take women\nBrings good fortune.\nThe son is capable of taking charge of the household."
      },
      {
        "position": 3,
        "meaning": "Take not a maiden who, when she sees a man of bronze,\nLoses possession of herself.\nNothing furthers."
      },
      {
        "position": 4,
        "meaning": "Entangled folly brings humiliation."
      },
      {
        "position": 5,
        "meaning": "Childlike folly brings good fortune."
      },
      {
        "position": 6,
        "meaning": "In punishing folly\nIt does not further one\nTo commit transgressions.\nThe only thing that furthers\nIs to prevent transgressions."
      }
    ]
  },
  {
    "number": 5,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Waiting (Nourishment)"
    },
    "trigrams": {
      "above": 6,
      "below": 1
    },
    "judgement": "Waiting. If you are sincere,\nYou have light and success.\nPerseverance brings good fortune.\nIt furthers one to cross the great water.",
    "images": "Clouds rise up to heaven:\nThe image of Waiting.\nThus the superior man eats and drinks,\nIs joyous and of good cheer.",
    "lines": [
      {
        "position": 1,
        "meaning": "Waiting in the meadow.\nIt furthers one to abide in what endures.\nNo blame."
      },
      {
        "position": 2,
        "meaning": "Waiting on the sand.\nThere is some gossip.\nThe end brings good fortune."
      },
      {
        "position": 3,
        "meaning": "Waiting in the mud\nBrings about the arrival of the enemy."
      },
      {
        "position": 4,
        "meaning": "Waiting in blood.\nGet out of the pit."
      },
      {
        "position": 5,
        "meaning": "Waiting at meat and drink.\nPerseverance brings good fortune."
      },
      {
        "position": 6,
        "meaning": "One falls into the pit.\nThree uninvited guests arrive.\nHonor them, and in the end there will be good fortune."
      }
    ]
  },
  {
    "number": 6,
    "name": {
      "chinese": "",
      "pinyin": "sòng",
      "english": "Conflict"
    },
    "trigrams": {
      "above": 1,
      "below": 6
    },
    "judgement": "Conflict. You are sincere\nAnd are being obstructed.\nA cautious halt halfway brings good fortune.\nGoing through to the end brings misfortune.\nIt furthers one to see the great man.\nIt does not further one to cross the great water.",
    "images": "Heaven and water go their opposite ways:\nThe image of Conflict.\nThus in all his transactions the superior man\nCarefully considers the beginning.",
    "lines": [
      {
        "position": 1,
        "meaning": "If one does not perpetuate the affair,\nThere is a little gossip.\nIn the end, good fortune comes."
      },
      {
        "position": 2,
        "meaning": "One cannot engage in conflict;\nOne returns home, gives way.\nThe people of his town,\nThree hundred households,\nRemain free of guilt."
      },
      {
        "position": 3,
        "meaning": "To nourish oneself on ancient virtue induces perseverance.\nDanger. In the end, good fortune comes.\nIf by chance you are in the service of a king,\nSeek not works."
      },
      {
        "position": 4,
        "meaning": "One cannot engage in conflict.\nOne turns back and submits to fate,\nChanges one's attitude,\nAnd finds peace in perseverance.\nGood fortune."
      },
      {
        "position": 5,
        "meaning": "To contend before him\nBrings supreme good fortune."
      },
      {
        "position": 6,
        "meaning": "Even if by chance a leather belt is bestowed on one,\nBy the end of a morning\nIt will have been snatched away three times."
      }
    ]
  },
  {
    "number": 7,
    "name": {
      "chinese": "",
      "pinyin": "shī",
      "english": "The Army"
    },
    "trigrams": {
      "above": 8,
      "below": 6
    },
    "judgement": "The Army. The army needs perseverance\nAnd a strong man.\nGood fortune without blame.",
    "images": "In the middle of the earth is water:\nThe image of the Army.\nThus the superior man increases his masses\nBy generosity toward the people.",
    "lines": [
      {
        "position": 1,
        "meaning": "An army must set forth in proper order.\nIf the order is not good, misfortune threatens."
      },
      {
        "position": 2,
        "meaning": "In the midst of the army.\nGood fortune. No blame.\nThe king bestows a triple decoration."
      },
      {
        "position": 3,
        "meaning": "Perchance the army carries corpses in the wagon.\nMisfortune."
      },
      {
        "position": 4,
        "meaning": "The army retreats. No blame."
      },
      {
        "position": 5,
        "meaning": "There is game in the field.\nIt furthers one to catch it.\nWithout blame.\nLet the eldest lead the army.\nThe younger transports corpses;\nThen perseverance brings misfortune."
      },
      {
        "position": 6,
        "meaning": "The great prince issues commands,\nFounds states, vests families with fiefs.\nInferior people should not be employed."
      }
    ]
  },
  {
    "number": 8,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Holding Together [Union]"
    },
    "trigrams": {
      "above": 6,
      "below": 8
    },
    "judgement": "Holding Together brings good fortune.\nInquire of the oracle once again\nWhether you possess sublimity, constancy, and perseverance;\nThen there is no blame.\nThose who are uncertain gradually join.\nWhoever comes too late\nMeets with misfortune.",
    "images": "On the earth is water:\nThe image of Holding Together.\nThus the kings of antiquity\nBestowed the different states as fiefs\nAnd cultivated friendly relations\nWith the feudal lords.",
    "lines": [
      {
        "position": 1,
        "meaning": "Hold to him in truth and loyalty;\nThis is without blame.\nTruth, like a full earthen bowl:\nThus in the end\nGood fortune comes from without."
      },
      {
        "position": 2,
        "meaning": "Hold to him inwardly.\nPerseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "You hold together with the wrong people."
      },
      {
        "position": 4,
        "meaning": "Hold to him outwardly also.\nPerseverance brings good fortune."
      },
      {
        "position": 5,
        "meaning": "Manifestation of holding together.\nIn the hunt the king uses beaters on three sides only\nAnd foregoes game that runs off in front.\nThe citizens need no warning.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "He finds no head for holding together.\nMisfortune."
      }
    ]
  },
  {
    "number": 9,
    "name": {
      "chinese": "小畜",
      "pinyin": "xiǎo chù",
      "english": "The Taming Power of the Small"
    },
    "trigrams": {
      "above": 5,
      "below": 1
    },
    "judgement": "The Taming Power of the Small\nHas success.\nDense clouds, no rain from our western region.",
    "images": "The wind drives across heaven:\nThe image of the Taming Power of the Small.\nThus the superior man\nRefines the outward aspect of his nature.",
    "lines": [
      {
        "position": 1,
        "meaning": "Return to the way.\nHow could there be blame in this?\nGood fortune."
      },
      {
        "position": 2,
        "meaning": "He allows himself to be drawn into returning.\nGood fortune."
      },
      {
        "position": 3,
        "meaning": "The spokes burst out of the wagon wheels.\nMan and wife roll their eyes."
      },
      {
        "position": 4,
        "meaning": "If you are sincere, blood vanishes and fear gives way.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "If you are sincere and loyally attached,\nYou are rich in your neighbor."
      },
      {
        "position": 6,
        "meaning": "The rain comes, there is rest.\nThis is due to the lasting effect of character.\nPerseverance brings the woman into danger.\nThe moon is nearly full.\nIf the superior man persists,\nMisfortune comes."
      }
    ]
  },
  {
    "number": 10,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Treading [Conduct]"
    },
    "trigrams": {
      "above": 1,
      "below": 2
    },
    "judgement": "Treading. Treading upon the tail of the tiger.\nIt does not bite the man. Success.",
    "images": "Heaven above, the lake below:\nThe image of Treading.\nThus the superior man discriminates between high and low,\nAnd thereby fortifies the thinking of the people.",
    "lines": [
      {
        "position": 1,
        "meaning": "Simple conduct. Progress without blame."
      },
      {
        "position": 2,
        "meaning": "Treading a smooth, level course.\nThe perseverance of a dark man\nBrings good fortune."
      },
      {
        "position": 3,
        "meaning": "A one-eyed man is able to see,\nA lame man is able to tread.\nHe treads on the tail of the tiger.\nThe tiger bites the man.\nMisfortune.\nThus does a warrior act on behalf of his great prince."
      },
      {
        "position": 4,
        "meaning": "He treads on the tail of the tiger.\nCaution and circumspection\nLead ultimately to good fortune."
      },
      {
        "position": 5,
        "meaning": "Resolute conduct.\nPerseverance with awareness of danger."
      },
      {
        "position": 6,
        "meaning": "Look to your conduct and weigh the favorable signs.\nWhen everything is fulfilled, supreme good fortune comes."
      }
    ]
  },
  {
    "number": 11,
    "name": {
      "chinese": "",
      "pinyin": "tài",
      "english": "Peace"
    },
    "trigrams": {
      "above": 8,
      "below": 1
    },
    "judgement": "Peace. The small departs,\nThe great approaches.\nGood fortune. Success.",
    "images": "Heaven and earth unite: the image of Peace.\nThus the ruler\nDivides and completes the course of heaven and earth;\nHe furthers and regulates the gifts of heaven and earth,\nAnd so aids the people.",
    "lines": [
      {
        "position": 1,
        "meaning": "When ribbon grass is pulled up, the sod comes with it.\nEach according to his kind.\nUndertakings bring good fortune."
      },
      {
        "position": 2,
        "meaning": "Bearing with the uncultured in gentleness,\nFording the river with resolution,\nNot neglecting what is distant,\nNot regarding one's companions:\nThus one may manage to walk in the middle."
      },
      {
        "position": 3,
        "meaning": "No plain not followed by a slope.\nNo going not followed by a return.\nHe who remains persevering in danger\nIs without blame.\nDo not complain about this truth;\nEnjoy the good fortune you still possess."
      },
      {
        "position": 4,
        "meaning": "He flutters down, not boasting of his wealth,\nTogether with his neighbor,\nGuileless and sincere."
      },
      {
        "position": 5,
        "meaning": "The sovereign I\nGives his daughter in marriage.\nThis brings blessing\nAnd supreme good fortune."
      },
      {
        "position": 6,
        "meaning": "The wall falls back into the moat.\nUse no army now.\nMake your commands known within your own town.\nPerseverance brings humiliation."
      }
    ]
  },
  {
    "number": 12,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Standstill [Stagnation]"
    },
    "trigrams": {
      "above": 1,
      "below": 8
    },
    "judgement": "Standstill. Evil people do not further\nThe perseverance of the superior man.\nThe great departs; the small approaches.",
    "images": "Heaven and earth do not unite:\nThe image of Standstill.\nThus the superior man falls back upon his inner worth\nIn order to escape the difficulties.\nHe does not permit himself to be honored with revenue.",
    "lines": [
      {
        "position": 1,
        "meaning": "When ribbon grass is pulled up, the sod comes with it.\nEach according to his kind.\nPerseverance brings good fortune and success."
      },
      {
        "position": 2,
        "meaning": "They bear and endure;\nThis means good fortune for inferior people.\nThe standstill serves to help the great man to attain success."
      },
      {
        "position": 3,
        "meaning": "They bear shame."
      },
      {
        "position": 4,
        "meaning": "He who acts at the command of the highest\nRemains without blame.\nThose of like mind partake of the blessing."
      },
      {
        "position": 5,
        "meaning": "Standstill is giving way.\nGood fortune for the great man.\n\"What if it should fail, what if it should fail?\"\nIn this way he ties it to a cluster of mulberry shoots."
      },
      {
        "position": 6,
        "meaning": "The standstill comes to an end.\nFirst standstill, then good fortune."
      }
    ]
  },
  {
    "number": 13,
    "name": {
      "chinese": "同人",
      "pinyin": "tóng rén",
      "english": "Fellowship with Men"
    },
    "trigrams": {
      "above": 1,
      "below": 3
    },
    "judgement": "Fellowship with Men in the open.\nSuccess.\nIt furthers one to cross the great water.\nThe perseverance of the superior man furthers.",
    "images": "Heaven together with fire:\nThe image of Fellowship with Men.\nThus the superior man organizes the clans\nAnd makes distinctions between things.",
    "lines": [
      {
        "position": 1,
        "meaning": "Fellowship with men at the gate.\nNo blame."
      },
      {
        "position": 2,
        "meaning": "Fellowship with men in the clan.\nHumiliation."
      },
      {
        "position": 3,
        "meaning": "He hides weapons in the thicket;\nHe climbs the high hill in front of it.\nFor three years he does not rise up."
      },
      {
        "position": 4,
        "meaning": "He climbs up on his wall; he cannot attack.\nGood fortune."
      },
      {
        "position": 5,
        "meaning": "Men bound in fellowship first weep and lament,\nBut afterward they laugh.\nAfter great struggles they succeed in meeting."
      },
      {
        "position": 6,
        "meaning": "Fellowship with men in the meadow.\nNo remorse."
      }
    ]
  },
  {
    "number": 14,
    "name": {
      "chinese": "大有",
      "pinyin": "dà yǒu",
      "english": "Possession in Great Measure"
    },
    "trigrams": {
      "above": 3,
      "below": 1
    },
    "judgement": "Possession in Great Measure.\nSupreme success.",
    "images": "Fire in heaven above:\nThe image of Possession in Great Measure.\nThus the superior man curbs evil and furthers good,\nAnd thereby obeys the benevolent will of heaven.",
    "lines": [
      {
        "position": 1,
        "meaning": "No relationship with what is harmful;\nThere is no blame in this.\nIf one remains conscious of difficulty,\nOne remains without blame."
      },
      {
        "position": 2,
        "meaning": "A big wagon for loading.\nOne may undertake something.\nNo blame."
      },
      {
        "position": 3,
        "meaning": "A prince offers it to the Son of Heaven.\nA petty man cannot do this."
      },
      {
        "position": 4,
        "meaning": "He makes a difference\nBetween himself and his neighbor.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "He whose truth is accessible, yet dignified,\nHas good fortune."
      },
      {
        "position": 6,
        "meaning": "He is blessed by heaven.\nGood fortune.\nNothing that does not further."
      }
    ]
  },
  {
    "number": 15,
    "name": {
      "chinese": "",
      "pinyin": "qiān",
      "english": "Modesty"
    },
    "trigrams": {
      "above": 8,
      "below": 7
    },
    "judgement": "Modesty creates success.\nThe superior man carries things through.",
    "images": "Within the earth, a mountain:\nThe image of Modesty.\nThus the superior man reduces that which is too much,\nAnd augments that which is too little.\nHe weighs things and makes them equal.",
    "lines": [
      {
        "position": 1,
        "meaning": "A superior man modest about his modesty\nMay cross the great water.\nGood fortune."
      },
      {
        "position": 2,
        "meaning": "Modesty that comes to expression.\nPerseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "A superior man of modesty and merit\nCarries things to conclusion.\nGood fortune."
      },
      {
        "position": 4,
        "meaning": "Nothing that would not further modesty\nIn movement."
      },
      {
        "position": 5,
        "meaning": "No boasting of wealth before one's neighbor.\nIt is favorable to attack with force.\nNothing that would not further."
      },
      {
        "position": 6,
        "meaning": "Modesty that comes to expression.\nIt is favorable to set armies marching\nTo chastise one's own city and one's country."
      }
    ]
  },
  {
    "number": 16,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Enthusiasm"
    },
    "trigrams": {
      "above": 4,
      "below": 8
    },
    "judgement": "Enthusiasm. It furthers one to install helpers\nAnd to set armies marching.",
    "images": "Thunder comes resounding out of the earth:\nThe image of Enthusiasm.\nThus the ancient kings made music\nIn order to honor merit,\nAnd offered it with splendor\nTo the Supreme Deity,\nInviting their ancestors to be present.",
    "lines": [
      {
        "position": 1,
        "meaning": "Enthusiasm that expresses itself\nBrings misfortune."
      },
      {
        "position": 2,
        "meaning": "Firm as a rock. Not a whole day.\nPerseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "Enthusiasm that looks upward creates remorse.\nHesitation brings remorse."
      },
      {
        "position": 4,
        "meaning": "The source of enthusiasm.\nHe achieves great things.\nDoubt not.\nYou gather friends around you\nAs a hair clasp gathers the hair."
      },
      {
        "position": 5,
        "meaning": "Persistently ill, and still does not die."
      },
      {
        "position": 6,
        "meaning": "Deluded enthusiasm.\nBut if after completion one changes,\nThere is no blame."
      }
    ]
  },
  {
    "number": 17,
    "name": {
      "chinese": "",
      "pinyin": "suí",
      "english": "Following"
    },
    "trigrams": {
      "above": 2,
      "below": 4
    },
    "judgement": "Following has supreme success.\nPerseverance furthers. No blame.",
    "images": "Thunder in the middle of the lake:\nThe image of Following.\nThus the superior man at nightfall\nGoes indoors for rest and recuperation.",
    "lines": [
      {
        "position": 1,
        "meaning": "The standard is changing.\nPerseverance brings good fortune.\nTo go out of the door in company\nProduces deeds."
      },
      {
        "position": 2,
        "meaning": "If one clings to the little boy,\nOne loses the strong man."
      },
      {
        "position": 3,
        "meaning": "If one clings to the strong man,\nOne loses the little boy.\nThrough following one finds what one seeks.\nIt furthers one to remain persevering."
      },
      {
        "position": 4,
        "meaning": "Following creates success.\nPerseverance brings misfortune.\nTo go one's way with sincerity brings clarity.\nHow could there be blame in this?"
      },
      {
        "position": 5,
        "meaning": "Sincere in the good. Good fortune."
      },
      {
        "position": 6,
        "meaning": "He meets with firm allegiance\nAnd is still further bound.\nThe king introduces him\nTo the Western Mountain."
      }
    ]
  },
  {
    "number": 18,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Work on What Has Been Spoiled [Decay]"
    },
    "trigrams": {
      "above": 7,
      "below": 5
    },
    "judgement": "Work on What Has Been Spoiled\nHas supreme success.\nIt furthers one to cross the great water.\nBefore the starting point, three days.\nAfter the starting point, three days.",
    "images": "The wind blows low on the mountain:\nThe image of Decay.\nThus the superior man stirs up the people\nAnd strengthens their spirit.",
    "lines": [
      {
        "position": 1,
        "meaning": "Setting right what has been spoiled by the father.\nIf there is a son,\nNo blame rests upon the departed father.\nDanger. In the end good fortune."
      },
      {
        "position": 2,
        "meaning": "Setting right what has been spoiled by the mother.\nOne must not be too persevering."
      },
      {
        "position": 3,
        "meaning": "Setting right what has been spoiled by the father.\nThere will be little remorse. No great blame."
      },
      {
        "position": 4,
        "meaning": "Tolerating what has been spoiled by the father.\nIn continuing one sees humiliation."
      },
      {
        "position": 5,
        "meaning": "Setting right what has been spoiled by the father.\nOne meets with praise."
      },
      {
        "position": 6,
        "meaning": "He does not serve kings and princes,\nSets himself higher goals."
      }
    ]
  },
  {
    "number": 19,
    "name": {
      "chinese": "",
      "pinyin": "lín",
      "english": "Approach"
    },
    "trigrams": {
      "above": 8,
      "below": 2
    },
    "judgement": "Approach has supreme success.\nPerseverance furthers.\nWhen the eighth month comes,\nThere will be misfortune.",
    "images": "The earth above the lake:\nThe image of Approach.\nThus the superior man is inexhaustible\nIn his will to teach,\nAnd without limits\nIn his tolerance and protection of the people.",
    "lines": [
      {
        "position": 1,
        "meaning": "Joint approach.\nPerseverance brings good fortune."
      },
      {
        "position": 2,
        "meaning": "Joint approach.\nGood fortune.\nEverything furthers."
      },
      {
        "position": 3,
        "meaning": "Comfortable approach.\nNothing that would further.\nIf one is induced to grieve over it,\nOne becomes free of blame."
      },
      {
        "position": 4,
        "meaning": "Complete approach.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "Wise approach.\nThis is right for a great prince.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "Greathearted approach.\nGood fortune. No blame."
      }
    ]
  },
  {
    "number": 20,
    "name": {
      "chinese": "",
      "pinyin": "guān",
      "english": "Contemplation (View)"
    },
    "trigrams": {
      "above": 5,
      "below": 8
    },
    "judgement": "Contemplation. The ablution has been made,\nBut not yet the offering.\nFull of trust they look up to him.",
    "images": "The wind blows over the earth:\nThe image of Contemplation.\nThus the kings of old visited the regions of the world,\nContemplated the people,\nAnd gave them instruction.",
    "lines": [
      {
        "position": 1,
        "meaning": "Boylike contemplation.\nFor an inferior man, no blame.\nFor a superior man, humiliation."
      },
      {
        "position": 2,
        "meaning": "Contemplation through the crack of the door.\nFurthering for the perseverance of a woman."
      },
      {
        "position": 3,
        "meaning": "Contemplation of my life\nDecides the choice\nBetween advance and retreat."
      },
      {
        "position": 4,
        "meaning": "Contemplation of the light of the kingdom.\nIt furthers one to exert influence as the guest of a king."
      },
      {
        "position": 5,
        "meaning": "Contemplation of my life.\nThe superior man is without blame."
      },
      {
        "position": 6,
        "meaning": "Contemplation of his life.\nThe superior man is without blame."
      }
    ]
  },
  {
    "number": 21,
    "name": {
      "chinese": "噬嗑",
      "pinyin": "shì kè",
      "english": "Biting Through"
    },
    "trigrams": {
      "above": 3,
      "below": 4
    },
    "judgement": "Biting Through has success.\nIt is favorable to let justice be administered.",
    "images": "Thunder and lightning:\nThe image of Biting Through.\nThus the kings of former times made firm the laws\nThrough clearly defined penalties.",
    "lines": [
      {
        "position": 1,
        "meaning": "His feet are fastened in the stocks,\nSo that his toes disappear.\nNo blame."
      },
      {
        "position": 2,
        "meaning": "Bites through tender meat,\nSo that his nose disappears.\nNo blame."
      },
      {
        "position": 3,
        "meaning": "Bites on old dried meat\nAnd strikes on something poisonous.\nSlight humiliation. No blame."
      },
      {
        "position": 4,
        "meaning": "Bites on dried gristly meat.\nReceives metal arrows.\nIt furthers one to be mindful of difficulties\nAnd to be persevering.\nGood fortune."
      },
      {
        "position": 5,
        "meaning": "Bites on dried lean meat.\nReceives yellow gold.\nPerseveringly aware of danger.\nNo blame."
      },
      {
        "position": 6,
        "meaning": "His neck is fastened in the wooden cangue,\nSo that his ears disappear.\nMisfortune."
      }
    ]
  },
  {
    "number": 22,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Grace"
    },
    "trigrams": {
      "above": 7,
      "below": 3
    },
    "judgement": "Grace has success.\nIn small matters\nIt is favorable to undertake something.",
    "images": "Fire at the foot of the mountain:\nThe image of Grace.\nThus does the superior man proceed\nWhen clearing up current affairs.\nBut he dare not decide controversial issues in this way.",
    "lines": [
      {
        "position": 1,
        "meaning": "He lends grace to his toes, leaves the carriage, and walks."
      },
      {
        "position": 2,
        "meaning": "Lends grace to the beard on his chin."
      },
      {
        "position": 3,
        "meaning": "Graceful and moist.\nConstant perseverance brings good fortune."
      },
      {
        "position": 4,
        "meaning": "Grace or simplicity?\nA white horse comes as if on wings.\nHe is not a robber,\nHe will woo at the right time."
      },
      {
        "position": 5,
        "meaning": "Grace in hills and gardens.\nThe roll of silk is meager and small.\nHumiliation, but in the end good fortune."
      },
      {
        "position": 6,
        "meaning": "Simple grace. No blame."
      }
    ]
  },
  {
    "number": 23,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Splitting Apart"
    },
    "trigrams": {
      "above": 7,
      "below": 8
    },
    "judgement": "Splitting Apart. It does not further one\nTo go anywhere.",
    "images": "The mountain rests on the earth:\nThe image of Splitting Apart.\nThus those above can ensure their position\nOnly by giving generously to those below.",
    "lines": [
      {
        "position": 1,
        "meaning": "The leg of the bed is split.\nThose who persevere are destroyed.\nMisfortune."
      },
      {
        "position": 2,
        "meaning": "The bed is split at the edge.\nThose who persevere are destroyed.\nMisfortune."
      },
      {
        "position": 3,
        "meaning": "He splits with them. No blame."
      },
      {
        "position": 4,
        "meaning": "The bed is split up to the skin.\nMisfortune."
      },
      {
        "position": 5,
        "meaning": "A shoal of fishes. Favor comes through the court ladies.\nEverything acts to further."
      },
      {
        "position": 6,
        "meaning": "There is a large fruit still uneaten.\nThe superior man receives a carriage.\nThe house of the inferior man is split apart."
      }
    ]
  },
  {
    "number": 24,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Return (The Turning Point)"
    },
    "trigrams": {
      "above": 8,
      "below": 4
    },
    "judgement": "Return. Success.\nGoing out and coming in without error.\nFriends come without blame.\nTo and fro goes the way.\nOn the seventh day comes return.\nIt furthers one to have somewhere to go.",
    "images": "Thunder within the earth:\nThe image of the Turning Point.\nThus the kings of antiquity closed the passes\nAt the time of solstice.\nMerchants and strangers did not go about,\nAnd the ruler\nDid not travel through the provinces.",
    "lines": [
      {
        "position": 1,
        "meaning": "Return from a short distance.\nNo need for remorse.\nGreat good fortune."
      },
      {
        "position": 2,
        "meaning": "Quiet return. Good fortune."
      },
      {
        "position": 3,
        "meaning": "Repeated return. Danger. No blame."
      },
      {
        "position": 4,
        "meaning": "Walking in the midst of others,\nOne returns alone."
      },
      {
        "position": 5,
        "meaning": "Noble-hearted return. No remorse."
      },
      {
        "position": 6,
        "meaning": "Missing the return. Misfortune.\nMisfortune from within and without.\nIf armies are set marching in this way,\nOne will in the end suffer a great defeat,\nDisastrous for the ruler of the country.\nFor ten years\nIt will not be possible to attack again."
      }
    ]
  },
  {
    "number": 25,
    "name": {
      "chinese": "無妄",
      "pinyin": "wú wàng",
      "english": "Innocence (The Unexpected)"
    },
    "trigrams": {
      "above": 1,
      "below": 4
    },
    "judgement": "Innocence. Supreme success.\nPerseverance furthers.\nIf someone is not as he should be,\nHe has misfortune,\nAnd it does not further him\nTo undertake anything.",
    "images": "Under heaven thunder rolls:\nAll things attain the natural state of innocence.\nThus the kings of old,\nRich in virtue, and in harmony with the time,\nFostered and nourished all beings.",
    "lines": [
      {
        "position": 1,
        "meaning": "Innocent behavior brings good fortune."
      },
      {
        "position": 2,
        "meaning": "If one does not count on the harvest while plowing,\nNor on the use of the ground while clearing it,\nIt furthers one to undertake something."
      },
      {
        "position": 3,
        "meaning": "Undeserved misfortune.\nThe cow that was tethered by someone\nIs the wanderer's gain, the citizen's loss."
      },
      {
        "position": 4,
        "meaning": "He who can be persevering\nRemains without blame."
      },
      {
        "position": 5,
        "meaning": "Use no medicine in an illness\nIncurred through no fault of your own.\nIt will pass of itself."
      },
      {
        "position": 6,
        "meaning": "Innocent action brings misfortune.\nNothing furthers."
      }
    ]
  },
  {
    "number": 26,
    "name": {
      "chinese": "大畜",
      "pinyin": "dà chù",
      "english": "The Taming Power of the Great"
    },
    "trigrams": {
      "above": 7,
      "below": 1
    },
    "judgement": "The Taming Power of the Great.\nPerseverance furthers.\nNot eating at home brings good fortune.\nIt furthers one to cross the great water.",
    "images": "Heaven within the mountain:\nThe image of the Taming Power of the Great.\nThus the superior man acquaints himself with many sayings of antiquity\nAnd many deeds of the past,\nIn order to strengthen his character thereby.",
    "lines": [
      {
        "position": 1,
        "meaning": "Danger is at hand. It furthers one to desist."
      },
      {
        "position": 2,
        "meaning": "The axletrees are taken from the wagon."
      },
      {
        "position": 3,
        "meaning": "A good horse that follows others.\nAwareness of danger,\nWith perseverance, furthers.\nPractice chariot driving and armed defense daily.\nIt furthers one to have somewhere to go."
      },
      {
        "position": 4,
        "meaning": "The headboard of a young bull.\nGreat good fortune."
      },
      {
        "position": 5,
        "meaning": "The tusk of a gelded boar.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "One attains the way of heaven. Success."
      }
    ]
  },
  {
    "number": 27,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "The Corners of the Mouth (Providing Nourishment)"
    },
    "trigrams": {
      "above": 7,
      "below": 4
    },
    "judgement": "The Corners of the Mouth.\nPerseverance brings good fortune.\nPay heed to the providing of nourishment\nAnd to what a man seeks\nTo fill his own mouth with.",
    "images": "At the foot of the mountain, thunder:\nThe image of Providing Nourishment.\nThus the superior man is careful of his words\nAnd temperate in eating and drinking.",
    "lines": [
      {
        "position": 1,
        "meaning": "You let your magic tortoise go,\nAnd look at me with the corners of your mouth drooping.\nMisfortune."
      },
      {
        "position": 2,
        "meaning": "Turning to the summit for nourishment,\nDeviating from the path\nTo seek nourishment from the hill.\nContinuing to do this brings misfortune."
      },
      {
        "position": 3,
        "meaning": "Turning away from nourishment.\nPerseverance brings misfortune.\nDo not act thus for ten years.\nNothing serves to further."
      },
      {
        "position": 4,
        "meaning": "Turning to the summit\nFor provision of nourishment\nBrings good fortune.\nSpying about with sharp eyes\nLike a tiger with insatiable craving.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "Turning away from the path.\nTo remain persevering brings good fortune.\nOne should not cross the great water."
      },
      {
        "position": 6,
        "meaning": "The source of nourishment.\nAwareness of danger brings good fortune.\nIt furthers one to cross the great water."
      }
    ]
  },
  {
    "number": 28,
    "name": {
      "chinese": "大過",
      "pinyin": "dà guò",
      "english": "Preponderance of the Great"
    },
    "trigrams": {
      "above": 2,
      "below": 5
    },
    "judgement": "Preponderance of the Great.\nThe ridgepole sags to the breaking point.\nIt furthers one to have somewhere to go.\nSuccess.",
    "images": "The lake rises above the trees:\nThe image of Preponderance of the Great.\nThus the superior man, when he stands alone,\nIs unconcerned,\nAnd if he has to renounce the world,\nHe is undaunted.",
    "lines": [
      {
        "position": 1,
        "meaning": "To spread white rushes underneath.\nNo blame."
      },
      {
        "position": 2,
        "meaning": "A dry poplar sprouts at the root.\nAn older man takes a young wife.\nEverything furthers."
      },
      {
        "position": 3,
        "meaning": "The ridgepole sags to the breaking point.\nMisfortune."
      },
      {
        "position": 4,
        "meaning": "The ridgepole is braced. Good fortune.\nIf there are ulterior motives, it is humiliating."
      },
      {
        "position": 5,
        "meaning": "A withered poplar puts forth flowers.\nAn older woman takes a husband.\nNo blame. No praise."
      },
      {
        "position": 6,
        "meaning": "One must go through the water.\nIt goes over one's head.\nMisfortune. No blame."
      }
    ]
  },
  {
    "number": 29,
    "name": {
      "chinese": "",
      "pinyin": "kǎn",
      "english": "The Abysmal (Water)"
    },
    "trigrams": {
      "above": 6,
      "below": 6
    },
    "judgement": "The Abysmal repeated.\nIf you are sincere, you have success in your heart,\nAnd whatever you do succeeds.",
    "images": "Water flows on uninterruptedly and reaches its goal:\nThe image of the Abysmal repeated.\nThus the superior man walks in lasting virtue\nAnd carries on the business of teaching.",
    "lines": [
      {
        "position": 1,
        "meaning": "Repetition of the Abysmal.\nIn the abyss one falls into a pit.\nMisfortune."
      },
      {
        "position": 2,
        "meaning": "The abyss is dangerous.\nOne should strive to attain small things only."
      },
      {
        "position": 3,
        "meaning": "Forward and backward, abyss on abyss.\nIn danger like this, pause at first and wait,\nOtherwise you will fall into a pit in the abyss.\nDo not act in this way."
      },
      {
        "position": 4,
        "meaning": "A jug of wine, a bowl of rice with it;\nEarthen vessels\nSimply handed in through the window.\nThere is certainly no blame in this."
      },
      {
        "position": 5,
        "meaning": "The abyss is not filled to overflowing,\nIt is filled only to the rim.\nNo blame."
      },
      {
        "position": 6,
        "meaning": "Bound with cords and ropes,\nShut in between thorn-hedged prison walls:\nFor three years one does not find the way.\nMisfortune."
      }
    ]
  },
  {
    "number": 30,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "The Clinging, Fire"
    },
    "trigrams": {
      "above": 3,
      "below": 3
    },
    "judgement": "The Clinging. Perseverance furthers.\nIt brings success.\nCare of the cow brings good fortune.",
    "images": "That which is bright rises twice:\nThe image of Fire.\nThus the great man, by perpetuating this brightness,\nIllumines the four quarters of the world.",
    "lines": [
      {
        "position": 1,
        "meaning": "The footprints run crisscross.\nIf one is seriously intent, no blame."
      },
      {
        "position": 2,
        "meaning": "Yellow light. Supreme good fortune."
      },
      {
        "position": 3,
        "meaning": "In the light of the setting sun,\nMen either beat the pot and sing\nOr loudly bewail the approach of old age.\nMisfortune."
      },
      {
        "position": 4,
        "meaning": "Its coming is sudden;\nIt flames up, dies down, is thrown away."
      },
      {
        "position": 5,
        "meaning": "Tears in floods, sighing and lamenting.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "The king uses him to march forth and chastise.\nThen it is best to kill the leaders\nAnd take captive the followers. No blame."
      }
    ]
  },
  {
    "number": 31,
    "name": {
      "chinese": "",
      "pinyin": "xián",
      "english": "Influence (Wooing)"
    },
    "trigrams": {
      "above": 2,
      "below": 7
    },
    "judgement": "Influence. Success.\nPerseverance furthers.\nTo take a maiden to wife brings good fortune.",
    "images": "A lake on the mountain:\nThe image of Influence.\nThus the superior man encourages people to approach him\nBy his readiness to receive them.",
    "lines": [
      {
        "position": 1,
        "meaning": "The influence shows itself in the big toe."
      },
      {
        "position": 2,
        "meaning": "The influence shows itself in the calves of the legs.\nMisfortune.\nTarrying brings good fortune."
      },
      {
        "position": 3,
        "meaning": "The influence shows itself in the thighs.\nHolds to that which follows it.\nTo continue is humiliating."
      },
      {
        "position": 4,
        "meaning": "Perseverance brings good fortune.\nRemorse disappears.\nIf a man is agitated in mind,\nAnd his thoughts go hither and thither,\nOnly those friends\nOn whom he fixes his conscious thoughts\nWill follow."
      },
      {
        "position": 5,
        "meaning": "The influence shows itself in the back of the neck.\nNo remorse."
      },
      {
        "position": 6,
        "meaning": "The influence shows itself in the jaws, cheeks, and tongue."
      }
    ]
  },
  {
    "number": 32,
    "name": {
      "chinese": "",
      "pinyin": "héng",
      "english": "Duration"
    },
    "trigrams": {
      "above": 4,
      "below": 5
    },
    "judgement": "Duration. Success. No blame.\nPerseverance furthers.\nIt furthers one to have somewhere to go.",
    "images": "Thunder and wind: the image of Duration.\nThus the superior man stands firm\nAnd does not change his direction.",
    "lines": [
      {
        "position": 1,
        "meaning": "Seeking duration too hastily brings misfortune persistently.\nNothing that would further."
      },
      {
        "position": 2,
        "meaning": "Remorse disappears."
      },
      {
        "position": 3,
        "meaning": "He who does not give duration to his character\nMeets with disgrace.\nPersistent humiliation."
      },
      {
        "position": 4,
        "meaning": "No game in the field."
      },
      {
        "position": 5,
        "meaning": "Giving duration to one's character through perseverance.\nThis is good fortune for a woman, misfortune for a man."
      },
      {
        "position": 6,
        "meaning": "Restlessness as an enduring condition brings misfortune."
      }
    ]
  },
  {
    "number": 33,
    "name": {
      "chinese": "",
      "pinyin": "dùn",
      "english": "Retreat"
    },
    "trigrams": {
      "above": 1,
      "below": 7
    },
    "judgement": "Retreat. Success.\nIn what is small, perseverance furthers.",
    "images": "Mountain under heaven: the image of Retreat.\nThus the superior man keeps the inferior man at a distance,\nNot angrily but with reserve.",
    "lines": [
      {
        "position": 1,
        "meaning": "At the tail in retreat. This is dangerous.\nOne must not wish to undertake anything."
      },
      {
        "position": 2,
        "meaning": "He holds him fast with yellow oxhide.\nNo one can tear him loose."
      },
      {
        "position": 3,
        "meaning": "A halted retreat\nIs nerve-wracking and dangerous.\nTo retain people as men- and maidservants\nBrings good fortune."
      },
      {
        "position": 4,
        "meaning": "Voluntary retreat brings good fortune to the superior man\nAnd downfall to the inferior man."
      },
      {
        "position": 5,
        "meaning": "Friendly retreat. Perseverance brings good fortune."
      },
      {
        "position": 6,
        "meaning": "Cheerful retreat. Everything serves to further."
      }
    ]
  },
  {
    "number": 34,
    "name": {
      "chinese": "大壯",
      "pinyin": "dà zhuàng",
      "english": "The Power of the Great"
    },
    "trigrams": {
      "above": 4,
      "below": 1
    },
    "judgement": "The Power of the Great. Perseverance furthers.",
    "images": "Thunder in heaven above:\nThe image of the Power of the Great.\nThus the superior man does not tread upon paths\nThat do not accord with established order.",
    "lines": [
      {
        "position": 1,
        "meaning": "Power in the toes.\nContinuing brings misfortune.\nThis is certainly true."
      },
      {
        "position": 2,
        "meaning": "Perseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "The inferior man works through power.\nThe superior man does not act thus.\nTo continue is dangerous.\nA goat butts against a hedge\nAnd gets its horns entangled."
      },
      {
        "position": 4,
        "meaning": "Perseverance brings good fortune.\nRemorse disappears.\nThe hedge opens; there is no entanglement.\nPower depends upon the axle of a big cart."
      },
      {
        "position": 5,
        "meaning": "Loses the goat with ease.\nNo remorse."
      },
      {
        "position": 6,
        "meaning": "A goat butts against a hedge.\nIt cannot go backward, it cannot go forward.\nNothing serves to further.\nIf one notes the difficulty, this brings good fortune."
      }
    ]
  },
  {
    "number": 35,
    "name": {
      "chinese": "",
      "pinyin": "jìn",
      "english": "Progress"
    },
    "trigrams": {
      "above": 3,
      "below": 8
    },
    "judgement": "Progress. The powerful prince\nIs honored with horses in large numbers.\nIn a single day he is granted audience three times.",
    "images": "The sun rises over the earth:\nThe image of Progress.\nThus the superior man himself\nBrightens his bright virtue.",
    "lines": [
      {
        "position": 1,
        "meaning": "Progressing, but turned back.\nPerseverance brings good fortune.\nIf one meets with no confidence, one should remain calm.\nNo mistake."
      },
      {
        "position": 2,
        "meaning": "Progressing, but in sorrow.\nPerseverance brings good fortune.\nThen one obtains great happiness from one's ancestress."
      },
      {
        "position": 3,
        "meaning": "All are in accord. Remorse disappears."
      },
      {
        "position": 4,
        "meaning": "Progress like a hamster.\nPerseverance brings danger."
      },
      {
        "position": 5,
        "meaning": "Remorse disappears.\nTake not gain and loss to heart.\nUndertakings bring good fortune.\nEverything serves to further."
      },
      {
        "position": 6,
        "meaning": "Making progress with the horns is permissible\nOnly for the purpose of punishing one's own city.\nTo be conscious of danger brings good fortune.\nNo blame.\nPerseverance brings humiliation."
      }
    ]
  },
  {
    "number": 36,
    "name": {
      "chinese": "明夷",
      "pinyin": "míng yí",
      "english": "Darkening of the Light"
    },
    "trigrams": {
      "above": 8,
      "below": 3
    },
    "judgement": "Darkening of the Light. In adversity\nIt furthers one to be persevering.",
    "images": "The light has sunk into the earth:\nThe image of Darkening of the Light.\nThus does the superior man live with the great mass:\nHe veils his light, yet still shines.",
    "lines": [
      {
        "position": 1,
        "meaning": "Darkening of the light during flight.\nHe lowers his wings.\nThe superior man does not eat for three days\nOn his wanderings.\nBut he has somewhere to go.\nThe host has occasion to gossip about him."
      },
      {
        "position": 2,
        "meaning": "Darkening of the light injures him in the left thigh.\nHe gives aid with the strength of a horse.\nGood fortune."
      },
      {
        "position": 3,
        "meaning": "Darkening of the light during the hunt in the south.\nTheir great leader is captured.\nOne must not expect perseverance too soon."
      },
      {
        "position": 4,
        "meaning": "He penetrates the left side of the belly.\nOne gets at the very heart of the darkening of the light,\nAnd leaves gate and courtyard."
      },
      {
        "position": 5,
        "meaning": "Darkening of the light as with Prince Chi.\nPerseverance furthers."
      },
      {
        "position": 6,
        "meaning": "Not light but darkness.\nFirst he climbed up to heaven,\nThen he plunged into the depths of the earth."
      }
    ]
  },
  {
    "number": 37,
    "name": {
      "chinese": "家人",
      "pinyin": "jiā rén",
      "english": "The Family [The Clan]"
    },
    "trigrams": {
      "above": 5,
      "below": 3
    },
    "judgement": "The Family. The perseverance of the woman furthers.",
    "images": "Wind comes forth from fire:\nThe image of the Family.\nThus the superior man has substance in his words\nAnd duration in his way of life.",
    "lines": [
      {
        "position": 1,
        "meaning": "Firm seclusion within the family.\nRemorse disappears."
      },
      {
        "position": 2,
        "meaning": "She should not follow her whims.\nShe must attend within to the food.\nPerseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "When tempers flare up in the family,\nToo great severity brings remorse.\nGood fortune nonetheless.\nWhen woman and child dally and laugh,\nIt leads in the end to humiliation."
      },
      {
        "position": 4,
        "meaning": "She is the treasure of the house.\nGreat good fortune."
      },
      {
        "position": 5,
        "meaning": "As a king he approaches his family.\nFear not.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "His work commands respect.\nIn the end good fortune comes."
      }
    ]
  },
  {
    "number": 38,
    "name": {
      "chinese": "",
      "pinyin": "kuí",
      "english": "Opposition"
    },
    "trigrams": {
      "above": 3,
      "below": 2
    },
    "judgement": "Opposition. In small matters, good fortune.",
    "images": "Above, fire; below, the lake:\nThe image of Opposition.\nThus amid all fellowship\nThe superior man retains his individuality.",
    "lines": [
      {
        "position": 1,
        "meaning": "Remorse disappears.\nIf you lose your horse, do not run after it;\nIt will come back of its own accord.\nWhen you see evil people,\nGuard yourself against mistakes."
      },
      {
        "position": 2,
        "meaning": "One meets his lord in a narrow street.\nNo blame."
      },
      {
        "position": 3,
        "meaning": "One sees the wagon dragged back,\nThe oxen halted,\nA man's hair and nose cut off.\nNot a good beginning, but a good end."
      },
      {
        "position": 4,
        "meaning": "Isolated through opposition,\nOne meets a like-minded man\nWith whom one can associate in good faith.\nDespite the danger, no blame."
      },
      {
        "position": 5,
        "meaning": "Remorse disappears.\nThe companion bites his way through the wrappings.\nIf one goes to him,\nHow could it be a mistake?"
      },
      {
        "position": 6,
        "meaning": "Isolated through opposition,\nOne sees one's companion as a pig covered with dirt,\nAs a wagon full of devils.\nFirst one draws a bow against him,\nThen one lays the bow aside.\nHe is not a robber; he will woo at the right time.\nAs one goes, rain falls; then good fortune comes."
      }
    ]
  },
  {
    "number": 39,
    "name": {
      "chinese": "",
      "pinyin": "jiǎn",
      "english": "Obstruction"
    },
    "trigrams": {
      "above": 6,
      "below": 7
    },
    "judgement": "Obstruction. The southwest furthers.\nThe northeast does not further.\nIt furthers one to see the great man.\nPerseverance brings good fortune.",
    "images": "Water on the mountain:\nThe image of Obstruction.\nThus the superior man turns his attention to himself\nAnd molds his character.",
    "lines": [
      {
        "position": 1,
        "meaning": "Going leads to obstructions,\nComing meets with praise."
      },
      {
        "position": 2,
        "meaning": "The king's servant is beset by obstruction upon obstruction,\nBut it is not his own fault."
      },
      {
        "position": 3,
        "meaning": "Going leads to obstructions;\nHence he comes back."
      },
      {
        "position": 4,
        "meaning": "Going leads to obstructions,\nComing leads to union."
      },
      {
        "position": 5,
        "meaning": "In the midst of the greatest obstructions,\nFriends come."
      },
      {
        "position": 6,
        "meaning": "Going leads to obstructions,\nComing leads to great good fortune.\nIt furthers one to see the great man."
      }
    ]
  },
  {
    "number": 40,
    "name": {
      "chinese": "",
      "pinyin": "xiè",
      "english": "Deliverance"
    },
    "trigrams": {
      "above": 4,
      "below": 6
    },
    "judgement": "Deliverance. The southwest furthers.\nIf there is no longer anything where one has to go,\nReturn brings good fortune.\nIf there is still something where one has to go,\nHastening brings good fortune.",
    "images": "Thunder and rain set in:\nThe image of Deliverance.\nThus the superior man pardons mistakes\nAnd forgives misdeeds.",
    "lines": [
      {
        "position": 1,
        "meaning": "Without blame."
      },
      {
        "position": 2,
        "meaning": "One kills three foxes in the field\nAnd receives a yellow arrow.\nPerseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "If a man carries a burden on his back\nAnd nonetheless rides in a carriage,\nHe thereby encourages robbers to draw near.\nPerseverance leads to humiliation."
      },
      {
        "position": 4,
        "meaning": "Deliver yourself from your great toe.\nThen the companion comes,\nAnd him you can trust."
      },
      {
        "position": 5,
        "meaning": "If only the superior man can deliver himself,\nIt brings good fortune.\nThus he proves to inferior men that he is in earnest."
      },
      {
        "position": 6,
        "meaning": "The prince shoots at a hawk on a high wall.\nHe kills it. Everything serves to further."
      }
    ]
  },
  {
    "number": 41,
    "name": {
      "chinese": "",
      "pinyin": "sǔn",
      "english": "Decrease"
    },
    "trigrams": {
      "above": 7,
      "below": 2
    },
    "judgement": "Decrease combined with sincerity\nBrings about supreme good fortune\nWithout blame.\nOne may be persevering in this.\nIt furthers one to undertake something.\nHow is this to be carried out?\nOne may use two small bowls for the sacrifice.",
    "images": "At the foot of the mountain, the lake:\nThe image of Decrease.\nThus the superior man controls his anger\nAnd restrains his instincts.",
    "lines": [
      {
        "position": 1,
        "meaning": "Going quickly when one's tasks are finished\nIs without blame.\nBut one must reflect on how much one may decrease others."
      },
      {
        "position": 2,
        "meaning": "Perseverance furthers.\nTo undertake something brings misfortune.\nWithout decreasing oneself,\nOne is able to bring increase to others."
      },
      {
        "position": 3,
        "meaning": "When three people journey together,\nTheir number decreases by one.\nWhen one man journeys alone,\nHe finds a companion."
      },
      {
        "position": 4,
        "meaning": "If a man decreases his faults,\nIt makes the other hasten to come and rejoice.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "Someone does indeed increase him.\nTen pairs of tortoises cannot oppose it.\nSupreme good fortune."
      },
      {
        "position": 6,
        "meaning": "If one is increased without depriving others,\nThere is no blame.\nPerseverance brings good fortune.\nIt furthers one to undertake something.\nOne obtains servants\nBut no longer has a separate home."
      }
    ]
  },
  {
    "number": 42,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Increase"
    },
    "trigrams": {
      "above": 5,
      "below": 4
    },
    "judgement": "Increase. It furthers one\nTo undertake something.\nIt furthers one to cross the great water.",
    "images": "Wind and thunder: the image of Increase.\nThus the superior man:\nIf he sees good, he imitates it;\nIf he has faults, he rids himself of them.",
    "lines": [
      {
        "position": 1,
        "meaning": "It furthers one to accomplish great deeds.\nSupreme good fortune. No blame."
      },
      {
        "position": 2,
        "meaning": "Someone does indeed increase him;\nTen pairs of tortoises cannot oppose it.\nConstant perseverance brings good fortune.\nThe king presents him before God.\nGood fortune."
      },
      {
        "position": 3,
        "meaning": "One is enriched through unfortunate events.\nNo blame, if you are sincere\nAnd walk in the middle,\nAnd report with a seal to the prince."
      },
      {
        "position": 4,
        "meaning": "If you walk in the middle\nAnd report to the prince,\nHe will follow.\nIt furthers one to be used\nIn the removal of the capital."
      },
      {
        "position": 5,
        "meaning": "If in truth you have a kind heart, ask not.\nSupreme good fortune.\nTruly, kindness will be recognized as your virtue."
      },
      {
        "position": 6,
        "meaning": "He brings increase to no one.\nIndeed, someone even strikes him.\nHe does not keep his heart constantly steady.\nMisfortune."
      }
    ]
  },
  {
    "number": 43,
    "name": {
      "chinese": "",
      "pinyin": "guài",
      "english": "Break-through (Resoluteness)"
    },
    "trigrams": {
      "above": 2,
      "below": 1
    },
    "judgement": "Break-through. One must resolutely make the matter known\nAt the court of the king.\nIt must be announced truthfully. Danger.\nIt is necessary to notify one's own city.\nIt does not further to resort to arms.\nIt furthers one to undertake something.,",
    "images": "The lake has risen up to heaven:\nThe image of Break-through.\nThus the superior man\nDispenses riches downward\nAnd refrains from resting on his virtue.",
    "lines": [
      {
        "position": 1,
        "meaning": "Mighty in the forward-striding toes.\nWhen one goes and is not equal to the task,\nOne makes a mistake."
      },
      {
        "position": 2,
        "meaning": "A cry of alarm. Arms at evening and at night.\nFear nothing."
      },
      {
        "position": 3,
        "meaning": "To be powerful in the cheekbones\nBrings misfortune.\nThe superior man is firmly resolved.\nHe walks alone and is caught in the rain.\nHe is bespattered,\nAnd people murmur against him.\nNo blame."
      },
      {
        "position": 4,
        "meaning": "There is no skin on his thighs,\nAnd walking comes hard.\nIf a man were to let himself be led like a sheep,\nRemorse would disappear.\nBut if these words are heard\nThey will not be believed."
      },
      {
        "position": 5,
        "meaning": "In dealing with weeds,\nFirm resolution is necessary.\nWalking in the middle\nRemains free of blame."
      },
      {
        "position": 6,
        "meaning": "No cry.\nIn the end misfortune comes."
      }
    ]
  },
  {
    "number": 44,
    "name": {
      "chinese": "",
      "pinyin": "gòu",
      "english": "Coming to Meet"
    },
    "trigrams": {
      "above": 1,
      "below": 5
    },
    "judgement": "Coming to Meet. The maiden is powerful.\nOne should not marry such a maiden.",
    "images": "Under heaven, wind:\nThe image of Coming to Meet.\nThus does the prince act when disseminating his commands\nAnd proclaiming them to the four quarters of heaven.",
    "lines": [
      {
        "position": 1,
        "meaning": "It must be checked with a brake of bronze.\nPerseverance brings good fortune.\nIf one lets it take its course, one experiences misfortune.\nEven a lean pig has it in him to rage around."
      },
      {
        "position": 2,
        "meaning": "There is a fish in the tank. No blame.\nDoes not further guests."
      },
      {
        "position": 3,
        "meaning": "There is no skin on his thighs,\nAnd walking comes hard.\nIf one is mindful of the danger,\nNo great mistake is made."
      },
      {
        "position": 4,
        "meaning": "No fish in the tank.\nThis leads to misfortune."
      },
      {
        "position": 5,
        "meaning": "A melon covered with willow leaves.\nHidden lines.\nThen it drops down to one from heaven."
      },
      {
        "position": 6,
        "meaning": "He comes to meet with his horns.\nHumiliation. No blame."
      }
    ]
  },
  {
    "number": 45,
    "name": {
      "chinese": "",
      "pinyin": "cuì",
      "english": "Gathering Together [Massing]"
    },
    "trigrams": {
      "above": 2,
      "below": 8
    },
    "judgement": "Gathering Together. Success.\nThe king approaches his temple.\nIt furthers one to see the great man.\nThis brings success. Perseverance furthers.\nTo bring great offerings creates good fortune.\nIt furthers one to undertake something.",
    "images": "Over the earth, the lake:\nThe image of Gathering Together.\nThus the superior man renews his weapons\nIn order to meet the unforseen.",
    "lines": [
      {
        "position": 1,
        "meaning": "If you are sincere, but not to the end,\nThere will sometimes be confusion, sometimes gathering together.\nIf you call out,\nThen after one grasp of the hand you can laugh again.\nRegret not. Going is without blame."
      },
      {
        "position": 2,
        "meaning": "Letting oneself be drawn\nBrings good fortune and remains blameless.\nIf one is sincere,\nIt furthers one to bring even a small offering."
      },
      {
        "position": 3,
        "meaning": "Gathering together amid sighs.\nNothing that would further.\nGoing is without blame.\nSlight humiliation."
      },
      {
        "position": 4,
        "meaning": "Great good fortune. No blame."
      },
      {
        "position": 5,
        "meaning": "If in gathering together one has position,\nThis brings no blame.\nIf there are some who are not yet sincerely in the work,\nSublime and enduring perseverance is needed.\nThen remorse disappears."
      },
      {
        "position": 6,
        "meaning": "Lamenting and sighing, floods of tears.\nNo blame."
      }
    ]
  },
  {
    "number": 46,
    "name": {
      "chinese": "",
      "pinyin": "shēng",
      "english": "Pushing Upward"
    },
    "trigrams": {
      "above": 8,
      "below": 5
    },
    "judgement": "Pushing Upward has supreme success.\nOne must see the great man.\nFear not.\nDeparture toward the south\nBrings good fortune.",
    "images": "Within the earth, wood grows:\nThe image of Pushing Upward.\nThus the superior man of devoted character\nHeaps up small things\nIn order to achieve something high and great.",
    "lines": [
      {
        "position": 1,
        "meaning": "Pushing upward that meets with confidence\nBrings great good fortune."
      },
      {
        "position": 2,
        "meaning": "If one is sincere,\nIt furthers one to bring even a small offering.\nNo blame."
      },
      {
        "position": 3,
        "meaning": "One pushes upward into an empty city."
      },
      {
        "position": 4,
        "meaning": "The king offers him Mount Ch'i.\nGood fortune. No blame."
      },
      {
        "position": 5,
        "meaning": "Perseverance brings good fortune.\nOne pushes upward by steps."
      },
      {
        "position": 6,
        "meaning": "Pushing upward in darkness.\nIt furthers one\nTo be unremittingly persevering."
      }
    ]
  },
  {
    "number": 47,
    "name": {
      "chinese": "",
      "pinyin": "kùn",
      "english": "Oppression (Exhaustion)"
    },
    "trigrams": {
      "above": 2,
      "below": 6
    },
    "judgement": "Oppression. Success. Perseverance.\nThe great man brings about good fortune.\nNo blame.\nWhen one has something to say,\nIt is not believed.",
    "images": "There is no water in the lake:\nThe image of Exhaustion.\nThus the superior man stakes his life\nOn following his will.",
    "lines": [
      {
        "position": 1,
        "meaning": "One sits oppressed under a bare tree\nAnd strays into a gloomy valley.\nFor three years one sees nothing."
      },
      {
        "position": 2,
        "meaning": "One is oppressed while at meat and drink.\nThe man with the scarlet knee bands is just coming.\nIt furthers one to offer sacrifice.\nTo set forth brings misfortune.\nNo blame."
      },
      {
        "position": 3,
        "meaning": "A man permits himself to be oppressed by stone,\nAnd leans on thorns and thistles.\nHe enters his house and does not see his wife.\nMisfortune."
      },
      {
        "position": 4,
        "meaning": "He comes very quietly, oppressed in a golden carriage.\nHumiliation, but the end is reached."
      },
      {
        "position": 5,
        "meaning": "His nose and feet are cut off.\nOppression at the hands of the man with the purple knee bands.\nJoy comes softly.\nIt furthers one to make offerings and libations."
      },
      {
        "position": 6,
        "meaning": "He is oppressed by creeping vines.\nHe moves uncertainly and says, \"Movement brings remorse.\"\nIf one feels remorse over this and makes a start,\nGood fortune comes."
      }
    ]
  },
  {
    "number": 48,
    "name": {
      "chinese": "",
      "pinyin": "jǐng",
      "english": "The Well"
    },
    "trigrams": {
      "above": 6,
      "below": 5
    },
    "judgement": "The Well. The town may be changed,\nBut the well cannot be changed.\nIt neither decreases nor increases.\nThey come and go and draw from the well.\nIf one gets down almost to the water\nAnd the rope does not go all the way,\nOr the jug breaks, it brings misfortune.",
    "images": "Water over wood: the image of the Well.\nThus the superior man encourages the people at their work,\nAnd exhorts them to help one another.",
    "lines": [
      {
        "position": 1,
        "meaning": "One does not drink the mud of the well.\nNo animals come to an old well."
      },
      {
        "position": 2,
        "meaning": "At the wellhole one shoots fishes.\nThe jug is broken and leaks."
      },
      {
        "position": 3,
        "meaning": "The well is cleaned, but no one drinks from it.\nThis is my heart's sorrow,\nFor one might draw from it.\nIf the king were clear-minded,\nGood fortune might be enjoyed in common."
      },
      {
        "position": 4,
        "meaning": "The well is being lined. No blame."
      },
      {
        "position": 5,
        "meaning": "In the well there is a clear, cold spring\nFrom which one can drink."
      },
      {
        "position": 6,
        "meaning": "One draws from the well\nWithout hindrance.\nIt is dependable.\nSupreme good fortune."
      }
    ]
  },
  {
    "number": 49,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "Revolution (Molting)"
    },
    "trigrams": {
      "above": 2,
      "below": 3
    },
    "judgement": "Revolution. On your own day\nYou are believed.\nSupreme success,\nFurthering through perseverance.\nRemorse disappears.",
    "images": "Fire in the lake: the image of Revolution.\nThus the superior man\nSets the calendar in order\nAnd makes the seasons clear.",
    "lines": [
      {
        "position": 1,
        "meaning": "Wrapped in the hide of a yellow cow."
      },
      {
        "position": 2,
        "meaning": "When one's own day comes, one may create revolution.\nStarting brings good fortune. No blame."
      },
      {
        "position": 3,
        "meaning": "Starting brings misfortune.\nPerseverance brings danger.\nWhen talk of revolution has gone the rounds three times,\nOne may commit himself,\nAnd men will believe him."
      },
      {
        "position": 4,
        "meaning": "Remorse disappears. Men believe him.\nChanging the form of government brings good fortune."
      },
      {
        "position": 5,
        "meaning": "The great man changes like a tiger.\nEven before he questions the oracle\nHe is believed."
      },
      {
        "position": 6,
        "meaning": "The superior man changes like a panther.\nThe inferior man molts in the face.\nStarting brings misfortune.\nTo remain persevering brings good fortune."
      }
    ]
  },
  {
    "number": 50,
    "name": {
      "chinese": "",
      "pinyin": "dǐng",
      "english": "The Caldron"
    },
    "trigrams": {
      "above": 3,
      "below": 5
    },
    "judgement": "The Caldron. Supreme good fortune.\nSuccess.",
    "images": "Fire over wood:\nThe image of the Caldron.\nThus the superior man consolidates his fate\nBy making his position correct.",
    "lines": [
      {
        "position": 1,
        "meaning": "A cauldron with legs upturned.\nFurthers removal of stagnating stuff.\nOne takes a concubine for the sake of her son.\nNo blame."
      },
      {
        "position": 2,
        "meaning": "There is food in the cauldron.\nMy comrades are envious,\nBut they cannot harm me.\nGood fortune."
      },
      {
        "position": 3,
        "meaning": "The handle of the cauldron is altered.\nOne is impeded in his way of life.\nThe fat of the pheasant is not eaten.\nOnce rain falls, remorse is spent.\nGood fortune comes in the end."
      },
      {
        "position": 4,
        "meaning": "The legs of the cauldron are broken.\nThe prince's meal is spilled\nAnd his person is soiled.\nMisfortune."
      },
      {
        "position": 5,
        "meaning": "The cauldron has yellow handles, golden carrying rings.\nPerseverance furthers."
      },
      {
        "position": 6,
        "meaning": "The cauldron has rings of jade.\nGreat good fortune.\nNothing that would not act to further."
      }
    ]
  },
  {
    "number": 51,
    "name": {
      "chinese": "",
      "pinyin": "zhèn",
      "english": "The Arousing (Shock, Thunder)"
    },
    "trigrams": {
      "above": 4,
      "below": 4
    },
    "judgement": "Shock brings success.\nShock comes(emoh, oh!\nLaughing words(emha, ha!\nThe shock terrifies for a hundred miles,\nAnd he does not let fall the sacrificial spoon and chalice.,",
    "images": "Thunder repeated: the image of Shock.\nThus in fear and trembling\nThe superior man sets his life in order\nAnd examines himself.",
    "lines": [
      {
        "position": 1,
        "meaning": "Shock comes - \"oh, oh!\"\nThen follow laughing words - \"ha, ha!\"\nGood fortune."
      },
      {
        "position": 2,
        "meaning": "Shock comes bringing danger.\nA hundred thousand times\nYou lose your treasures\nAnd must climb the nine hills.\nDo not go in pursuit of them.\nAfter seven days you will get them back."
      },
      {
        "position": 3,
        "meaning": "Shock comes and makes one distraught.\nIf shock spurs to action\nOne remains free of misfortune."
      },
      {
        "position": 4,
        "meaning": "Shock is mired."
      },
      {
        "position": 5,
        "meaning": "Shock goes hither and thither.\nDanger.\nHowever, nothing at all is lost.\nYet there are things to be done."
      },
      {
        "position": 6,
        "meaning": "Shock brings ruin and terrified gazing around.\nGoing ahead brings misfortune.\nIf it has not yet touched one's own body\nBut has reached one's neighbor first,\nThere is no blame.\nOne's comrades have something to talk about."
      }
    ]
  },
  {
    "number": 52,
    "name": {
      "chinese": "",
      "pinyin": "gèn",
      "english": "Keeping Still, Mountain"
    },
    "trigrams": {
      "above": 7,
      "below": 7
    },
    "judgement": "Keeping Still. Keeping his back still\nSo that he no longer feels his body.\nHe goes into his courtyard\nAnd does not see his people.\nNo blame.",
    "images": "Mountains standing close together:\nThe image of Keeping Still.\nThus the superior man\nDoes not permit his thoughts\nTo go beyond his situation.",
    "lines": [
      {
        "position": 1,
        "meaning": "Keeping his toes still.\nNo blame.\nContinued perseverance furthers."
      },
      {
        "position": 2,
        "meaning": "Keeping his calves still.\nHe cannot rescue him whom he follows.\nHis heart is not glad."
      },
      {
        "position": 3,
        "meaning": "Keeping his hips still.\nMaking his sacrum stiff.\nDangerous. The heart suffocates."
      },
      {
        "position": 4,
        "meaning": "Keeping his trunk still.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "Keeping his jaws still.\nThe words have order.\nRemorse disappears."
      },
      {
        "position": 6,
        "meaning": "Noblehearted keeping still.\nGood fortune."
      }
    ]
  },
  {
    "number": 53,
    "name": {
      "chinese": "",
      "pinyin": "jiàn",
      "english": "Development (Gradual Progress)"
    },
    "trigrams": {
      "above": 5,
      "below": 7
    },
    "judgement": "Development. The maiden\nIs given in marriage.\nGood fortune.\nPerseverance furthers.",
    "images": "On the mountain, a tree:\nThe image of Development.\nThus the superior man abides in dignity and virtue,\nIn order to improve the mores.",
    "lines": [
      {
        "position": 1,
        "meaning": "The wild goose gradually draws near the shore.\nThe young son is in danger.\nThere is talk. No blame."
      },
      {
        "position": 2,
        "meaning": "The wild goose gradually draws near the cliff.\nEating and drinking in peace and concord.\nGood fortune."
      },
      {
        "position": 3,
        "meaning": "The wild goose gradually draws near the plateau.\nThe man goes forth and does not return.\nThe woman carries a child but does not bring it forth.\nMisfortune.\nIt furthers one to fight off robbers."
      },
      {
        "position": 4,
        "meaning": "The wild goose gradually draws near the tree.\nPerhaps it will find a flat branch. No blame."
      },
      {
        "position": 5,
        "meaning": "The wild goose gradually draws near the summit.\nFor three years the woman has no child.\nIn the end nothing can hinder her.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "The wild goose gradually draws near the cloud heights.\nIts feathers can be used for the sacred dance.\nGood fortune."
      }
    ]
  },
  {
    "number": 54,
    "name": {
      "chinese": "歸妹",
      "pinyin": "guī mèi",
      "english": "The Marrying Maiden"
    },
    "trigrams": {
      "above": 4,
      "below": 2
    },
    "judgement": "The Marrying Maiden.\nUndertakings bring misfortune.\nNothing that would further.",
    "images": "Thunder over the lake:\nThe image of the Marrying Maiden.\nThus the superior man\nUnderstands the transitory\nIn the light of the eternity of the end.",
    "lines": [
      {
        "position": 1,
        "meaning": "The marrying maiden as a concubine.\nA lame man who is able to tread.\nUndertakings bring good fortune."
      },
      {
        "position": 2,
        "meaning": "A one-eyed man who is able to see.\nThe perseverance of a solitary man furthers."
      },
      {
        "position": 3,
        "meaning": "The marrying maiden as a slave.\nShe marries as a concubine."
      },
      {
        "position": 4,
        "meaning": "The marrying maiden draws out the allotted time.\nA late marriage comes in due course."
      },
      {
        "position": 5,
        "meaning": "The sovereign I gave his daughter in marriage.\nThe embroidered garments of the princess\nWere not as gorgeous\nAs those of the servingmaid.\nThe moon that is nearly full\nBrings good fortune."
      },
      {
        "position": 6,
        "meaning": "The woman holds the basket, but there are no fruits in it.\nThe man stabs the sheep, but no blood flows.\nNothing that acts to further."
      }
    ]
  },
  {
    "number": 55,
    "name": {
      "chinese": "",
      "pinyin": "fēng",
      "english": "Abundance [Fullness]"
    },
    "trigrams": {
      "above": 4,
      "below": 3
    },
    "judgement": "Abundance has success.\nThe king attains abundance.\nBe not sad.\nBe like the sun at midday.",
    "images": "Both thunder and lightning come:\nThe image of Abundance.\nThus the superior man decides lawsuits\nAnd carries out punishments.",
    "lines": [
      {
        "position": 1,
        "meaning": "When a man meets his destined ruler,\nThey can be together ten days,\nAnd it is not a mistake.\nGoing meets with recognition."
      },
      {
        "position": 2,
        "meaning": "The curtain is of such fullness\nThat the polestars can be seen at noon.\nThrough going one meets with mistrust and hate.\nIf one rouses him through truth,\nGood fortune comes."
      },
      {
        "position": 3,
        "meaning": "The underbrush is of such abundance\nThat the small stars can be seen at noon.\nHe breaks his right arm. No blame."
      },
      {
        "position": 4,
        "meaning": "The curtain is of such fullness\nThat the polestars can be seen at noon.\nHe meets his ruler, who is of like kind.\nGood fortune."
      },
      {
        "position": 5,
        "meaning": "Lines are coming,\nBlessing and fame draw near.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "His house is in a state of abundance.\nHe screens off his family.\nHe peers through the gate\nAnd no longer perceives anyone.\nFor three years he sees nothing.\nMisfortune."
      }
    ]
  },
  {
    "number": 56,
    "name": {
      "chinese": "",
      "pinyin": "",
      "english": "The Wanderer"
    },
    "trigrams": {
      "above": 3,
      "below": 7
    },
    "judgement": "The Wanderer. Success through smallness.\nPerseverance brings good fortune\nTo the wanderer.",
    "images": "Fire on the mountain:\nThe image of the Wanderer.\nThus the superior man\nIs clear-minded and cautious\nIn imposing penalties,\nAnd protracts no lawsuits.",
    "lines": [
      {
        "position": 1,
        "meaning": "If the wanderer busies himself with trivial things,\nHe draws down misfortune upon himself."
      },
      {
        "position": 2,
        "meaning": "The wanderer comes to an inn.\nHe has his property with him.\nHe wins the steadfastness of a young servant."
      },
      {
        "position": 3,
        "meaning": "The wanderer's inn burns down.\nHe loses the steadfastness of his young servant.\nDanger."
      },
      {
        "position": 4,
        "meaning": "The wanderer rests in a shelter.\nHe obtains his property and an ax.\nMy heart is not glad."
      },
      {
        "position": 5,
        "meaning": "He shoots a pheasant.\nIt drops with the first arrow.\nIn the end this brings both praise and office."
      },
      {
        "position": 6,
        "meaning": "The bird's nest burns up.\nThe wanderer laughs at first,\nThen must needs lament and weep.\nThrough carelessness he loses his cow.\nMisfortune."
      }
    ]
  },
  {
    "number": 57,
    "name": {
      "chinese": "",
      "pinyin": "xùn",
      "english": "The Gentle (The Penetrating, Wind)"
    },
    "trigrams": {
      "above": 5,
      "below": 5
    },
    "judgement": "The Gentle. Success through what is small.\nIt furthers one to have somewhere to go.\nIt furthers one to see the great man.",
    "images": "Winds following one upon the other:\nThe image of the Gently Penetrating.\nThus the superior man\nSpreads his commands abroad\nAnd carries out his undertakings.",
    "lines": [
      {
        "position": 1,
        "meaning": "In advancing and in retreating,\nThe perseverance of a warrior furthers."
      },
      {
        "position": 2,
        "meaning": "Penetration under the bed.\nPriests and magicians are used in great number.\nGood fortune. No blame."
      },
      {
        "position": 3,
        "meaning": "Repeated penetration. Humiliation."
      },
      {
        "position": 4,
        "meaning": "Remorse vanishes.\nDuring the hunt\nThree kinds of game are caught."
      },
      {
        "position": 5,
        "meaning": "Perseverance brings good fortune.\nRemorse vanishes.\nNothing that does not further.\nNo beginning, but an end.\nBefore the change, three days.\nAfter the change, three days.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "Penetration under the bed.\nHe loses his property and his ax.\nPerseverance brings misfortune."
      }
    ]
  },
  {
    "number": 58,
    "name": {
      "chinese": "",
      "pinyin": "duì",
      "english": "The Joyous, Lake"
    },
    "trigrams": {
      "above": 2,
      "below": 2
    },
    "judgement": "The Joyous. Success.\nPerseverance is favorable.",
    "images": "Lakes resting one on the other:\nThe image of the Joyous.\nThus the superior man joins with his friends\nFor discussion and practice.",
    "lines": [
      {
        "position": 1,
        "meaning": "Contented joyousness. Good fortune."
      },
      {
        "position": 2,
        "meaning": "Sincere joyousness. Good fortune.\nRemorse disappears."
      },
      {
        "position": 3,
        "meaning": "Coming joyousness. Misfortune."
      },
      {
        "position": 4,
        "meaning": "Joyousness that is weighed is not at peace.\nAfter ridding himself of mistakes a man has joy."
      },
      {
        "position": 5,
        "meaning": "Sincerity toward disintegrating influences is dangerous."
      },
      {
        "position": 6,
        "meaning": "Seductive joyousness."
      }
    ]
  },
  {
    "number": 59,
    "name": {
      "chinese": "",
      "pinyin": "huàn",
      "english": "Dispersion [Dissolution]"
    },
    "trigrams": {
      "above": 5,
      "below": 6
    },
    "judgement": "Dispersion. Success.\nThe king approaches his temple.\nIt furthers one to cross the great water.\nPerseverance furthers.",
    "images": "The wind drives over the water:\nThe image of Dispersion.\nThus the kings of old sacrificed to the Lord\nAnd built temples.",
    "lines": [
      {
        "position": 1,
        "meaning": "He brings help with the strength of a horse.\nGood fortune."
      },
      {
        "position": 2,
        "meaning": "At the dissolution\nHe hurries to that which supports him.\nRemorse disappears."
      },
      {
        "position": 3,
        "meaning": "He dissolves his self. No remorse."
      },
      {
        "position": 4,
        "meaning": "He dissolves his bond with his group.\nSupreme good fortune.\nDispersion leads in turn to accumulation.\nThis is something that ordinary men do not think of."
      },
      {
        "position": 5,
        "meaning": "His loud cries are as dissolving as sweat.\nDissolution. A king abides without blame."
      },
      {
        "position": 6,
        "meaning": "He dissolves his blood.\nDeparting, keeping at a distance, going out,\nIs without blame."
      }
    ]
  },
  {
    "number": 60,
    "name": {
      "chinese": "",
      "pinyin": "jié",
      "english": "Limitation"
    },
    "trigrams": {
      "above": 6,
      "below": 2
    },
    "judgement": "Limitation. Success.\nGalling limitation must not be persevered in.",
    "images": "Water over lake: the image of Limitation.\nThus the superior man\nCreates number and measure,\nAnd examines the nature of virtue and correct conduct.",
    "lines": [
      {
        "position": 1,
        "meaning": "Not going out of the door and the courtyard\nIs without blame."
      },
      {
        "position": 2,
        "meaning": "Not going out of the gate and the courtyard\nBrings misfortune."
      },
      {
        "position": 3,
        "meaning": "He who knows no limitation\nWill have cause to lament.\nNo blame."
      },
      {
        "position": 4,
        "meaning": "Contented limitation. Success."
      },
      {
        "position": 5,
        "meaning": "Sweet limitation brings good fortune.\nGoing brings esteem."
      },
      {
        "position": 6,
        "meaning": "Galling limitation.\nPerseverance brings misfortune.\nRemorse disappears."
      }
    ]
  },
  {
    "number": 61,
    "name": {
      "chinese": "中孚",
      "pinyin": "zhōng fú",
      "english": "Inner Truth"
    },
    "trigrams": {
      "above": 5,
      "below": 2
    },
    "judgement": "Inner Truth. Pigs and fishes.\nGood fortune.\nIt furthers one to cross the great water.\nPerseverance furthers.",
    "images": "Wind over lake: the image of Inner Truth.\nThus the superior man discusses criminal cases\nIn order to delay executions.",
    "lines": [
      {
        "position": 1,
        "meaning": "Being prepared brings good fortune.\nIf there are secret designs, it is disquieting."
      },
      {
        "position": 2,
        "meaning": "A crane calling in the shade.\nIts young answers it.\nI have a good goblet.\nI will share it with you."
      },
      {
        "position": 3,
        "meaning": "He finds a comrade.\nNow he beats the drum, now he stops.\nNow he sobs, now he sings."
      },
      {
        "position": 4,
        "meaning": "The moon nearly at the full.\nThe team horse goes astray.\nNo blame."
      },
      {
        "position": 5,
        "meaning": "He possesses truth, which links together.\nNo blame."
      },
      {
        "position": 6,
        "meaning": "Cockcrow penetrating to heaven.\nPerseverance brings misfortune."
      }
    ]
  },
  {
    "number": 62,
    "name": {
      "chinese": "小過",
      "pinyin": "xiǎo guò",
      "english": "Preponderance of the Small"
    },
    "trigrams": {
      "above": 4,
      "below": 7
    },
    "judgement": "Preponderance of the Small. Success.\nPerseverance furthers.\nSmall things may be done; great things should not be done.\nThe flying bird brings the message:\nIt is not well to strive upward,\nIt is well to remain below.\nGreat good fortune.,",
    "images": "Thunder on the mountain:\nThe image of Preponderance of the Small.\nThus in his conduct the superior man gives preponderance to reverence.\nIn bereavement he gives preponderance to grief.\nIn his expenditures he gives preponderance to thrift.",
    "lines": [
      {
        "position": 1,
        "meaning": "The bird meets with misfortune through flying."
      },
      {
        "position": 2,
        "meaning": "She passes by her ancestor\nAnd meets her ancestress.\nHe does not reach his prince\nAnd meets the official.\nNo blame."
      },
      {
        "position": 3,
        "meaning": "If one is not extremely careful,\nSomebody may come up from behind and strike him.\nMisfortune."
      },
      {
        "position": 4,
        "meaning": "No blame. He meets him without passing by.\nGoing brings danger. One must be on guard.\nDo not act. Be constantly persevering."
      },
      {
        "position": 5,
        "meaning": "Dense clouds,\nNo rain from our western territory.\nThe prince shoots and hits him who is in the cave."
      },
      {
        "position": 6,
        "meaning": "He passes him by, not meeting him.\nThe flying bird leaves him.\nMisfortune.\nThis means bad luck and injury."
      }
    ]
  },
  {
    "number": 63,
    "name": {
      "chinese": "既濟",
      "pinyin": "jì jì",
      "english": "After Completion"
    },
    "trigrams": {
      "above": 6,
      "below": 3
    },
    "judgement": "After Completion. Success in small matters.\nPerseverance furthers.\nAt the beginning good fortune,\nAt the end disorder.",
    "images": "Water over fire: the image of the condition\nIn After Completion.\nThus the superior man\nTakes thought of misfortune\nAnd arms himself against it in advance.",
    "lines": [
      {
        "position": 1,
        "meaning": "He brakes his wheels.\nHe gets his tail in the water.\nNo blame."
      },
      {
        "position": 2,
        "meaning": "The woman loses the curtain of her carriage.\nDo not run after it;\nOn the seventh day you will get it."
      },
      {
        "position": 3,
        "meaning": "The Illustrious Ancestor\nDisciplines the Devil's Country.\nAfter three years he conquers it.\nInferior people must not be employed."
      },
      {
        "position": 4,
        "meaning": "The finest clothes turn to rags.\nBe careful all day long."
      },
      {
        "position": 5,
        "meaning": "The neighbor in the east who slaughters an ox\nDoes not attain as much real happiness\nAs the neighbor in the west\nWith his small offering."
      },
      {
        "position": 6,
        "meaning": "He gets his head in the water. Danger."
      }
    ]
  },
  {
    "number": 64,
    "name": {
      "chinese": "未濟",
      "pinyin": "wèi jì",
      "english": "Before Completion"
    },
    "trigrams": {
      "above": 3,
      "below": 6
    },
    "judgement": "Before Completion. Success.\nBut if the little fox, after nearly completing the crossing,\nGets his tail in the water,\nThere is nothing that would further.",
    "images": "Fire over water: The image of the condition before transition.\nThus the superior man is careful\nIn the differentiation of things,\nSo that each finds its place.",
    "lines": [
      {
        "position": 1,
        "meaning": "He gets his tail in the water.\nHumiliating."
      },
      {
        "position": 2,
        "meaning": "He brakes his wheels.\nPerseverance brings good fortune."
      },
      {
        "position": 3,
        "meaning": "Before completion, attack brings misfortune.\nIt furthers one to cross the great water."
      },
      {
        "position": 4,
        "meaning": "Perseverance brings good fortune.\nRemorse disappears.\nShock, thus to discipline the Devil's Country.\nFor three years, great realms are awarded."
      },
      {
        "position": 5,
        "meaning": "Perseverance brings good fortune.\nNo remorse.\nThe light of the superior man is true.\nGood fortune."
      },
      {
        "position": 6,
        "meaning": "There is drinking of wine\nIn genuine confidence. No blame.\nBut if one wets his head,\nHe loses it, in truth."
      }
    ]
  }
]