1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042
|
<http://tristan.github.com/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertor> .
<http://tristan.github.com/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://tristan.github.com/foaf#me> <http://xmlns.com/foaf/0.1/homepage> <http://tristan.github.com> .
<http://tristan.github.com/foaf#me> <http://xmlns.com/foaf/0.1/name> "Tristan King" .
<http://tristan.github.com/foaf#me> <http://xmlns.com/foaf/0.1/title> "Implementor" .
<https://github.com/ansell/foaf#me> <http://xmlns.com/foaf/0.1/name> "Peter Ansell" .
<https://github.com/ansell/foaf#me> <http://xmlns.com/foaf/0.1/title> "Contributor" .
<https://github.com/jsonld-java/jsonld-java> <http://purl.org/dc/terms/creator> <http://tristan.github.com/foaf#me> .
<https://github.com/jsonld-java/jsonld-java> <http://purl.org/dc/terms/date> "2013-05-16"^^<http://www.w3.org/2001/XMLSchema#date> .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#description> "An Implementation of the JSON-LD Specification for Java"@en .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#developer> <http://tristan.github.com/foaf#me> .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#developer> <https://github.com/ansell/foaf#me> .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#homepage> <https://github.com/jsonld-java/jsonld-java> .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#name> "JSONLD-Java" .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#programming-language> "Java" .
<https://github.com/jsonld-java/jsonld-java> <http://usefulinc.com/ns/doap#title> "JSONLD-Java" .
<https://github.com/jsonld-java/jsonld-java> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
<https://github.com/jsonld-java/jsonld-java> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Software> .
<https://github.com/jsonld-java/jsonld-java> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestSubject> .
_:b0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b0 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b0 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b0 <http://www.w3.org/ns/earl#result> _:b1 .
_:b0 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b0 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0001> .
_:b1 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b1 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b10 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b10 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b10 <http://www.w3.org/ns/earl#result> _:b11 .
_:b10 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b10 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0006> .
_:b100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b100 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b100 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b100 <http://www.w3.org/ns/earl#result> _:b101 .
_:b100 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b100 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0032> .
_:b101 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b101 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b101 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b102 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b102 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b102 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b102 <http://www.w3.org/ns/earl#result> _:b103 .
_:b102 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b102 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0033> .
_:b103 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b103 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b103 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b104 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b104 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b104 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b104 <http://www.w3.org/ns/earl#result> _:b105 .
_:b104 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b104 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0034> .
_:b105 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b105 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b105 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b106 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b106 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b106 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b106 <http://www.w3.org/ns/earl#result> _:b107 .
_:b106 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b106 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0035> .
_:b107 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b107 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b107 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b108 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b108 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b108 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b108 <http://www.w3.org/ns/earl#result> _:b109 .
_:b108 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b108 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0036> .
_:b109 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b109 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b109 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b11 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b11 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b110 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b110 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b110 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b110 <http://www.w3.org/ns/earl#result> _:b111 .
_:b110 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b110 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0037> .
_:b111 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b111 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b111 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b112 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b112 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b112 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b112 <http://www.w3.org/ns/earl#result> _:b113 .
_:b112 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b112 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0038> .
_:b113 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b113 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b113 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b114 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b114 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b114 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b114 <http://www.w3.org/ns/earl#result> _:b115 .
_:b114 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b114 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0039> .
_:b115 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b115 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b115 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b116 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b116 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b116 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b116 <http://www.w3.org/ns/earl#result> _:b117 .
_:b116 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b116 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0040> .
_:b117 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b117 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b117 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b118 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b118 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b118 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b118 <http://www.w3.org/ns/earl#result> _:b119 .
_:b118 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b118 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0041> .
_:b119 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b119 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b119 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b12 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b12 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b12 <http://www.w3.org/ns/earl#result> _:b13 .
_:b12 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b12 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0007> .
_:b120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b120 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b120 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b120 <http://www.w3.org/ns/earl#result> _:b121 .
_:b120 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b120 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0042> .
_:b121 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b121 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b121 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b122 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b122 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b122 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b122 <http://www.w3.org/ns/earl#result> _:b123 .
_:b122 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b122 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0043> .
_:b123 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b123 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b123 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b124 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b124 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b124 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b124 <http://www.w3.org/ns/earl#result> _:b125 .
_:b124 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b124 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0044> .
_:b125 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b125 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b125 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b126 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b126 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b126 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b126 <http://www.w3.org/ns/earl#result> _:b127 .
_:b126 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b126 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0045> .
_:b127 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b127 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b127 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b128 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b128 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b128 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b128 <http://www.w3.org/ns/earl#result> _:b129 .
_:b128 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b128 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0046> .
_:b129 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b129 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b129 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b13 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b13 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b13 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b130 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b130 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b130 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b130 <http://www.w3.org/ns/earl#result> _:b131 .
_:b130 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b130 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0047> .
_:b131 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b131 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b131 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b132 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b132 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b132 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b132 <http://www.w3.org/ns/earl#result> _:b133 .
_:b132 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b132 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0048> .
_:b133 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b133 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b133 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b134 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b134 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b134 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b134 <http://www.w3.org/ns/earl#result> _:b135 .
_:b134 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b134 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0049> .
_:b135 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b135 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b135 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b136 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b136 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b136 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b136 <http://www.w3.org/ns/earl#result> _:b137 .
_:b136 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b136 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0050> .
_:b137 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b137 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b137 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b138 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b138 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b138 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b138 <http://www.w3.org/ns/earl#result> _:b139 .
_:b138 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b138 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0051> .
_:b139 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b139 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b139 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b14 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b14 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b14 <http://www.w3.org/ns/earl#result> _:b15 .
_:b14 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b14 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0008> .
_:b140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b140 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b140 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b140 <http://www.w3.org/ns/earl#result> _:b141 .
_:b140 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b140 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0052> .
_:b141 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b141 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b141 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b142 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b142 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b142 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b142 <http://www.w3.org/ns/earl#result> _:b143 .
_:b142 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b142 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0053> .
_:b143 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b143 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b143 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b144 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b144 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b144 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b144 <http://www.w3.org/ns/earl#result> _:b145 .
_:b144 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b144 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0054> .
_:b145 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b145 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b145 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b146 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b146 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b146 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b146 <http://www.w3.org/ns/earl#result> _:b147 .
_:b146 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b146 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0055> .
_:b147 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b147 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b147 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b148 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b148 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b148 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b148 <http://www.w3.org/ns/earl#result> _:b149 .
_:b148 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b148 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0056> .
_:b149 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b149 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b149 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b15 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b15 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b150 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b150 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b150 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b150 <http://www.w3.org/ns/earl#result> _:b151 .
_:b150 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b150 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0057> .
_:b151 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b151 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b151 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b152 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b152 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b152 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b152 <http://www.w3.org/ns/earl#result> _:b153 .
_:b152 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b152 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0001> .
_:b153 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b153 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b153 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b154 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b154 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b154 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b154 <http://www.w3.org/ns/earl#result> _:b155 .
_:b154 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b154 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0002> .
_:b155 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b155 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b155 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b156 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b156 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b156 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b156 <http://www.w3.org/ns/earl#result> _:b157 .
_:b156 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b156 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0003> .
_:b157 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b157 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b157 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b158 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b158 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b158 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b158 <http://www.w3.org/ns/earl#result> _:b159 .
_:b158 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b158 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0004> .
_:b159 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b159 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b159 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b16 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b16 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b16 <http://www.w3.org/ns/earl#result> _:b17 .
_:b16 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b16 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0009> .
_:b160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b160 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b160 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b160 <http://www.w3.org/ns/earl#result> _:b161 .
_:b160 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b160 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0005> .
_:b161 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b161 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b161 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b162 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b162 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b162 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b162 <http://www.w3.org/ns/earl#result> _:b163 .
_:b162 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b162 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0006> .
_:b163 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b163 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b163 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b164 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b164 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b164 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b164 <http://www.w3.org/ns/earl#result> _:b165 .
_:b164 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b164 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0007> .
_:b165 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b165 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b165 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b166 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b166 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b166 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b166 <http://www.w3.org/ns/earl#result> _:b167 .
_:b166 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b166 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0008> .
_:b167 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b167 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b167 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b168 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b168 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b168 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b168 <http://www.w3.org/ns/earl#result> _:b169 .
_:b168 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b168 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0009> .
_:b169 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b169 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b169 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b17 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b17 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b170 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b170 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b170 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b170 <http://www.w3.org/ns/earl#result> _:b171 .
_:b170 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b170 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0010> .
_:b171 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b171 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b171 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b172 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b172 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b172 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b172 <http://www.w3.org/ns/earl#result> _:b173 .
_:b172 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b172 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0011> .
_:b173 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b173 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b173 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b174 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b174 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b174 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b174 <http://www.w3.org/ns/earl#result> _:b175 .
_:b174 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b174 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0012> .
_:b175 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b175 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b175 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b176 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b176 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b176 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b176 <http://www.w3.org/ns/earl#result> _:b177 .
_:b176 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b176 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0013> .
_:b177 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b177 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b177 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b178 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b178 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b178 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b178 <http://www.w3.org/ns/earl#result> _:b179 .
_:b178 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b178 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0014> .
_:b179 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b179 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b179 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b18 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b18 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b18 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b18 <http://www.w3.org/ns/earl#result> _:b19 .
_:b18 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b18 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0010> .
_:b180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b180 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b180 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b180 <http://www.w3.org/ns/earl#result> _:b181 .
_:b180 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b180 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0015> .
_:b181 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b181 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b181 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b182 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b182 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b182 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b182 <http://www.w3.org/ns/earl#result> _:b183 .
_:b182 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b182 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0016> .
_:b183 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b183 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b183 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b184 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b184 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b184 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b184 <http://www.w3.org/ns/earl#result> _:b185 .
_:b184 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b184 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0017> .
_:b185 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b185 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b185 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b186 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b186 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b186 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b186 <http://www.w3.org/ns/earl#result> _:b187 .
_:b186 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b186 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0018> .
_:b187 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b187 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b187 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b188 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b188 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b188 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b188 <http://www.w3.org/ns/earl#result> _:b189 .
_:b188 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b188 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0019> .
_:b189 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b189 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b189 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b19 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b19 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b19 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b190 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b190 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b190 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b190 <http://www.w3.org/ns/earl#result> _:b191 .
_:b190 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b190 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0020> .
_:b191 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b191 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b191 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b192 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b192 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b192 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b192 <http://www.w3.org/ns/earl#result> _:b193 .
_:b192 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b192 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0021> .
_:b193 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b193 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b193 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b194 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b194 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b194 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b194 <http://www.w3.org/ns/earl#result> _:b195 .
_:b194 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b194 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0022> .
_:b195 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b195 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b195 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b196 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b196 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b196 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b196 <http://www.w3.org/ns/earl#result> _:b197 .
_:b196 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b196 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0023> .
_:b197 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b197 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b197 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b198 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b198 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b198 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b198 <http://www.w3.org/ns/earl#result> _:b199 .
_:b198 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b198 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0024> .
_:b199 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b199 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b199 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b2 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b2 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b2 <http://www.w3.org/ns/earl#result> _:b3 .
_:b2 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b2 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0002> .
_:b20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b20 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b20 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b20 <http://www.w3.org/ns/earl#result> _:b21 .
_:b20 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b20 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0011> .
_:b200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b200 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b200 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b200 <http://www.w3.org/ns/earl#result> _:b201 .
_:b200 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b200 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0025> .
_:b201 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b201 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b201 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b202 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b202 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b202 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b202 <http://www.w3.org/ns/earl#result> _:b203 .
_:b202 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b202 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0026> .
_:b203 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b203 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b203 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b204 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b204 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b204 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b204 <http://www.w3.org/ns/earl#result> _:b205 .
_:b204 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b204 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0027> .
_:b205 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b205 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b205 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b206 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b206 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b206 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b206 <http://www.w3.org/ns/earl#result> _:b207 .
_:b206 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b206 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0028> .
_:b207 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b207 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b207 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b208 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b208 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b208 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b208 <http://www.w3.org/ns/earl#result> _:b209 .
_:b208 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b208 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0029> .
_:b209 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b209 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b209 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b21 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b21 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b210 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b210 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b210 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b210 <http://www.w3.org/ns/earl#result> _:b211 .
_:b210 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b210 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0030> .
_:b211 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b211 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b211 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b212 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b212 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b212 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b212 <http://www.w3.org/ns/earl#result> _:b213 .
_:b212 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b212 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0031> .
_:b213 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b213 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b213 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b214 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b214 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b214 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b214 <http://www.w3.org/ns/earl#result> _:b215 .
_:b214 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b214 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0032> .
_:b215 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b215 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b215 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b216 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b216 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b216 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b216 <http://www.w3.org/ns/earl#result> _:b217 .
_:b216 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b216 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0033> .
_:b217 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b217 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b217 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b218 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b218 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b218 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b218 <http://www.w3.org/ns/earl#result> _:b219 .
_:b218 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b218 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0034> .
_:b219 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b219 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b219 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b22 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b22 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b22 <http://www.w3.org/ns/earl#result> _:b23 .
_:b22 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b22 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0012> .
_:b220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b220 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b220 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b220 <http://www.w3.org/ns/earl#result> _:b221 .
_:b220 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b220 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0035> .
_:b221 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b221 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b221 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b222 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b222 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b222 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b222 <http://www.w3.org/ns/earl#result> _:b223 .
_:b222 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b222 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0036> .
_:b223 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b223 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b223 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b224 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b224 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b224 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b224 <http://www.w3.org/ns/earl#result> _:b225 .
_:b224 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b224 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0037> .
_:b225 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b225 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b225 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b226 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b226 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b226 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b226 <http://www.w3.org/ns/earl#result> _:b227 .
_:b226 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b226 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0038> .
_:b227 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b227 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b227 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b228 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b228 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b228 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b228 <http://www.w3.org/ns/earl#result> _:b229 .
_:b228 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b228 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0039> .
_:b229 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b229 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b229 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b23 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b23 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b230 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b230 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b230 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b230 <http://www.w3.org/ns/earl#result> _:b231 .
_:b230 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b230 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0040> .
_:b231 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b231 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b231 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b232 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b232 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b232 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b232 <http://www.w3.org/ns/earl#result> _:b233 .
_:b232 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b232 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0041> .
_:b233 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b233 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b233 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b234 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b234 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b234 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b234 <http://www.w3.org/ns/earl#result> _:b235 .
_:b234 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b234 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0042> .
_:b235 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b235 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b235 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b236 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b236 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b236 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b236 <http://www.w3.org/ns/earl#result> _:b237 .
_:b236 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b236 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0043> .
_:b237 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b237 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b237 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b238 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b238 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b238 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b238 <http://www.w3.org/ns/earl#result> _:b239 .
_:b238 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b238 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0044> .
_:b239 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b239 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b239 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b24 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b24 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b24 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b24 <http://www.w3.org/ns/earl#result> _:b25 .
_:b24 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b24 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0013> .
_:b240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b240 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b240 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b240 <http://www.w3.org/ns/earl#result> _:b241 .
_:b240 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b240 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0045> .
_:b241 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b241 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b241 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b242 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b242 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b242 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b242 <http://www.w3.org/ns/earl#result> _:b243 .
_:b242 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b242 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0046> .
_:b243 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b243 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b243 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b244 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b244 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b244 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b244 <http://www.w3.org/ns/earl#result> _:b245 .
_:b244 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b244 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0047> .
_:b245 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b245 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b245 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b246 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b246 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b246 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b246 <http://www.w3.org/ns/earl#result> _:b247 .
_:b246 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b246 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0048> .
_:b247 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b247 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b247 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b248 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b248 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b248 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b248 <http://www.w3.org/ns/earl#result> _:b249 .
_:b248 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b248 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0049> .
_:b249 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b249 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b249 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b25 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b25 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b250 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b250 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b250 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b250 <http://www.w3.org/ns/earl#result> _:b251 .
_:b250 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b250 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0050> .
_:b251 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b251 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b251 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b252 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b252 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b252 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b252 <http://www.w3.org/ns/earl#result> _:b253 .
_:b252 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b252 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0051> .
_:b253 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b253 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b253 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b254 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b254 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b254 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b254 <http://www.w3.org/ns/earl#result> _:b255 .
_:b254 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b254 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0052> .
_:b255 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b255 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b255 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b256 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b256 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b256 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b256 <http://www.w3.org/ns/earl#result> _:b257 .
_:b256 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b256 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0053> .
_:b257 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b257 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b257 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b258 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b258 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b258 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b258 <http://www.w3.org/ns/earl#result> _:b259 .
_:b258 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b258 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0054> .
_:b259 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b259 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b259 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b26 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b26 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b26 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b26 <http://www.w3.org/ns/earl#result> _:b27 .
_:b26 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b26 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0014> .
_:b260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b260 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b260 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b260 <http://www.w3.org/ns/earl#result> _:b261 .
_:b260 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b260 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0055> .
_:b261 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b261 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b261 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b262 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b262 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b262 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b262 <http://www.w3.org/ns/earl#result> _:b263 .
_:b262 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b262 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0056> .
_:b263 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b263 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b263 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b264 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b264 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b264 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b264 <http://www.w3.org/ns/earl#result> _:b265 .
_:b264 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b264 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0057> .
_:b265 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b265 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b265 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b266 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b266 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b266 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b266 <http://www.w3.org/ns/earl#result> _:b267 .
_:b266 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b266 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0058> .
_:b267 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b267 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b267 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b268 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b268 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b268 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b268 <http://www.w3.org/ns/earl#result> _:b269 .
_:b268 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b268 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0059> .
_:b269 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b269 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b269 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b27 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b27 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b27 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b270 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b270 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b270 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b270 <http://www.w3.org/ns/earl#result> _:b271 .
_:b270 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b270 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0060> .
_:b271 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b271 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b271 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b272 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b272 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b272 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b272 <http://www.w3.org/ns/earl#result> _:b273 .
_:b272 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b272 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0061> .
_:b273 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b273 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b273 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b274 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b274 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b274 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b274 <http://www.w3.org/ns/earl#result> _:b275 .
_:b274 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b274 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0062> .
_:b275 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b275 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b275 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b276 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b276 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b276 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b276 <http://www.w3.org/ns/earl#result> _:b277 .
_:b276 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b276 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0063> .
_:b277 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b277 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b277 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b278 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b278 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b278 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b278 <http://www.w3.org/ns/earl#result> _:b279 .
_:b278 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b278 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0064> .
_:b279 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b279 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b279 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b28 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b28 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b28 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b28 <http://www.w3.org/ns/earl#result> _:b29 .
_:b28 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b28 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0015> .
_:b280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b280 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b280 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b280 <http://www.w3.org/ns/earl#result> _:b281 .
_:b280 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b280 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0065> .
_:b281 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b281 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b281 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b282 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b282 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b282 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b282 <http://www.w3.org/ns/earl#result> _:b283 .
_:b282 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b282 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0066> .
_:b283 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b283 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b283 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b284 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b284 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b284 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b284 <http://www.w3.org/ns/earl#result> _:b285 .
_:b284 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b284 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0067> .
_:b285 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b285 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b285 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b286 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b286 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b286 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b286 <http://www.w3.org/ns/earl#result> _:b287 .
_:b286 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b286 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0068> .
_:b287 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b287 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b287 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b288 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b288 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b288 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b288 <http://www.w3.org/ns/earl#result> _:b289 .
_:b288 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b288 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0069> .
_:b289 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b289 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b289 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b29 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b29 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b29 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b290 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b290 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b290 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b290 <http://www.w3.org/ns/earl#result> _:b291 .
_:b290 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b290 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0070> .
_:b291 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b291 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b291 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b292 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b292 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b292 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b292 <http://www.w3.org/ns/earl#result> _:b293 .
_:b292 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b292 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0071> .
_:b293 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b293 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b293 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b294 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b294 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b294 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b294 <http://www.w3.org/ns/earl#result> _:b295 .
_:b294 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b294 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0072> .
_:b295 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b295 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b295 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b296 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b296 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b296 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b296 <http://www.w3.org/ns/earl#result> _:b297 .
_:b296 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b296 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0073> .
_:b297 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b297 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b297 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b298 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b298 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b298 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b298 <http://www.w3.org/ns/earl#result> _:b299 .
_:b298 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b298 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0074> .
_:b299 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b299 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b299 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b3 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b3 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b30 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b30 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b30 <http://www.w3.org/ns/earl#result> _:b31 .
_:b30 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b30 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0016> .
_:b300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b300 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b300 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b300 <http://www.w3.org/ns/earl#result> _:b301 .
_:b300 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b300 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0075> .
_:b301 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b301 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b301 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b302 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b302 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b302 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b302 <http://www.w3.org/ns/earl#result> _:b303 .
_:b302 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b302 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0076> .
_:b303 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b303 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b303 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b304 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b304 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b304 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b304 <http://www.w3.org/ns/earl#result> _:b305 .
_:b304 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b304 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/expand-manifest.jsonld#t0077> .
_:b305 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b305 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b305 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b306 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b306 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b306 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b306 <http://www.w3.org/ns/earl#result> _:b307 .
_:b306 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b306 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0001> .
_:b307 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b307 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b307 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b308 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b308 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b308 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b308 <http://www.w3.org/ns/earl#result> _:b309 .
_:b308 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b308 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0002> .
_:b309 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b309 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b309 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b31 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b31 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b31 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b310 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b310 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b310 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b310 <http://www.w3.org/ns/earl#result> _:b311 .
_:b310 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b310 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0003> .
_:b311 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b311 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b311 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b312 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b312 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b312 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b312 <http://www.w3.org/ns/earl#result> _:b313 .
_:b312 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b312 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0004> .
_:b313 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b313 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b313 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b314 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b314 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b314 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b314 <http://www.w3.org/ns/earl#result> _:b315 .
_:b314 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b314 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0005> .
_:b315 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b315 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b315 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b316 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b316 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b316 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b316 <http://www.w3.org/ns/earl#result> _:b317 .
_:b316 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b316 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0006> .
_:b317 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b317 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b317 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b318 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b318 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b318 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b318 <http://www.w3.org/ns/earl#result> _:b319 .
_:b318 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b318 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0007> .
_:b319 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b319 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b319 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b32 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b32 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b32 <http://www.w3.org/ns/earl#result> _:b33 .
_:b32 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b32 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0017> .
_:b320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b320 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b320 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b320 <http://www.w3.org/ns/earl#result> _:b321 .
_:b320 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b320 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0008> .
_:b321 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b321 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b321 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b322 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b322 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b322 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b322 <http://www.w3.org/ns/earl#result> _:b323 .
_:b322 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b322 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0009> .
_:b323 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b323 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b323 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b324 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b324 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b324 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b324 <http://www.w3.org/ns/earl#result> _:b325 .
_:b324 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b324 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0010> .
_:b325 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b325 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b325 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b326 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b326 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b326 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b326 <http://www.w3.org/ns/earl#result> _:b327 .
_:b326 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b326 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0011> .
_:b327 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b327 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b327 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b328 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b328 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b328 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b328 <http://www.w3.org/ns/earl#result> _:b329 .
_:b328 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b328 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0012> .
_:b329 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b329 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b329 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b33 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b33 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b33 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b330 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b330 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b330 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b330 <http://www.w3.org/ns/earl#result> _:b331 .
_:b330 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b330 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0013> .
_:b331 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b331 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b331 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b332 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b332 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b332 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b332 <http://www.w3.org/ns/earl#result> _:b333 .
_:b332 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b332 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0014> .
_:b333 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b333 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b333 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b334 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b334 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b334 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b334 <http://www.w3.org/ns/earl#result> _:b335 .
_:b334 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b334 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0015> .
_:b335 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b335 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b335 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b336 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b336 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b336 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b336 <http://www.w3.org/ns/earl#result> _:b337 .
_:b336 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b336 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0016> .
_:b337 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b337 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b337 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b338 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b338 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b338 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b338 <http://www.w3.org/ns/earl#result> _:b339 .
_:b338 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b338 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0017> .
_:b339 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b339 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b339 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b34 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b34 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b34 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b34 <http://www.w3.org/ns/earl#result> _:b35 .
_:b34 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b34 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0018> .
_:b340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b340 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b340 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b340 <http://www.w3.org/ns/earl#result> _:b341 .
_:b340 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b340 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0018> .
_:b341 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b341 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b341 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b342 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b342 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b342 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b342 <http://www.w3.org/ns/earl#result> _:b343 .
_:b342 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b342 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0019> .
_:b343 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b343 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b343 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b344 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b344 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b344 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b344 <http://www.w3.org/ns/earl#result> _:b345 .
_:b344 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b344 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0020> .
_:b345 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b345 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b345 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b346 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b346 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b346 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b346 <http://www.w3.org/ns/earl#result> _:b347 .
_:b346 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b346 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0021> .
_:b347 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b347 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b347 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b348 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b348 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b348 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b348 <http://www.w3.org/ns/earl#result> _:b349 .
_:b348 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b348 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0022> .
_:b349 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b349 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b349 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b35 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b35 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b35 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b350 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b350 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b350 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b350 <http://www.w3.org/ns/earl#result> _:b351 .
_:b350 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b350 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0023> .
_:b351 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b351 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b351 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b352 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b352 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b352 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b352 <http://www.w3.org/ns/earl#result> _:b353 .
_:b352 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b352 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0024> .
_:b353 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b353 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b353 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b354 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b354 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b354 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b354 <http://www.w3.org/ns/earl#result> _:b355 .
_:b354 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b354 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0025> .
_:b355 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b355 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b355 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b356 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b356 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b356 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b356 <http://www.w3.org/ns/earl#result> _:b357 .
_:b356 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b356 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0026> .
_:b357 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b357 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b357 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b358 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b358 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b358 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b358 <http://www.w3.org/ns/earl#result> _:b359 .
_:b358 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b358 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0027> .
_:b359 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b359 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b359 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b36 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b36 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b36 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b36 <http://www.w3.org/ns/earl#result> _:b37 .
_:b36 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b36 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0019> .
_:b360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b360 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b360 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b360 <http://www.w3.org/ns/earl#result> _:b361 .
_:b360 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b360 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0028> .
_:b361 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b361 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b361 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b362 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b362 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b362 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b362 <http://www.w3.org/ns/earl#result> _:b363 .
_:b362 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b362 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0029> .
_:b363 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b363 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b363 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b364 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b364 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b364 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b364 <http://www.w3.org/ns/earl#result> _:b365 .
_:b364 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b364 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0030> .
_:b365 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b365 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b365 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b366 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b366 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b366 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b366 <http://www.w3.org/ns/earl#result> _:b367 .
_:b366 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b366 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0031> .
_:b367 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b367 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b367 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b368 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b368 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b368 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b368 <http://www.w3.org/ns/earl#result> _:b369 .
_:b368 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b368 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0032> .
_:b369 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b369 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b369 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b37 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b37 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b37 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b370 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b370 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b370 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b370 <http://www.w3.org/ns/earl#result> _:b371 .
_:b370 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b370 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0033> .
_:b371 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b371 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b371 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b372 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b372 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b372 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b372 <http://www.w3.org/ns/earl#result> _:b373 .
_:b372 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b372 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0034> .
_:b373 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b373 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b373 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b374 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b374 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b374 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b374 <http://www.w3.org/ns/earl#result> _:b375 .
_:b374 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b374 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0035> .
_:b375 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b375 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b375 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b376 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b376 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b376 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b376 <http://www.w3.org/ns/earl#result> _:b377 .
_:b376 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b376 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0036> .
_:b377 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b377 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b377 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b378 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b378 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b378 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b378 <http://www.w3.org/ns/earl#result> _:b379 .
_:b378 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b378 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0037> .
_:b379 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b379 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b379 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b38 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b38 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b38 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b38 <http://www.w3.org/ns/earl#result> _:b39 .
_:b38 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b38 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0001> .
_:b380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b380 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b380 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b380 <http://www.w3.org/ns/earl#result> _:b381 .
_:b380 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b380 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0038> .
_:b381 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b381 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b381 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b382 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b382 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b382 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b382 <http://www.w3.org/ns/earl#result> _:b383 .
_:b382 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b382 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0039> .
_:b383 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b383 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b383 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b384 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b384 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b384 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b384 <http://www.w3.org/ns/earl#result> _:b385 .
_:b384 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b384 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0040> .
_:b385 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b385 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b385 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b386 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b386 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b386 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b386 <http://www.w3.org/ns/earl#result> _:b387 .
_:b386 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b386 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0041> .
_:b387 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b387 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b387 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b388 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b388 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b388 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b388 <http://www.w3.org/ns/earl#result> _:b389 .
_:b388 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b388 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0042> .
_:b389 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b389 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b389 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b39 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b39 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b39 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b390 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b390 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b390 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b390 <http://www.w3.org/ns/earl#result> _:b391 .
_:b390 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b390 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0043> .
_:b391 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b391 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b391 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b392 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b392 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b392 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b392 <http://www.w3.org/ns/earl#result> _:b393 .
_:b392 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b392 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0044> .
_:b393 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b393 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b393 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b394 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b394 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b394 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b394 <http://www.w3.org/ns/earl#result> _:b395 .
_:b394 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b394 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/flatten-manifest.jsonld#t0045> .
_:b395 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b395 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b395 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b396 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b396 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b396 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b396 <http://www.w3.org/ns/earl#result> _:b397 .
_:b396 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b396 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0001> .
_:b397 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b397 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b397 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b398 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b398 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b398 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b398 <http://www.w3.org/ns/earl#result> _:b399 .
_:b398 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b398 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0002> .
_:b399 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b399 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b399 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b4 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b4 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b4 <http://www.w3.org/ns/earl#result> _:b5 .
_:b4 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b4 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0003> .
_:b40 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b40 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b40 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b40 <http://www.w3.org/ns/earl#result> _:b41 .
_:b40 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b40 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0002> .
_:b400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b400 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b400 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b400 <http://www.w3.org/ns/earl#result> _:b401 .
_:b400 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b400 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0003> .
_:b401 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b401 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b401 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b402 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b402 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b402 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b402 <http://www.w3.org/ns/earl#result> _:b403 .
_:b402 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b402 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0004> .
_:b403 <http://purl.org/dc/terms/date> "2014-02-25T13:04:54+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b403 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b403 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b404 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b404 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b404 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b404 <http://www.w3.org/ns/earl#result> _:b405 .
_:b404 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b404 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0005> .
_:b405 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b405 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b405 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b406 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b406 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b406 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b406 <http://www.w3.org/ns/earl#result> _:b407 .
_:b406 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b406 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0006> .
_:b407 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b407 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b407 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b408 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b408 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b408 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b408 <http://www.w3.org/ns/earl#result> _:b409 .
_:b408 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b408 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0007> .
_:b409 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b409 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b409 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b41 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b41 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b41 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b410 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b410 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b410 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b410 <http://www.w3.org/ns/earl#result> _:b411 .
_:b410 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b410 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0008> .
_:b411 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b411 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b411 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b412 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b412 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b412 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b412 <http://www.w3.org/ns/earl#result> _:b413 .
_:b412 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b412 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0009> .
_:b413 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b413 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b413 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b414 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b414 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b414 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b414 <http://www.w3.org/ns/earl#result> _:b415 .
_:b414 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b414 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0010> .
_:b415 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b415 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b415 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b416 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b416 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b416 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b416 <http://www.w3.org/ns/earl#result> _:b417 .
_:b416 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b416 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0011> .
_:b417 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b417 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b417 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b418 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b418 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b418 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b418 <http://www.w3.org/ns/earl#result> _:b419 .
_:b418 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b418 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0012> .
_:b419 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b419 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b419 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b42 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b42 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b42 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b42 <http://www.w3.org/ns/earl#result> _:b43 .
_:b42 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b42 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0003> .
_:b420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b420 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b420 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b420 <http://www.w3.org/ns/earl#result> _:b421 .
_:b420 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b420 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0013> .
_:b421 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b421 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b421 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b422 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b422 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b422 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b422 <http://www.w3.org/ns/earl#result> _:b423 .
_:b422 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b422 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0014> .
_:b423 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b423 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b423 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b424 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b424 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b424 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b424 <http://www.w3.org/ns/earl#result> _:b425 .
_:b424 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b424 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0015> .
_:b425 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b425 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b425 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b426 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b426 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b426 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b426 <http://www.w3.org/ns/earl#result> _:b427 .
_:b426 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b426 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0016> .
_:b427 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b427 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b427 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b428 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b428 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b428 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b428 <http://www.w3.org/ns/earl#result> _:b429 .
_:b428 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b428 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0017> .
_:b429 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b429 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b429 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b43 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b43 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b43 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b430 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b430 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b430 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b430 <http://www.w3.org/ns/earl#result> _:b431 .
_:b430 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b430 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0018> .
_:b431 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b431 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b431 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b432 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b432 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b432 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b432 <http://www.w3.org/ns/earl#result> _:b433 .
_:b432 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b432 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0019> .
_:b433 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b433 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b433 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b434 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b434 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b434 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b434 <http://www.w3.org/ns/earl#result> _:b435 .
_:b434 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b434 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0020> .
_:b435 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b435 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b435 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b436 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b436 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b436 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b436 <http://www.w3.org/ns/earl#result> _:b437 .
_:b436 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b436 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0022> .
_:b437 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b437 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b437 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b438 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b438 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b438 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b438 <http://www.w3.org/ns/earl#result> _:b439 .
_:b438 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b438 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0023> .
_:b439 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b439 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b439 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b44 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b44 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b44 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b44 <http://www.w3.org/ns/earl#result> _:b45 .
_:b44 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b44 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0004> .
_:b440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b440 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b440 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b440 <http://www.w3.org/ns/earl#result> _:b441 .
_:b440 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b440 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0024> .
_:b441 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b441 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b441 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b442 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b442 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b442 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b442 <http://www.w3.org/ns/earl#result> _:b443 .
_:b442 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b442 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0025> .
_:b443 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b443 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b443 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b444 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b444 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b444 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b444 <http://www.w3.org/ns/earl#result> _:b445 .
_:b444 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b444 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0026> .
_:b445 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b445 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b445 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b446 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b446 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b446 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b446 <http://www.w3.org/ns/earl#result> _:b447 .
_:b446 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b446 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0027> .
_:b447 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b447 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b447 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b448 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b448 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b448 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b448 <http://www.w3.org/ns/earl#result> _:b449 .
_:b448 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b448 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0028> .
_:b449 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b449 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b449 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b45 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b45 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b45 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b450 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b450 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b450 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b450 <http://www.w3.org/ns/earl#result> _:b451 .
_:b450 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b450 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0029> .
_:b451 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b451 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b451 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b452 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b452 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b452 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b452 <http://www.w3.org/ns/earl#result> _:b453 .
_:b452 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b452 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0030> .
_:b453 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b453 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b453 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b454 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b454 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b454 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b454 <http://www.w3.org/ns/earl#result> _:b455 .
_:b454 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b454 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0031> .
_:b455 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b455 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b455 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b456 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b456 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b456 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b456 <http://www.w3.org/ns/earl#result> _:b457 .
_:b456 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b456 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0032> .
_:b457 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b457 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b457 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b458 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b458 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b458 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b458 <http://www.w3.org/ns/earl#result> _:b459 .
_:b458 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b458 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0033> .
_:b459 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b459 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b459 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b46 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b46 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b46 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b46 <http://www.w3.org/ns/earl#result> _:b47 .
_:b46 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b46 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0005> .
_:b460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b460 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b460 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b460 <http://www.w3.org/ns/earl#result> _:b461 .
_:b460 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b460 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0034> .
_:b461 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b461 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b461 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b462 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b462 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b462 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b462 <http://www.w3.org/ns/earl#result> _:b463 .
_:b462 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b462 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0035> .
_:b463 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b463 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b463 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b464 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b464 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b464 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b464 <http://www.w3.org/ns/earl#result> _:b465 .
_:b464 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b464 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0036> .
_:b465 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b465 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b465 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b466 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b466 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b466 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b466 <http://www.w3.org/ns/earl#result> _:b467 .
_:b466 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b466 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0041> .
_:b467 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b467 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b467 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b468 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b468 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b468 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b468 <http://www.w3.org/ns/earl#result> _:b469 .
_:b468 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b468 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0042> .
_:b469 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b469 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b469 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b47 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b47 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b47 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b470 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b470 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b470 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b470 <http://www.w3.org/ns/earl#result> _:b471 .
_:b470 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b470 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0043> .
_:b471 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b471 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b471 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b472 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b472 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b472 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b472 <http://www.w3.org/ns/earl#result> _:b473 .
_:b472 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b472 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0044> .
_:b473 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b473 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b473 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b474 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b474 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b474 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b474 <http://www.w3.org/ns/earl#result> _:b475 .
_:b474 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b474 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0045> .
_:b475 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b475 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b475 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b476 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b476 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b476 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b476 <http://www.w3.org/ns/earl#result> _:b477 .
_:b476 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b476 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0046> .
_:b477 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b477 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b477 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b478 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b478 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b478 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b478 <http://www.w3.org/ns/earl#result> _:b479 .
_:b478 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b478 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0047> .
_:b479 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b479 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b479 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b48 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b48 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b48 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b48 <http://www.w3.org/ns/earl#result> _:b49 .
_:b48 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b48 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0006> .
_:b480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b480 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b480 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b480 <http://www.w3.org/ns/earl#result> _:b481 .
_:b480 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b480 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0048> .
_:b481 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b481 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b481 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b482 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b482 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b482 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b482 <http://www.w3.org/ns/earl#result> _:b483 .
_:b482 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b482 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0049> .
_:b483 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b483 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b483 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b484 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b484 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b484 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b484 <http://www.w3.org/ns/earl#result> _:b485 .
_:b484 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b484 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0050> .
_:b485 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b485 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b485 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b486 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b486 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b486 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b486 <http://www.w3.org/ns/earl#result> _:b487 .
_:b486 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b486 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0051> .
_:b487 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b487 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b487 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b488 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b488 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b488 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b488 <http://www.w3.org/ns/earl#result> _:b489 .
_:b488 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b488 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0052> .
_:b489 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b489 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b489 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b49 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b49 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b49 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b490 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b490 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b490 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b490 <http://www.w3.org/ns/earl#result> _:b491 .
_:b490 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b490 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0053> .
_:b491 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b491 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b491 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b492 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b492 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b492 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b492 <http://www.w3.org/ns/earl#result> _:b493 .
_:b492 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b492 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0054> .
_:b493 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b493 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b493 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b494 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b494 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b494 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b494 <http://www.w3.org/ns/earl#result> _:b495 .
_:b494 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b494 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0055> .
_:b495 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b495 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b495 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b496 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b496 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b496 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b496 <http://www.w3.org/ns/earl#result> _:b497 .
_:b496 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b496 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0056> .
_:b497 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b497 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b497 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b498 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b498 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b498 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b498 <http://www.w3.org/ns/earl#result> _:b499 .
_:b498 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b498 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0057> .
_:b499 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b499 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b499 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b5 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b5 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b50 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b50 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b50 <http://www.w3.org/ns/earl#result> _:b51 .
_:b50 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b50 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0007> .
_:b500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b500 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b500 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b500 <http://www.w3.org/ns/earl#result> _:b501 .
_:b500 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b500 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0058> .
_:b501 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b501 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b501 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b502 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b502 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b502 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b502 <http://www.w3.org/ns/earl#result> _:b503 .
_:b502 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b502 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0059> .
_:b503 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b503 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b503 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b504 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b504 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b504 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b504 <http://www.w3.org/ns/earl#result> _:b505 .
_:b504 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b504 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0060> .
_:b505 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b505 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b505 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b506 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b506 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b506 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b506 <http://www.w3.org/ns/earl#result> _:b507 .
_:b506 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b506 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0061> .
_:b507 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b507 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b507 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b508 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b508 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b508 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b508 <http://www.w3.org/ns/earl#result> _:b509 .
_:b508 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b508 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0062> .
_:b509 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b509 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b509 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b51 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b51 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b51 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b510 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b510 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b510 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b510 <http://www.w3.org/ns/earl#result> _:b511 .
_:b510 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b510 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0063> .
_:b511 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b511 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b511 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b512 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b512 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b512 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b512 <http://www.w3.org/ns/earl#result> _:b513 .
_:b512 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b512 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0064> .
_:b513 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b513 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b513 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b514 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b514 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b514 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b514 <http://www.w3.org/ns/earl#result> _:b515 .
_:b514 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b514 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0065> .
_:b515 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b515 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b515 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b516 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b516 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b516 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b516 <http://www.w3.org/ns/earl#result> _:b517 .
_:b516 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b516 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0066> .
_:b517 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b517 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b517 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b518 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b518 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b518 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b518 <http://www.w3.org/ns/earl#result> _:b519 .
_:b518 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b518 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0067> .
_:b519 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b519 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b519 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b52 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b52 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b52 <http://www.w3.org/ns/earl#result> _:b53 .
_:b52 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b52 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0008> .
_:b520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b520 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b520 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b520 <http://www.w3.org/ns/earl#result> _:b521 .
_:b520 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b520 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0068> .
_:b521 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b521 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b521 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b522 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b522 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b522 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b522 <http://www.w3.org/ns/earl#result> _:b523 .
_:b522 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b522 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0069> .
_:b523 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b523 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b523 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b524 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b524 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b524 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b524 <http://www.w3.org/ns/earl#result> _:b525 .
_:b524 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b524 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0070> .
_:b525 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b525 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b525 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b526 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b526 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b526 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b526 <http://www.w3.org/ns/earl#result> _:b527 .
_:b526 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b526 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0071> .
_:b527 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b527 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b527 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b528 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b528 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b528 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b528 <http://www.w3.org/ns/earl#result> _:b529 .
_:b528 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b528 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0072> .
_:b529 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b529 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b529 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b53 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b53 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b53 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b530 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b530 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b530 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b530 <http://www.w3.org/ns/earl#result> _:b531 .
_:b530 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b530 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0073> .
_:b531 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b531 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b531 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b532 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b532 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b532 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b532 <http://www.w3.org/ns/earl#result> _:b533 .
_:b532 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b532 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0074> .
_:b533 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b533 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b533 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b534 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b534 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b534 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b534 <http://www.w3.org/ns/earl#result> _:b535 .
_:b534 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b534 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0075> .
_:b535 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b535 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b535 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b536 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b536 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b536 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b536 <http://www.w3.org/ns/earl#result> _:b537 .
_:b536 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b536 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0076> .
_:b537 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b537 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b537 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b538 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b538 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b538 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b538 <http://www.w3.org/ns/earl#result> _:b539 .
_:b538 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b538 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0077> .
_:b539 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b539 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b539 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b54 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b54 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b54 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b54 <http://www.w3.org/ns/earl#result> _:b55 .
_:b54 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b54 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0009> .
_:b540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b540 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b540 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b540 <http://www.w3.org/ns/earl#result> _:b541 .
_:b540 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b540 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0078> .
_:b541 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b541 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b541 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b542 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b542 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b542 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b542 <http://www.w3.org/ns/earl#result> _:b543 .
_:b542 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b542 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0079> .
_:b543 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b543 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b543 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b544 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b544 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b544 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b544 <http://www.w3.org/ns/earl#result> _:b545 .
_:b544 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b544 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0080> .
_:b545 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b545 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b545 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b546 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b546 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b546 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b546 <http://www.w3.org/ns/earl#result> _:b547 .
_:b546 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b546 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0081> .
_:b547 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b547 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b547 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b548 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b548 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b548 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b548 <http://www.w3.org/ns/earl#result> _:b549 .
_:b548 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b548 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0082> .
_:b549 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b549 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b549 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b55 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b55 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b55 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b550 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b550 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b550 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b550 <http://www.w3.org/ns/earl#result> _:b551 .
_:b550 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b550 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0083> .
_:b551 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b551 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b551 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b552 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b552 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b552 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b552 <http://www.w3.org/ns/earl#result> _:b553 .
_:b552 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b552 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0084> .
_:b553 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b553 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b553 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b554 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b554 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b554 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b554 <http://www.w3.org/ns/earl#result> _:b555 .
_:b554 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b554 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0085> .
_:b555 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b555 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b555 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b556 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b556 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b556 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b556 <http://www.w3.org/ns/earl#result> _:b557 .
_:b556 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b556 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0086> .
_:b557 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b557 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b557 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b558 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b558 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b558 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b558 <http://www.w3.org/ns/earl#result> _:b559 .
_:b558 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b558 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0087> .
_:b559 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b559 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b559 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b56 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b56 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b56 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b56 <http://www.w3.org/ns/earl#result> _:b57 .
_:b56 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b56 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0010> .
_:b560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b560 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b560 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b560 <http://www.w3.org/ns/earl#result> _:b561 .
_:b560 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b560 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0088> .
_:b561 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b561 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b561 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b562 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b562 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b562 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b562 <http://www.w3.org/ns/earl#result> _:b563 .
_:b562 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b562 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0089> .
_:b563 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b563 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b563 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b564 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b564 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b564 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b564 <http://www.w3.org/ns/earl#result> _:b565 .
_:b564 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b564 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0090> .
_:b565 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b565 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b565 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b566 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b566 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b566 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b566 <http://www.w3.org/ns/earl#result> _:b567 .
_:b566 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b566 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0091> .
_:b567 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b567 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b567 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b568 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b568 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b568 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b568 <http://www.w3.org/ns/earl#result> _:b569 .
_:b568 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b568 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0092> .
_:b569 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b569 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b569 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b57 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b57 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b57 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b570 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b570 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b570 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b570 <http://www.w3.org/ns/earl#result> _:b571 .
_:b570 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b570 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0093> .
_:b571 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b571 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b571 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b572 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b572 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b572 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b572 <http://www.w3.org/ns/earl#result> _:b573 .
_:b572 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b572 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0094> .
_:b573 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b573 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b573 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b574 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b574 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b574 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b574 <http://www.w3.org/ns/earl#result> _:b575 .
_:b574 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b574 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0095> .
_:b575 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b575 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b575 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b576 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b576 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b576 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b576 <http://www.w3.org/ns/earl#result> _:b577 .
_:b576 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b576 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0096> .
_:b577 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b577 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b577 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b578 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b578 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b578 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b578 <http://www.w3.org/ns/earl#result> _:b579 .
_:b578 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b578 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0097> .
_:b579 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b579 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b579 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b58 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b58 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b58 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b58 <http://www.w3.org/ns/earl#result> _:b59 .
_:b58 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b58 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0011> .
_:b580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b580 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b580 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b580 <http://www.w3.org/ns/earl#result> _:b581 .
_:b580 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b580 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0098> .
_:b581 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b581 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b581 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b582 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b582 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b582 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b582 <http://www.w3.org/ns/earl#result> _:b583 .
_:b582 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b582 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0099> .
_:b583 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b583 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b583 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b584 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b584 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b584 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b584 <http://www.w3.org/ns/earl#result> _:b585 .
_:b584 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b584 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0100> .
_:b585 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b585 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b585 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b586 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b586 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b586 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b586 <http://www.w3.org/ns/earl#result> _:b587 .
_:b586 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b586 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0101> .
_:b587 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b587 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b587 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b588 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b588 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b588 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b588 <http://www.w3.org/ns/earl#result> _:b589 .
_:b588 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b588 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0102> .
_:b589 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b589 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b589 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b59 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b59 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b59 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b590 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b590 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b590 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b590 <http://www.w3.org/ns/earl#result> _:b591 .
_:b590 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b590 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0103> .
_:b591 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b591 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b591 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b592 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b592 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b592 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b592 <http://www.w3.org/ns/earl#result> _:b593 .
_:b592 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b592 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0104> .
_:b593 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b593 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b593 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b594 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b594 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b594 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b594 <http://www.w3.org/ns/earl#result> _:b595 .
_:b594 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b594 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0105> .
_:b595 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b595 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b595 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b596 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b596 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b596 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b596 <http://www.w3.org/ns/earl#result> _:b597 .
_:b596 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b596 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0106> .
_:b597 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b597 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b597 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b598 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b598 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b598 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b598 <http://www.w3.org/ns/earl#result> _:b599 .
_:b598 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b598 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0107> .
_:b599 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b599 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b599 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b6 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b6 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b6 <http://www.w3.org/ns/earl#result> _:b7 .
_:b6 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b6 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0004> .
_:b60 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b60 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b60 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b60 <http://www.w3.org/ns/earl#result> _:b61 .
_:b60 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b60 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0012> .
_:b600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b600 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b600 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b600 <http://www.w3.org/ns/earl#result> _:b601 .
_:b600 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b600 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0108> .
_:b601 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b601 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b601 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b602 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b602 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b602 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b602 <http://www.w3.org/ns/earl#result> _:b603 .
_:b602 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b602 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0109> .
_:b603 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b603 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b603 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b604 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b604 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b604 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b604 <http://www.w3.org/ns/earl#result> _:b605 .
_:b604 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b604 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0110> .
_:b605 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b605 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b605 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b606 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b606 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b606 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b606 <http://www.w3.org/ns/earl#result> _:b607 .
_:b606 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b606 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0111> .
_:b607 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b607 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b607 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b608 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b608 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b608 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b608 <http://www.w3.org/ns/earl#result> _:b609 .
_:b608 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b608 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0112> .
_:b609 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b609 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b609 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b61 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b61 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b61 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b610 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b610 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b610 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b610 <http://www.w3.org/ns/earl#result> _:b611 .
_:b610 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b610 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0113> .
_:b611 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b611 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b611 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b612 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b612 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b612 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b612 <http://www.w3.org/ns/earl#result> _:b613 .
_:b612 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b612 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0114> .
_:b613 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b613 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b613 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b614 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b614 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b614 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b614 <http://www.w3.org/ns/earl#result> _:b615 .
_:b614 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b614 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0115> .
_:b615 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b615 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b615 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b616 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b616 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b616 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b616 <http://www.w3.org/ns/earl#result> _:b617 .
_:b616 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b616 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0116> .
_:b617 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b617 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b617 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b618 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b618 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b618 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b618 <http://www.w3.org/ns/earl#result> _:b619 .
_:b618 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b618 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0117> .
_:b619 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b619 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b619 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b62 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b62 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b62 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b62 <http://www.w3.org/ns/earl#result> _:b63 .
_:b62 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b62 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0013> .
_:b620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b620 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b620 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b620 <http://www.w3.org/ns/earl#result> _:b621 .
_:b620 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b620 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0118> .
_:b621 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b621 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b621 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b622 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b622 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b622 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b622 <http://www.w3.org/ns/earl#result> _:b623 .
_:b622 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b622 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/toRdf-manifest.jsonld#t0119> .
_:b623 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b623 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b623 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b624 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b624 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b624 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b624 <http://www.w3.org/ns/earl#result> _:b625 .
_:b624 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b624 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0001> .
_:b625 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b625 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b625 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b626 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b626 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b626 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b626 <http://www.w3.org/ns/earl#result> _:b627 .
_:b626 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b626 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0002> .
_:b627 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b627 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b627 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b628 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b628 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b628 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b628 <http://www.w3.org/ns/earl#result> _:b629 .
_:b628 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b628 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0003> .
_:b629 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b629 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b629 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b63 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b63 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b63 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b630 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b630 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b630 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b630 <http://www.w3.org/ns/earl#result> _:b631 .
_:b630 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b630 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0004> .
_:b631 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b631 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b631 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b632 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b632 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b632 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b632 <http://www.w3.org/ns/earl#result> _:b633 .
_:b632 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b632 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0005> .
_:b633 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b633 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b633 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b634 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b634 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b634 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b634 <http://www.w3.org/ns/earl#result> _:b635 .
_:b634 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b634 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0006> .
_:b635 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b635 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b635 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b636 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b636 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b636 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b636 <http://www.w3.org/ns/earl#result> _:b637 .
_:b636 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b636 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0007> .
_:b637 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b637 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b637 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b638 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b638 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b638 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b638 <http://www.w3.org/ns/earl#result> _:b639 .
_:b638 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b638 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0008> .
_:b639 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b639 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b639 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b64 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b64 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b64 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b64 <http://www.w3.org/ns/earl#result> _:b65 .
_:b64 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b64 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0014> .
_:b640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b640 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b640 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b640 <http://www.w3.org/ns/earl#result> _:b641 .
_:b640 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b640 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0009> .
_:b641 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b641 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b641 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b642 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b642 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b642 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b642 <http://www.w3.org/ns/earl#result> _:b643 .
_:b642 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b642 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0010> .
_:b643 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b643 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b643 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b644 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b644 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b644 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b644 <http://www.w3.org/ns/earl#result> _:b645 .
_:b644 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b644 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0011> .
_:b645 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b645 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b645 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b646 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b646 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b646 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b646 <http://www.w3.org/ns/earl#result> _:b647 .
_:b646 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b646 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0012> .
_:b647 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b647 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b647 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b648 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b648 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b648 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b648 <http://www.w3.org/ns/earl#result> _:b649 .
_:b648 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b648 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0013> .
_:b649 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b649 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b649 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b65 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b65 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b65 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b650 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b650 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b650 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b650 <http://www.w3.org/ns/earl#result> _:b651 .
_:b650 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b650 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0014> .
_:b651 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b651 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b651 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b652 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b652 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b652 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b652 <http://www.w3.org/ns/earl#result> _:b653 .
_:b652 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b652 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0015> .
_:b653 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b653 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b653 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b654 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b654 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b654 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b654 <http://www.w3.org/ns/earl#result> _:b655 .
_:b654 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b654 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0016> .
_:b655 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b655 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b655 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b656 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b656 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b656 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b656 <http://www.w3.org/ns/earl#result> _:b657 .
_:b656 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b656 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0017> .
_:b657 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b657 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b657 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b658 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b658 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b658 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b658 <http://www.w3.org/ns/earl#result> _:b659 .
_:b658 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b658 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0018> .
_:b659 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b659 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b659 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b66 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b66 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b66 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b66 <http://www.w3.org/ns/earl#result> _:b67 .
_:b66 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b66 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0015> .
_:b660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b660 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b660 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b660 <http://www.w3.org/ns/earl#result> _:b661 .
_:b660 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b660 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0019> .
_:b661 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b661 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b661 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b662 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b662 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b662 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b662 <http://www.w3.org/ns/earl#result> _:b663 .
_:b662 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b662 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0020> .
_:b663 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b663 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b663 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b664 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b664 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b664 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b664 <http://www.w3.org/ns/earl#result> _:b665 .
_:b664 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b664 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0021> .
_:b665 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b665 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b665 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b666 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b666 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b666 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b666 <http://www.w3.org/ns/earl#result> _:b667 .
_:b666 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b666 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0022> .
_:b667 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b667 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b667 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b668 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b668 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b668 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b668 <http://www.w3.org/ns/earl#result> _:b669 .
_:b668 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b668 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0023> .
_:b669 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b669 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b669 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b67 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b67 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b67 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b670 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b670 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b670 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b670 <http://www.w3.org/ns/earl#result> _:b671 .
_:b670 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b670 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0024> .
_:b671 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b671 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b671 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b672 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b672 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b672 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b672 <http://www.w3.org/ns/earl#result> _:b673 .
_:b672 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b672 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0025> .
_:b673 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b673 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b673 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b674 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b674 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b674 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b674 <http://www.w3.org/ns/earl#result> _:b675 .
_:b674 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b674 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0026> .
_:b675 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b675 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b675 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b676 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b676 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b676 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b676 <http://www.w3.org/ns/earl#result> _:b677 .
_:b676 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b676 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0027> .
_:b677 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b677 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b677 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b678 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b678 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b678 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b678 <http://www.w3.org/ns/earl#result> _:b679 .
_:b678 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b678 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0028> .
_:b679 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b679 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b679 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b68 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b68 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b68 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b68 <http://www.w3.org/ns/earl#result> _:b69 .
_:b68 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b68 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0016> .
_:b680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b680 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b680 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b680 <http://www.w3.org/ns/earl#result> _:b681 .
_:b680 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b680 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0029> .
_:b681 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b681 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b681 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b682 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b682 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b682 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b682 <http://www.w3.org/ns/earl#result> _:b683 .
_:b682 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b682 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0030> .
_:b683 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b683 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b683 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b684 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b684 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b684 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b684 <http://www.w3.org/ns/earl#result> _:b685 .
_:b684 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b684 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0031> .
_:b685 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b685 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b685 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b686 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b686 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b686 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b686 <http://www.w3.org/ns/earl#result> _:b687 .
_:b686 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b686 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0032> .
_:b687 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b687 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b687 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b688 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b688 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b688 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b688 <http://www.w3.org/ns/earl#result> _:b689 .
_:b688 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b688 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0033> .
_:b689 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b689 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b689 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b69 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b69 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b69 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b690 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b690 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b690 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b690 <http://www.w3.org/ns/earl#result> _:b691 .
_:b690 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b690 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0034> .
_:b691 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b691 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b691 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b692 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b692 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b692 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b692 <http://www.w3.org/ns/earl#result> _:b693 .
_:b692 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b692 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0035> .
_:b693 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b693 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b693 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b694 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b694 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b694 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b694 <http://www.w3.org/ns/earl#result> _:b695 .
_:b694 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b694 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0036> .
_:b695 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b695 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b695 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b696 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b696 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b696 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b696 <http://www.w3.org/ns/earl#result> _:b697 .
_:b696 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b696 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0037> .
_:b697 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b697 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b697 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b698 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b698 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b698 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b698 <http://www.w3.org/ns/earl#result> _:b699 .
_:b698 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b698 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0038> .
_:b699 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b699 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b699 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b7 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b7 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b70 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b70 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b70 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b70 <http://www.w3.org/ns/earl#result> _:b71 .
_:b70 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b70 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0017> .
_:b700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b700 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b700 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b700 <http://www.w3.org/ns/earl#result> _:b701 .
_:b700 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b700 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0039> .
_:b701 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b701 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b701 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b702 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b702 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b702 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b702 <http://www.w3.org/ns/earl#result> _:b703 .
_:b702 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b702 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0040> .
_:b703 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b703 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b703 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b704 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b704 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b704 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b704 <http://www.w3.org/ns/earl#result> _:b705 .
_:b704 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b704 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0041> .
_:b705 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b705 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b705 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b706 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b706 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b706 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b706 <http://www.w3.org/ns/earl#result> _:b707 .
_:b706 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b706 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0042> .
_:b707 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b707 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b707 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b708 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b708 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b708 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b708 <http://www.w3.org/ns/earl#result> _:b709 .
_:b708 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b708 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0043> .
_:b709 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b709 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b709 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b71 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b71 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b71 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b710 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b710 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b710 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b710 <http://www.w3.org/ns/earl#result> _:b711 .
_:b710 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b710 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0044> .
_:b711 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b711 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b711 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b712 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b712 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b712 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b712 <http://www.w3.org/ns/earl#result> _:b713 .
_:b712 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b712 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0045> .
_:b713 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b713 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b713 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b714 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b714 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b714 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b714 <http://www.w3.org/ns/earl#result> _:b715 .
_:b714 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b714 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0046> .
_:b715 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b715 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b715 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b716 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b716 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b716 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b716 <http://www.w3.org/ns/earl#result> _:b717 .
_:b716 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b716 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0047> .
_:b717 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b717 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b717 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b718 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b718 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b718 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b718 <http://www.w3.org/ns/earl#result> _:b719 .
_:b718 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b718 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0048> .
_:b719 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b719 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b719 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b72 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b72 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b72 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b72 <http://www.w3.org/ns/earl#result> _:b73 .
_:b72 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b72 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0018> .
_:b720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b720 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b720 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b720 <http://www.w3.org/ns/earl#result> _:b721 .
_:b720 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b720 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0049> .
_:b721 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b721 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b721 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b722 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b722 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b722 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b722 <http://www.w3.org/ns/earl#result> _:b723 .
_:b722 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b722 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0050> .
_:b723 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b723 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b723 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b724 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b724 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b724 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b724 <http://www.w3.org/ns/earl#result> _:b725 .
_:b724 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b724 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0051> .
_:b725 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b725 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b725 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b726 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b726 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b726 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b726 <http://www.w3.org/ns/earl#result> _:b727 .
_:b726 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b726 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0052> .
_:b727 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b727 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b727 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b728 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b728 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b728 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b728 <http://www.w3.org/ns/earl#result> _:b729 .
_:b728 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b728 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0053> .
_:b729 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b729 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b729 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b73 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b73 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b73 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b730 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b730 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b730 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b730 <http://www.w3.org/ns/earl#result> _:b731 .
_:b730 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b730 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0054> .
_:b731 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b731 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b731 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b732 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b732 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b732 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b732 <http://www.w3.org/ns/earl#result> _:b733 .
_:b732 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b732 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0055> .
_:b733 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b733 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b733 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b734 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b734 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b734 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b734 <http://www.w3.org/ns/earl#result> _:b735 .
_:b734 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b734 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0056> .
_:b735 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b735 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b735 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b736 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b736 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b736 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b736 <http://www.w3.org/ns/earl#result> _:b737 .
_:b736 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b736 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0057> .
_:b737 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b737 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b737 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b738 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b738 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b738 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b738 <http://www.w3.org/ns/earl#result> _:b739 .
_:b738 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b738 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0058> .
_:b739 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b739 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b739 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b74 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b74 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b74 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b74 <http://www.w3.org/ns/earl#result> _:b75 .
_:b74 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b74 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0019> .
_:b740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b740 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b740 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b740 <http://www.w3.org/ns/earl#result> _:b741 .
_:b740 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b740 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0059> .
_:b741 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b741 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b741 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b742 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b742 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b742 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b742 <http://www.w3.org/ns/earl#result> _:b743 .
_:b742 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b742 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0060> .
_:b743 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b743 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b743 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b744 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b744 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b744 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b744 <http://www.w3.org/ns/earl#result> _:b745 .
_:b744 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b744 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0061> .
_:b745 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b745 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b745 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b746 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b746 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b746 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b746 <http://www.w3.org/ns/earl#result> _:b747 .
_:b746 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b746 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0062> .
_:b747 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b747 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b747 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b748 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b748 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b748 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b748 <http://www.w3.org/ns/earl#result> _:b749 .
_:b748 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b748 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0063> .
_:b749 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b749 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b749 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b75 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b75 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b75 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b750 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b750 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b750 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b750 <http://www.w3.org/ns/earl#result> _:b751 .
_:b750 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b750 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0064> .
_:b751 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b751 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b751 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b752 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b752 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b752 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b752 <http://www.w3.org/ns/earl#result> _:b753 .
_:b752 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b752 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0065> .
_:b753 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b753 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b753 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b754 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b754 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b754 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b754 <http://www.w3.org/ns/earl#result> _:b755 .
_:b754 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b754 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0066> .
_:b755 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b755 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b755 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b756 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b756 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b756 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b756 <http://www.w3.org/ns/earl#result> _:b757 .
_:b756 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b756 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0067> .
_:b757 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b757 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b757 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b758 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b758 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b758 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b758 <http://www.w3.org/ns/earl#result> _:b759 .
_:b758 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b758 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0068> .
_:b759 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b759 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b759 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b76 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b76 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b76 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b76 <http://www.w3.org/ns/earl#result> _:b77 .
_:b76 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b76 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0020> .
_:b760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b760 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b760 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b760 <http://www.w3.org/ns/earl#result> _:b761 .
_:b760 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b760 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0069> .
_:b761 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b761 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b761 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b762 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b762 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b762 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b762 <http://www.w3.org/ns/earl#result> _:b763 .
_:b762 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b762 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0070> .
_:b763 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b763 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b763 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b764 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b764 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b764 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b764 <http://www.w3.org/ns/earl#result> _:b765 .
_:b764 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b764 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/compact-manifest.jsonld#t0071> .
_:b765 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b765 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b765 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b766 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b766 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b766 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b766 <http://www.w3.org/ns/earl#result> _:b767 .
_:b766 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b766 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0001> .
_:b767 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b767 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b767 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b768 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b768 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b768 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b768 <http://www.w3.org/ns/earl#result> _:b769 .
_:b768 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b768 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0002> .
_:b769 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b769 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b769 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b77 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b77 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b77 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b770 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b770 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b770 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b770 <http://www.w3.org/ns/earl#result> _:b771 .
_:b770 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b770 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0003> .
_:b771 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b771 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b771 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b772 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b772 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b772 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b772 <http://www.w3.org/ns/earl#result> _:b773 .
_:b772 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b772 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0004> .
_:b773 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b773 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b773 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b774 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b774 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b774 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b774 <http://www.w3.org/ns/earl#result> _:b775 .
_:b774 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b774 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0005> .
_:b775 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b775 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b775 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b776 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b776 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b776 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b776 <http://www.w3.org/ns/earl#result> _:b777 .
_:b776 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b776 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0006> .
_:b777 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b777 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b777 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b778 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b778 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b778 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b778 <http://www.w3.org/ns/earl#result> _:b779 .
_:b778 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b778 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0007> .
_:b779 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b779 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b779 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b78 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b78 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b78 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b78 <http://www.w3.org/ns/earl#result> _:b79 .
_:b78 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b78 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0021> .
_:b780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b780 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b780 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b780 <http://www.w3.org/ns/earl#result> _:b781 .
_:b780 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b780 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0008> .
_:b781 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b781 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b781 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b782 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b782 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b782 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b782 <http://www.w3.org/ns/earl#result> _:b783 .
_:b782 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b782 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0009> .
_:b783 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b783 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b783 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b784 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b784 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b784 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b784 <http://www.w3.org/ns/earl#result> _:b785 .
_:b784 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b784 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0010> .
_:b785 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b785 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b785 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b786 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b786 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b786 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b786 <http://www.w3.org/ns/earl#result> _:b787 .
_:b786 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b786 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0011> .
_:b787 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b787 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b787 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b788 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b788 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b788 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b788 <http://www.w3.org/ns/earl#result> _:b789 .
_:b788 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b788 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0012> .
_:b789 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b789 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b789 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b79 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b79 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b79 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b790 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b790 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b790 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b790 <http://www.w3.org/ns/earl#result> _:b791 .
_:b790 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b790 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0013> .
_:b791 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b791 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b791 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b792 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b792 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b792 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b792 <http://www.w3.org/ns/earl#result> _:b793 .
_:b792 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b792 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0014> .
_:b793 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b793 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b793 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b794 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b794 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b794 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b794 <http://www.w3.org/ns/earl#result> _:b795 .
_:b794 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b794 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0015> .
_:b795 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b795 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b795 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b796 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b796 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b796 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b796 <http://www.w3.org/ns/earl#result> _:b797 .
_:b796 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b796 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0016> .
_:b797 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b797 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b797 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b798 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b798 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b798 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b798 <http://www.w3.org/ns/earl#result> _:b799 .
_:b798 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b798 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0017> .
_:b799 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b799 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b799 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b8 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b8 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b8 <http://www.w3.org/ns/earl#result> _:b9 .
_:b8 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b8 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld#t0005> .
_:b80 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b80 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b80 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b80 <http://www.w3.org/ns/earl#result> _:b81 .
_:b80 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b80 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0022> .
_:b800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b800 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b800 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b800 <http://www.w3.org/ns/earl#result> _:b801 .
_:b800 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b800 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0018> .
_:b801 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b801 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b801 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b802 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b802 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b802 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b802 <http://www.w3.org/ns/earl#result> _:b803 .
_:b802 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b802 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0019> .
_:b803 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b803 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b803 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b804 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b804 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b804 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b804 <http://www.w3.org/ns/earl#result> _:b805 .
_:b804 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b804 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0020> .
_:b805 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b805 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b805 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b806 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b806 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b806 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b806 <http://www.w3.org/ns/earl#result> _:b807 .
_:b806 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b806 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0021> .
_:b807 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b807 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b807 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b808 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b808 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b808 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b808 <http://www.w3.org/ns/earl#result> _:b809 .
_:b808 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b808 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0022> .
_:b809 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b809 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b809 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b81 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b81 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b81 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b810 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b810 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b810 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b810 <http://www.w3.org/ns/earl#result> _:b811 .
_:b810 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b810 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0023> .
_:b811 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b811 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b811 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b812 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b812 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b812 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b812 <http://www.w3.org/ns/earl#result> _:b813 .
_:b812 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b812 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0024> .
_:b813 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b813 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b813 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b814 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b814 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b814 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b814 <http://www.w3.org/ns/earl#result> _:b815 .
_:b814 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b814 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0025> .
_:b815 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b815 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b815 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b816 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b816 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b816 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b816 <http://www.w3.org/ns/earl#result> _:b817 .
_:b816 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b816 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0026> .
_:b817 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b817 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b817 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b818 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b818 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b818 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b818 <http://www.w3.org/ns/earl#result> _:b819 .
_:b818 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b818 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0027> .
_:b819 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b819 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b819 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b82 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b82 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b82 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b82 <http://www.w3.org/ns/earl#result> _:b83 .
_:b82 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b82 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0023> .
_:b820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b820 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b820 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b820 <http://www.w3.org/ns/earl#result> _:b821 .
_:b820 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b820 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0028> .
_:b821 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b821 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b821 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b822 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b822 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b822 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b822 <http://www.w3.org/ns/earl#result> _:b823 .
_:b822 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b822 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0029> .
_:b823 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b823 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b823 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b824 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b824 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b824 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b824 <http://www.w3.org/ns/earl#result> _:b825 .
_:b824 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b824 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0030> .
_:b825 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b825 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b825 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b826 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b826 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b826 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b826 <http://www.w3.org/ns/earl#result> _:b827 .
_:b826 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b826 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0031> .
_:b827 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b827 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b827 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b828 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b828 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b828 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b828 <http://www.w3.org/ns/earl#result> _:b829 .
_:b828 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b828 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0032> .
_:b829 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b829 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b829 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b83 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b83 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b830 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b830 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b830 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b830 <http://www.w3.org/ns/earl#result> _:b831 .
_:b830 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b830 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0033> .
_:b831 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b831 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b831 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b832 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b832 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b832 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b832 <http://www.w3.org/ns/earl#result> _:b833 .
_:b832 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b832 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0034> .
_:b833 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b833 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b833 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b834 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b834 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b834 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b834 <http://www.w3.org/ns/earl#result> _:b835 .
_:b834 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b834 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0035> .
_:b835 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b835 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b835 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b836 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b836 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b836 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b836 <http://www.w3.org/ns/earl#result> _:b837 .
_:b836 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b836 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0036> .
_:b837 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b837 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b837 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b838 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b838 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b838 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b838 <http://www.w3.org/ns/earl#result> _:b839 .
_:b838 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b838 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0037> .
_:b839 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b839 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b839 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b84 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b84 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b84 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b84 <http://www.w3.org/ns/earl#result> _:b85 .
_:b84 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b84 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0024> .
_:b840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b840 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b840 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b840 <http://www.w3.org/ns/earl#result> _:b841 .
_:b840 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b840 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0038> .
_:b841 <http://purl.org/dc/terms/date> "2014-02-25T13:04:55+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b841 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b841 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b842 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b842 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b842 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b842 <http://www.w3.org/ns/earl#result> _:b843 .
_:b842 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b842 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0039> .
_:b843 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b843 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b843 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b844 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b844 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b844 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b844 <http://www.w3.org/ns/earl#result> _:b845 .
_:b844 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b844 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0040> .
_:b845 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b845 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b845 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b846 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b846 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b846 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b846 <http://www.w3.org/ns/earl#result> _:b847 .
_:b846 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b846 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0041> .
_:b847 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b847 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b847 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b848 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b848 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b848 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b848 <http://www.w3.org/ns/earl#result> _:b849 .
_:b848 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b848 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0042> .
_:b849 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b849 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b849 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b85 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b85 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b85 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b850 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b850 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b850 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b850 <http://www.w3.org/ns/earl#result> _:b851 .
_:b850 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b850 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/error-manifest.jsonld#t0043> .
_:b851 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b851 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b851 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b852 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b852 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b852 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b852 <http://www.w3.org/ns/earl#result> _:b853 .
_:b852 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b852 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0001> .
_:b853 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b853 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b853 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b854 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b854 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b854 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b854 <http://www.w3.org/ns/earl#result> _:b855 .
_:b854 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b854 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0002> .
_:b855 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b855 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b855 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b856 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b856 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b856 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b856 <http://www.w3.org/ns/earl#result> _:b857 .
_:b856 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b856 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0003> .
_:b857 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b857 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b857 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b858 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b858 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b858 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b858 <http://www.w3.org/ns/earl#result> _:b859 .
_:b858 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b858 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0004> .
_:b859 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b859 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b859 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b86 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b86 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b86 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b86 <http://www.w3.org/ns/earl#result> _:b87 .
_:b86 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b86 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0025> .
_:b860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b860 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b860 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b860 <http://www.w3.org/ns/earl#result> _:b861 .
_:b860 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b860 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0005> .
_:b861 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b861 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b861 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b862 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b862 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b862 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b862 <http://www.w3.org/ns/earl#result> _:b863 .
_:b862 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b862 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0006> .
_:b863 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b863 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b863 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b864 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b864 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b864 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b864 <http://www.w3.org/ns/earl#result> _:b865 .
_:b864 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b864 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0007> .
_:b865 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b865 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b865 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b866 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b866 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b866 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b866 <http://www.w3.org/ns/earl#result> _:b867 .
_:b866 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b866 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0008> .
_:b867 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b867 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b867 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b868 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b868 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b868 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b868 <http://www.w3.org/ns/earl#result> _:b869 .
_:b868 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b868 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0009> .
_:b869 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b869 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b869 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b87 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b87 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b87 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b870 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b870 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b870 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b870 <http://www.w3.org/ns/earl#result> _:b871 .
_:b870 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b870 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0010> .
_:b871 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b871 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b871 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b872 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b872 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b872 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b872 <http://www.w3.org/ns/earl#result> _:b873 .
_:b872 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b872 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0011> .
_:b873 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b873 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b873 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b874 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b874 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b874 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b874 <http://www.w3.org/ns/earl#result> _:b875 .
_:b874 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b874 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0012> .
_:b875 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b875 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b875 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b876 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b876 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b876 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b876 <http://www.w3.org/ns/earl#result> _:b877 .
_:b876 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b876 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0013> .
_:b877 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b877 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b877 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b878 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b878 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b878 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b878 <http://www.w3.org/ns/earl#result> _:b879 .
_:b878 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b878 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0014> .
_:b879 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b879 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b879 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b88 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b88 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b88 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b88 <http://www.w3.org/ns/earl#result> _:b89 .
_:b88 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b88 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0026> .
_:b880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b880 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b880 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b880 <http://www.w3.org/ns/earl#result> _:b881 .
_:b880 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b880 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0015> .
_:b881 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b881 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b881 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b882 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b882 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b882 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b882 <http://www.w3.org/ns/earl#result> _:b883 .
_:b882 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b882 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0016> .
_:b883 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b883 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b883 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b884 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b884 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b884 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b884 <http://www.w3.org/ns/earl#result> _:b885 .
_:b884 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b884 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0017> .
_:b885 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b885 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b885 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b886 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b886 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b886 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b886 <http://www.w3.org/ns/earl#result> _:b887 .
_:b886 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b886 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0018> .
_:b887 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b887 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b887 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b888 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b888 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b888 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b888 <http://www.w3.org/ns/earl#result> _:b889 .
_:b888 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b888 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0019> .
_:b889 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b889 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b889 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b89 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b89 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b89 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b890 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b890 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b890 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b890 <http://www.w3.org/ns/earl#result> _:b891 .
_:b890 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b890 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0020> .
_:b891 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b891 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b891 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b892 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b892 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b892 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b892 <http://www.w3.org/ns/earl#result> _:b893 .
_:b892 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b892 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/frame-manifest.jsonld#t0021> .
_:b893 <http://purl.org/dc/terms/date> "2014-02-25T13:04:56+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b893 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b893 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b9 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b9 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b90 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b90 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b90 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b90 <http://www.w3.org/ns/earl#result> _:b91 .
_:b90 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b90 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0027> .
_:b91 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b91 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b91 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b92 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b92 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b92 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b92 <http://www.w3.org/ns/earl#result> _:b93 .
_:b92 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b92 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0028> .
_:b93 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b93 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b93 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b94 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b94 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b94 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b94 <http://www.w3.org/ns/earl#result> _:b95 .
_:b94 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b94 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0029> .
_:b95 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b95 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b95 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b96 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b96 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b96 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b96 <http://www.w3.org/ns/earl#result> _:b97 .
_:b96 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b96 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0030> .
_:b97 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b97 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b97 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
_:b98 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#Assertion> .
_:b98 <http://www.w3.org/ns/earl#assertedBy> <http://tristan.github.com/foaf#me> .
_:b98 <http://www.w3.org/ns/earl#mode> <http://www.w3.org/ns/earl#automatic> .
_:b98 <http://www.w3.org/ns/earl#result> _:b99 .
_:b98 <http://www.w3.org/ns/earl#subject> <https://github.com/jsonld-java/jsonld-java> .
_:b98 <http://www.w3.org/ns/earl#test> <http://json-ld.org/test-suite/tests/normalize-manifest.jsonld#t0031> .
_:b99 <http://purl.org/dc/terms/date> "2014-02-25T13:04:53+11:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
_:b99 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/earl#TestResult> .
_:b99 <http://www.w3.org/ns/earl#outcome> <http://www.w3.org/ns/earl#passed> .
|