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
|
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix swrc: <http://swrc.ontoware.org/ontology#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix bench: <http://localhost/vocabulary/bench/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix person: <http://localhost/persons/> .
bench:Journal rdfs:subClassOf foaf:Document.
bench:Proceedings rdfs:subClassOf foaf:Document.
bench:Inproceedings rdfs:subClassOf foaf:Document.
bench:Article rdfs:subClassOf foaf:Document.
bench:Www rdfs:subClassOf foaf:Document.
bench:MastersThesis rdfs:subClassOf foaf:Document.
bench:PhDThesis rdfs:subClassOf foaf:Document.
bench:Incollection rdfs:subClassOf foaf:Document.
bench:Book rdfs:subClassOf foaf:Document.
<http://localhost/persons/Paul_Erdoes> rdf:type foaf:Person.
<http://localhost/persons/Paul_Erdoes> foaf:name "Paul Erdoes"^^xsd:string.
<http://localhost/misc/UnknownDocument> rdf:type foaf:Document.
<http://localhost/publications/journals/Journal1/1940> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1940> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1940> dc:title "Journal 1 (1940)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1940> swrc:volume "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1940> dcterms:issued "1940"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article1> bench:abstract "unmuzzling measles decentralizing hogfishes gantleted richer succories dwelling scrapped prat islanded burlily thanklessly swiveled polers oinked apnea maxillary dumpers bering evasiveness toto teashop reaccepts gunneries exorcises pirog desexes summable heliocentricity excretions recelebrating dually plateauing reoccupations embossers cerebrum gloves mohairs admiralties bewigged playgoers cheques batting waspishly stilbestrol villainousness miscalling firefanged skeins equalled sandwiching bewitchment cheaters riffled kerneling napoleons rifer splinting surmisers satisfying undamped sharpers forbearer anesthetization undermentioned outflanking funnyman commuted lachrymation floweret arcadian acridities unrealistic substituting surges preheats loggias reconciliating photocatalyst lenity tautological jambing sodality outcrop slipcases phenylketonuria grunts venturers valiantly unremorsefully extradites stollens ponderers conditione loathly cancels debiting parrots paraguayans resonates"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> bench:cdrom "http://www.hogfishes.tld/richer/succories.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> rdfs:seeAlso "http://www.gantleted.tld/succories/dwelling.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> swrc:month "4"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article1> swrc:note "overbites terminals giros podgy vagus kinkiest xix recollected"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> swrc:pages "110"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article1> dc:title "richer dwelling scrapped"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> foaf:homepage "http://www.succories.tld/scrapped/prat.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Adamanta_Schlitt rdf:type foaf:Person.
_:Adamanta_Schlitt foaf:name "Adamanta Schlitt"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article1> dc:creator _:Adamanta_Schlitt.
<http://localhost/publications/articles/Journal1/1940/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article1> dcterms:references _:references1.
_:references1 rdf:type rdf:Bag.
_:references1 rdf:_1 <http://localhost/misc/UnknownDocument>.
_:references1 rdf:_2 <http://localhost/misc/UnknownDocument>.
_:references1 rdf:_3 <http://localhost/misc/UnknownDocument>.
_:references1 rdf:_4 <http://localhost/misc/UnknownDocument>.
<http://localhost/publications/articles/Journal1/1940/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article2> bench:abstract "householder overeducated objurgate treaties preprocessor despising loftily yabber reprovingly blungers dwarflike effulgences coreless tuberculoses environs hulled preexamination oralogy tibetans slavishly hipless prs bluejays cuppier nonsurgical skimpiest outpoured dissociated heartier petitionee brill neologic intermuscular fobbed transcribed swifters redigesting ostinato recalculation safest signiory latchets inflecting trephines hops exec junketeers isolators reducing nethermost nonfiction retrogressions eliminates unknowns mongoloids danker raunchiness perspicuously disjoined nigglings midmonths labium peeped daydreams permuting immediately canzona interrelated cooked reformers goodwife technicolor plenishes nippy bounden occulters blubberer amenities desecrated tetrachlorides loutish polygony malines cliffhanger entailments reindexed bedstraws thoughtless elation swampland earings circumscribed paralyzingly pouchy surrejoinders chestiest measurage tonsils pasturage thurifer teazle"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> bench:cdrom "http://www.dwelling.tld/prat/islanded.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> rdfs:seeAlso "http://www.scrapped.tld/islanded/burlily.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> swrc:month "8"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article2> swrc:note "fringier rhythmical wastebaskets powderer immigrates inserter plights corollaries"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> swrc:pages "114"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article2> dc:title "prat burlily thanklessly"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> foaf:homepage "http://www.islanded.tld/thanklessly/swiveled.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Cecil_Kochler rdf:type foaf:Person.
_:Cecil_Kochler foaf:name "Cecil Kochler"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article2> dc:creator _:Cecil_Kochler.
<http://localhost/publications/articles/Journal1/1940/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article3> bench:abstract "gaudiness irades inadvisability disciplinarians majors manifestly decaffeinates scalepan folklorists attractive yeller cognizably reminds teratoid coadjutors thuggeries nondestructive maladjustments subpartnership cordilleras recirculations alkalin succulently marquise underlaid neurosurgeon innervated hunts barrens emanative blowpipe varies thickest machinability orbiters tormentor owner zanier corkscrewed promiscuousness clewed reassemble hesitation fainting croupy bacchanalia regainers teardown margarins inconvenience triunities dipped votarists kilogram timbrel presell woodcraft reupholstered xerosis steamers neurological warranter flashings oops detonations chippering photospherically pouchiest canvasses pyorrheas cartons acquirable refocus vividness administrated remedying prophetically allayed zinged fridge stained unintentional antiquarians dilutes quantitatively shovels vitric mendelism kookiest leavening embrocation casteless uroliths sashes marrieds fungic gasogenes obnoxiously dismounting endorser libations"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> bench:cdrom "http://www.burlily.tld/swiveled/polers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> rdfs:seeAlso "http://www.thanklessly.tld/polers/oinked.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> swrc:note "harrower claymores shiftlessly feedstuffs lyricizing hierarchs composedly taunting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> swrc:pages "117"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article3> dc:title "swiveled oinked apnea"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> foaf:homepage "http://www.polers.tld/apnea/maxillary.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Amalia_Krajcik rdf:type foaf:Person.
_:Amalia_Krajcik foaf:name "Amalia Krajcik"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article3> dc:creator _:Amalia_Krajcik.
<http://localhost/publications/articles/Journal1/1940/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article4> bench:abstract "dragged lobsters careering triplets hepatics colonies defalcate transplantations forfends voucherable intercepting jeered immunopathology addends surveiled wagers joysticks nonliving agric proliferating disintegrator oblongish leapfrogged overabundant legworks easeful cognize hoatzin toiled nonspecialized vrouw squads tantalums overweight readmits loopholing tattles irradiates befriends insinuators restorers rebroadcasting grousing overdrinking frow demarcators tasselling crocked wharfinger reconverting washboards overdrank recalculations dumps carousels acidly deponent venges shivas northers mutualist harebrained earthworms lunk forefended overtaking sourdoughs traditionless spoliator earthlier stenographers reallocating aslope seawaters ruminative patronly hydrozoon webbier foxiness toddy playlets mouthiest delegati renege briefless regularities planarity stubborner waterbeds disinclines antonyms anesthetize chanticleer administrants preengaging unitarians reevaluate rekeys ochroid climatotherapy crocks"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> bench:cdrom "http://www.oinked.tld/maxillary/dumpers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> rdfs:seeAlso "http://www.apnea.tld/dumpers/bering.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> swrc:note "carpetbag peonism metropolitanize twanged pedros nonforfeitable dissociative apostacy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> swrc:pages "120"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article4> dc:title "maxillary bering evasiveness"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> foaf:homepage "http://www.dumpers.tld/evasiveness/toto.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Martina_Mcclary rdf:type foaf:Person.
_:Martina_Mcclary foaf:name "Martina Mcclary"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article4> dc:creator _:Martina_Mcclary.
<http://localhost/publications/articles/Journal1/1940/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article5> rdfs:seeAlso "http://www.bering.tld/toto/teashop.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article5> swrc:note "malting footgear abominators trilobate jigsawed kickstands prated songstresses"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article5> swrc:pages "122"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article5> dc:title "evasiveness teashop reaccepts"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article5> foaf:homepage "http://www.toto.tld/reaccepts/gunneries.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Ashley_Kesselring rdf:type foaf:Person.
_:Ashley_Kesselring foaf:name "Ashley Kesselring"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article5> dc:creator _:Ashley_Kesselring.
<http://localhost/publications/articles/Journal1/1940/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article6> rdfs:seeAlso "http://www.teashop.tld/gunneries/exorcises.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article6> swrc:note "incorporeal piazadora hearings legation subendorsed hippocampus miscalculates whetters"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article6> swrc:pages "124"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article6> dc:title "reaccepts exorcises pirog"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article6> foaf:homepage "http://www.gunneries.tld/pirog/desexes.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Tatsukichi_Gerstenberger rdf:type foaf:Person.
_:Tatsukichi_Gerstenberger foaf:name "Tatsukichi Gerstenberger"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article6> dc:creator _:Tatsukichi_Gerstenberger.
<http://localhost/publications/articles/Journal1/1940/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article7> rdfs:seeAlso "http://www.exorcises.tld/desexes/summable.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article7> swrc:note "leviathans misadvised tiltyard numberable yawing prosecutrices pegboxes feeblish"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article7> swrc:pages "126"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article7> dc:title "pirog summable heliocentricity"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article7> foaf:homepage "http://www.desexes.tld/heliocentricity/excretions.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Fahroni_Anglea rdf:type foaf:Person.
_:Fahroni_Anglea foaf:name "Fahroni Anglea"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article7> dc:creator _:Fahroni_Anglea.
<http://localhost/publications/articles/Journal1/1940/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article8> rdfs:seeAlso "http://www.summable.tld/excretions/recelebrating.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article8> swrc:note "extenuation stranders abbesses strongboxes chromas oats pulling leatheriness"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article8> swrc:pages "128"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article8> dc:title "heliocentricity recelebrating dually"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article8> foaf:homepage "http://www.excretions.tld/dually/plateauing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Akina_Jang rdf:type foaf:Person.
_:Akina_Jang foaf:name "Akina Jang"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article8> dc:creator _:Akina_Jang.
<http://localhost/publications/articles/Journal1/1940/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article9> rdfs:seeAlso "http://www.recelebrating.tld/plateauing/reoccupations.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article9> swrc:note "witchy horologe bigamistic furrows eloquence cobwebbier divorcing incidentally"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article9> swrc:pages "130"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article9> dc:title "dually reoccupations embossers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article9> foaf:homepage "http://www.plateauing.tld/embossers/cerebrum.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Edmondo_Rommelfanger rdf:type foaf:Person.
_:Edmondo_Rommelfanger foaf:name "Edmondo Rommelfanger"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article9> dc:creator _:Edmondo_Rommelfanger.
<http://localhost/publications/articles/Journal1/1940/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article10> rdfs:seeAlso "http://www.reoccupations.tld/cerebrum/gloves.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article10> swrc:note "retorts insoles stockman queening allergist doyenne placarders septuagenarians"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article10> swrc:pages "132"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article10> dc:title "embossers gloves mohairs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article10> foaf:homepage "http://www.cerebrum.tld/mohairs/admiralties.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Pilib_Seu rdf:type foaf:Person.
_:Pilib_Seu foaf:name "Pilib Seu"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article10> dc:creator _:Pilib_Seu.
<http://localhost/publications/articles/Journal1/1940/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1940/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article11> rdfs:seeAlso "http://www.gloves.tld/admiralties/bewigged.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article11> swrc:note "safecracker cacaos mignonette tailored whews beholden branchless primitiveness"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article11> swrc:pages "134"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article11> dc:title "mohairs bewigged playgoers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article11> foaf:homepage "http://www.admiralties.tld/playgoers/cheques.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Dell_Kosel rdf:type foaf:Person.
_:Dell_Kosel foaf:name "Dell Kosel"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article11> dc:creator _:Dell_Kosel.
<http://localhost/publications/articles/Journal1/1940/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article12> rdfs:seeAlso "http://www.bewigged.tld/cheques/batting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article12> swrc:note "crimper tonners unfair southpaws scorify supportance jumpiest whanged"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article12> swrc:pages "136"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article12> dc:title "playgoers batting waspishly"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article12> foaf:homepage "http://www.cheques.tld/waspishly/stilbestrol.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Prebrana_Kekiwi rdf:type foaf:Person.
_:Prebrana_Kekiwi foaf:name "Prebrana Kekiwi"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article12> dc:creator _:Prebrana_Kekiwi.
<http://localhost/publications/articles/Journal1/1940/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article13> rdfs:seeAlso "http://www.batting.tld/stilbestrol/villainousness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article13> swrc:pages "137"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article13> dc:title "waspishly villainousness miscalling"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article13> foaf:homepage "http://www.stilbestrol.tld/miscalling/firefanged.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Korechika_Mamer rdf:type foaf:Person.
_:Korechika_Mamer foaf:name "Korechika Mamer"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article13> dc:creator _:Korechika_Mamer.
<http://localhost/publications/articles/Journal1/1940/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article14> rdfs:seeAlso "http://www.villainousness.tld/firefanged/skeins.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article14> swrc:pages "138"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article14> dc:title "miscalling skeins equalled"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article14> foaf:homepage "http://www.firefanged.tld/equalled/sandwiching.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Dorel_Brandt rdf:type foaf:Person.
_:Dorel_Brandt foaf:name "Dorel Brandt"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article14> dc:creator _:Dorel_Brandt.
<http://localhost/publications/articles/Journal1/1940/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article15> rdfs:seeAlso "http://www.skeins.tld/sandwiching/bewitchment.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article15> swrc:pages "139"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article15> dc:title "equalled bewitchment cheaters"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article15> foaf:homepage "http://www.sandwiching.tld/cheaters/riffled.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Yayang_Kuczenski rdf:type foaf:Person.
_:Yayang_Kuczenski foaf:name "Yayang Kuczenski"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article15> dc:creator _:Yayang_Kuczenski.
<http://localhost/publications/articles/Journal1/1940/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article16> rdfs:seeAlso "http://www.bewitchment.tld/riffled/kerneling.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article16> swrc:pages "140"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article16> dc:title "cheaters kerneling napoleons"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article16> foaf:homepage "http://www.riffled.tld/napoleons/rifer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Trina_Sjerven rdf:type foaf:Person.
_:Trina_Sjerven foaf:name "Trina Sjerven"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article16> dc:creator _:Trina_Sjerven.
<http://localhost/publications/articles/Journal1/1940/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article17> rdfs:seeAlso "http://www.kerneling.tld/rifer/splinting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article17> swrc:pages "141"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article17> dc:title "napoleons splinting surmisers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article17> foaf:homepage "http://www.rifer.tld/surmisers/satisfying.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Caden_Failing rdf:type foaf:Person.
_:Caden_Failing foaf:name "Caden Failing"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article17> dc:creator _:Caden_Failing.
<http://localhost/publications/articles/Journal1/1940/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article18> rdfs:seeAlso "http://www.splinting.tld/satisfying/undamped.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article18> swrc:pages "142"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article18> dc:title "surmisers undamped sharpers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article18> foaf:homepage "http://www.satisfying.tld/sharpers/forbearer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Mya_Swilley rdf:type foaf:Person.
_:Mya_Swilley foaf:name "Mya Swilley"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article18> dc:creator _:Mya_Swilley.
<http://localhost/publications/articles/Journal1/1940/Article19> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article19> rdfs:seeAlso "http://www.undamped.tld/forbearer/anesthetization.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article19> swrc:pages "143"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article19> dc:title "sharpers anesthetization undermentioned"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article19> foaf:homepage "http://www.forbearer.tld/undermentioned/outflanking.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article19> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Juriaan_Schremp rdf:type foaf:Person.
_:Juriaan_Schremp foaf:name "Juriaan Schremp"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article19> dc:creator _:Juriaan_Schremp.
<http://localhost/publications/articles/Journal1/1940/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1940/Article20> rdfs:seeAlso "http://www.anesthetization.tld/outflanking/funnyman.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article20> swrc:pages "144"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1940/Article20> dc:title "undermentioned funnyman commuted"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article20> foaf:homepage "http://www.outflanking.tld/commuted/lachrymation.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1940>.
_:Kozue_Efthimiou rdf:type foaf:Person.
_:Kozue_Efthimiou foaf:name "Kozue Efthimiou"^^xsd:string.
<http://localhost/publications/articles/Journal1/1940/Article20> dc:creator _:Kozue_Efthimiou.
<http://localhost/publications/journals/Journal1/1940> swrc:editor _:Sharise_Heagy.
_:Sharise_Heagy rdf:type foaf:Person.
_:Sharise_Heagy foaf:name "Sharise Heagy"^^xsd:string.
<http://localhost/publications/journals/Journal1/1941> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1941> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1941> dc:title "Journal 1 (1941)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1941> swrc:volume "2"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1941> dcterms:issued "1941"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article1> rdfs:seeAlso "http://www.commuted.tld/floweret/arcadian.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article1> swrc:pages "181"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article1> dc:title "lachrymation arcadian acridities"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article1> foaf:homepage "http://www.floweret.tld/acridities/unrealistic.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
<http://localhost/publications/articles/Journal1/1941/Article1> dc:creator _:Mya_Swilley.
<http://localhost/publications/articles/Journal1/1941/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article2> rdfs:seeAlso "http://www.arcadian.tld/unrealistic/substituting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article2> swrc:pages "100"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article2> dc:title "acridities substituting surges"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article2> foaf:homepage "http://www.unrealistic.tld/surges/preheats.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
<http://localhost/publications/articles/Journal1/1941/Article2> dc:creator _:Kozue_Efthimiou.
<http://localhost/publications/articles/Journal1/1941/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article3> rdfs:seeAlso "http://www.substituting.tld/preheats/loggias.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article3> swrc:pages "182"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article3> dc:title "surges loggias reconciliating"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article3> foaf:homepage "http://www.preheats.tld/reconciliating/photocatalyst.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
<http://localhost/publications/articles/Journal1/1941/Article3> dc:creator _:Pilib_Seu.
<http://localhost/publications/articles/Journal1/1941/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article4> rdfs:seeAlso "http://www.loggias.tld/photocatalyst/lenity.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article4> swrc:pages "97"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article4> dc:title "reconciliating lenity tautological"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article4> foaf:homepage "http://www.photocatalyst.tld/tautological/jambing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
<http://localhost/publications/articles/Journal1/1941/Article4> dc:creator _:Prebrana_Kekiwi.
<http://localhost/publications/articles/Journal1/1941/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article5> rdfs:seeAlso "http://www.lenity.tld/jambing/sodality.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article5> swrc:pages "171"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article5> dc:title "tautological sodality outcrop"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article5> foaf:homepage "http://www.jambing.tld/outcrop/slipcases.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
<http://localhost/publications/articles/Journal1/1941/Article5> dc:creator _:Dorel_Brandt.
<http://localhost/publications/articles/Journal1/1941/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article6> rdfs:seeAlso "http://www.sodality.tld/slipcases/phenylketonuria.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article6> swrc:pages "110"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article6> dc:title "outcrop phenylketonuria grunts"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article6> foaf:homepage "http://www.slipcases.tld/grunts/venturers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
<http://localhost/publications/articles/Journal1/1941/Article6> dc:creator _:Trina_Sjerven.
<http://localhost/publications/articles/Journal1/1941/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article7> rdfs:seeAlso "http://www.phenylketonuria.tld/venturers/valiantly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article7> swrc:pages "184"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article7> dc:title "grunts valiantly unremorsefully"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article7> foaf:homepage "http://www.venturers.tld/unremorsefully/extradites.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Phaethon_Gearon rdf:type foaf:Person.
_:Phaethon_Gearon foaf:name "Phaethon Gearon"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article7> dc:creator _:Phaethon_Gearon.
<http://localhost/publications/articles/Journal1/1941/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article8> rdfs:seeAlso "http://www.valiantly.tld/extradites/stollens.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article8> swrc:pages "111"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article8> dc:title "unremorsefully stollens ponderers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article8> foaf:homepage "http://www.extradites.tld/ponderers/conditione.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Lone_Pavese rdf:type foaf:Person.
_:Lone_Pavese foaf:name "Lone Pavese"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article8> dc:creator _:Lone_Pavese.
<http://localhost/publications/articles/Journal1/1941/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article9> rdfs:seeAlso "http://www.stollens.tld/conditione/loathly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article9> swrc:pages "169"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article9> dc:title "ponderers loathly cancels"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article9> foaf:homepage "http://www.conditione.tld/cancels/debiting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Motoyasu_Calligy rdf:type foaf:Person.
_:Motoyasu_Calligy foaf:name "Motoyasu Calligy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article9> dc:creator _:Motoyasu_Calligy.
<http://localhost/publications/articles/Journal1/1941/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article10> rdfs:seeAlso "http://www.loathly.tld/debiting/parrots.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article10> swrc:pages "112"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article10> dc:title "cancels parrots paraguayans"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article10> foaf:homepage "http://www.debiting.tld/paraguayans/resonates.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Firdaus_Casavez rdf:type foaf:Person.
_:Firdaus_Casavez foaf:name "Firdaus Casavez"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article10> dc:creator _:Firdaus_Casavez.
<http://localhost/publications/articles/Journal1/1941/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1941/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article11> rdfs:seeAlso "http://www.parrots.tld/resonates/overbites.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article11> swrc:pages "178"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article11> dc:title "paraguayans overbites terminals"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article11> foaf:homepage "http://www.resonates.tld/terminals/giros.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Angha_Bievenue rdf:type foaf:Person.
_:Angha_Bievenue foaf:name "Angha Bievenue"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article11> dc:creator _:Angha_Bievenue.
<http://localhost/publications/articles/Journal1/1941/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article12> rdfs:seeAlso "http://www.overbites.tld/giros/podgy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article12> swrc:pages "101"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article12> dc:title "terminals podgy vagus"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article12> foaf:homepage "http://www.giros.tld/vagus/kinkiest.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Araceli_Ertel rdf:type foaf:Person.
_:Araceli_Ertel foaf:name "Araceli Ertel"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article12> dc:creator _:Araceli_Ertel.
<http://localhost/publications/articles/Journal1/1941/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article13> rdfs:seeAlso "http://www.podgy.tld/kinkiest/xix.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article13> swrc:pages "183"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article13> dc:title "vagus xix recollected"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article13> foaf:homepage "http://www.kinkiest.tld/recollected/householder.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Nik_Reposa rdf:type foaf:Person.
_:Nik_Reposa foaf:name "Nik Reposa"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article13> dc:creator _:Nik_Reposa.
<http://localhost/publications/articles/Journal1/1941/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article14> rdfs:seeAlso "http://www.xix.tld/householder/overeducated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article14> swrc:pages "98"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article14> dc:title "recollected overeducated objurgate"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article14> foaf:homepage "http://www.householder.tld/objurgate/treaties.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Shiko_Seagroves rdf:type foaf:Person.
_:Shiko_Seagroves foaf:name "Shiko Seagroves"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article14> dc:creator _:Shiko_Seagroves.
<http://localhost/publications/articles/Journal1/1941/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article15> rdfs:seeAlso "http://www.overeducated.tld/treaties/preprocessor.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article15> swrc:pages "124"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article15> dc:title "objurgate preprocessor despising"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article15> foaf:homepage "http://www.treaties.tld/despising/loftily.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Dianmu_Aver rdf:type foaf:Person.
_:Dianmu_Aver foaf:name "Dianmu Aver"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article15> dc:creator _:Dianmu_Aver.
<http://localhost/publications/articles/Journal1/1941/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article16> rdfs:seeAlso "http://www.preprocessor.tld/loftily/yabber.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article16> swrc:pages "91"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article16> dc:title "despising yabber reprovingly"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article16> foaf:homepage "http://www.loftily.tld/reprovingly/blungers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Helene_Nik rdf:type foaf:Person.
_:Helene_Nik foaf:name "Helene Nik"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article16> dc:creator _:Helene_Nik.
<http://localhost/publications/articles/Journal1/1941/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article17> rdfs:seeAlso "http://www.yabber.tld/blungers/dwarflike.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article17> swrc:pages "125"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article17> dc:title "reprovingly dwarflike effulgences"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article17> foaf:homepage "http://www.blungers.tld/effulgences/coreless.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Yemena_Knebel rdf:type foaf:Person.
_:Yemena_Knebel foaf:name "Yemena Knebel"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article17> dc:creator _:Yemena_Knebel.
<http://localhost/publications/articles/Journal1/1941/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article18> rdfs:seeAlso "http://www.dwarflike.tld/coreless/tuberculoses.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article18> swrc:pages "92"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article18> dc:title "effulgences tuberculoses environs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article18> foaf:homepage "http://www.coreless.tld/environs/hulled.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Melisa_Patriarco rdf:type foaf:Person.
_:Melisa_Patriarco foaf:name "Melisa Patriarco"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article18> dc:creator _:Melisa_Patriarco.
<http://localhost/publications/articles/Journal1/1941/Article19> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article19> rdfs:seeAlso "http://www.tuberculoses.tld/hulled/preexamination.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article19> swrc:pages "126"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article19> dc:title "environs preexamination oralogy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article19> foaf:homepage "http://www.hulled.tld/oralogy/tibetans.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article19> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Dama_Leino rdf:type foaf:Person.
_:Dama_Leino foaf:name "Dama Leino"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article19> dc:creator _:Dama_Leino.
<http://localhost/publications/articles/Journal1/1941/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article20> rdfs:seeAlso "http://www.preexamination.tld/tibetans/slavishly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article20> swrc:pages "89"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article20> dc:title "oralogy slavishly hipless"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article20> foaf:homepage "http://www.tibetans.tld/hipless/prs.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Satoru_Beaumont rdf:type foaf:Person.
_:Satoru_Beaumont foaf:name "Satoru Beaumont"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article20> dc:creator _:Satoru_Beaumont.
<http://localhost/publications/articles/Journal1/1941/Article21> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article21> rdfs:seeAlso "http://www.slavishly.tld/prs/bluejays.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article21> swrc:pages "147"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article21> dc:title "hipless bluejays cuppier"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article21> foaf:homepage "http://www.prs.tld/cuppier/nonsurgical.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article21> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Booker_Spiker rdf:type foaf:Person.
_:Booker_Spiker foaf:name "Booker Spiker"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article21> dc:creator _:Booker_Spiker.
<http://localhost/publications/articles/Journal1/1941/Article22> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article22> rdfs:seeAlso "http://www.bluejays.tld/nonsurgical/skimpiest.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article22> swrc:pages "70"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article22> dc:title "cuppier skimpiest outpoured"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article22> foaf:homepage "http://www.nonsurgical.tld/outpoured/dissociated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article22> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Eupeithes_Bevens rdf:type foaf:Person.
_:Eupeithes_Bevens foaf:name "Eupeithes Bevens"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article22> dc:creator _:Eupeithes_Bevens.
<http://localhost/publications/articles/Journal1/1941/Article23> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1941/Article23> rdfs:seeAlso "http://www.skimpiest.tld/dissociated/heartier.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article23> swrc:pages "144"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1941/Article23> dc:title "outpoured heartier petitionee"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article23> foaf:homepage "http://www.dissociated.tld/petitionee/brill.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article23> swrc:journal <http://localhost/publications/journals/Journal1/1941>.
_:Miranda_Leinen rdf:type foaf:Person.
_:Miranda_Leinen foaf:name "Miranda Leinen"^^xsd:string.
<http://localhost/publications/articles/Journal1/1941/Article23> dc:creator _:Miranda_Leinen.
<http://localhost/publications/journals/Journal1/1941> swrc:editor _:Lane_Portes.
_:Lane_Portes rdf:type foaf:Person.
_:Lane_Portes foaf:name "Lane Portes"^^xsd:string.
<http://localhost/publications/incolls/1941/Incollection1> rdf:type bench:Incollection.
<http://localhost/publications/incolls/1941/Incollection1> bench:booktitle "heartier brill neologic"^^xsd:string.
<http://localhost/publications/incolls/1941/Incollection1> rdfs:seeAlso "http://www.petitionee.tld/neologic/intermuscular.html"^^xsd:string.
<http://localhost/publications/incolls/1941/Incollection1> swrc:pages "119"^^xsd:integer.
<http://localhost/publications/incolls/1941/Incollection1> dc:title "brill intermuscular fobbed"^^xsd:string.
<http://localhost/publications/incolls/1941/Incollection1> foaf:homepage "http://www.neologic.tld/fobbed/transcribed.html"^^xsd:string.
<http://localhost/publications/incolls/1941/Incollection1> dcterms:issued "1941"^^xsd:integer.
_:Vasilista_Hamic rdf:type foaf:Person.
_:Vasilista_Hamic foaf:name "Vasilista Hamic"^^xsd:string.
<http://localhost/publications/incolls/1941/Incollection1> dc:creator _:Vasilista_Hamic.
<http://localhost/publications/journals/Journal1/1942> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1942> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1942> dc:title "Journal 1 (1942)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1942> swrc:volume "3"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1942> dcterms:issued "1942"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article1> rdfs:seeAlso "http://www.fobbed.tld/swifters/redigesting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article1> swrc:pages "88"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article1> dc:title "transcribed redigesting ostinato"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article1> foaf:homepage "http://www.swifters.tld/ostinato/recalculation.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article1> dc:creator _:Yemena_Knebel.
<http://localhost/publications/articles/Journal1/1942/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article2> rdfs:seeAlso "http://www.redigesting.tld/recalculation/safest.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article2> swrc:pages "86"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article2> dc:title "ostinato safest signiory"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article2> foaf:homepage "http://www.recalculation.tld/signiory/latchets.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article2> dc:creator _:Melisa_Patriarco.
<http://localhost/publications/articles/Journal1/1942/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article3> rdfs:seeAlso "http://www.safest.tld/latchets/inflecting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article3> swrc:pages "87"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article3> dc:title "signiory inflecting trephines"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article3> foaf:homepage "http://www.latchets.tld/trephines/hops.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article3> dc:creator _:Dama_Leino.
<http://localhost/publications/articles/Journal1/1942/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article4> rdfs:seeAlso "http://www.inflecting.tld/hops/exec.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article4> swrc:pages "87"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article4> dc:title "trephines exec junketeers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article4> foaf:homepage "http://www.hops.tld/junketeers/isolators.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article4> dc:creator _:Satoru_Beaumont.
<http://localhost/publications/articles/Journal1/1942/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article5> rdfs:seeAlso "http://www.exec.tld/isolators/reducing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article5> swrc:note "intercollegiate iniquitously lycanthropies electrophoresed dinting rezoning pledgee protoactinium"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article5> dc:title "junketeers reducing nethermost"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article5> foaf:homepage "http://www.isolators.tld/nethermost/nonfiction.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article5> dc:creator _:Booker_Spiker.
<http://localhost/publications/articles/Journal1/1942/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article6> bench:abstract "darned emblements shrewed alluvials depressional airlifts tests sliming felicitator virological results contradistinctions unexciting debateable tenants earrings overrigid hidebound faire poloist comets paraphraser whangs uncovering infested heaver euphorically ameliorative aglets preciosity curring compositely antennal undrinkable charter uncashed huntedly czardoms unidentifiable reversing monstrances gravies quadrigamist mysteriously trenchers artfully mangled operably ionizing tenantry armfuls appendant submontane stoutening piling defunctness bestializing overconfident triadism vivifier vivisection distally polyclinic foretime triarchy homerooms totterer diarist needlessness lambies geed charts begets floorthrough chargee affixion pincers quipped cabinetmaking unsupervised deathcups dogfight wormhole emptied drifter sluggishness senescent representable honors bullier superintended investigated paragraphed claywares resourcefulness psychos morphia ventricular iteming immunoreactive"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article6> bench:cdrom "http://www.reducing.tld/nonfiction/retrogressions.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article6> rdfs:seeAlso "http://www.nethermost.tld/retrogressions/eliminates.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article6> swrc:month "1"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article6> swrc:pages "69"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article6> dc:title "nonfiction eliminates unknowns"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article6> foaf:homepage "http://www.retrogressions.tld/unknowns/mongoloids.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article6> dc:creator _:Eupeithes_Bevens.
<http://localhost/publications/articles/Journal1/1942/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article7> rdfs:seeAlso "http://www.eliminates.tld/mongoloids/danker.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article7> swrc:note "weasand yearlings timidities untold fellowman adamantine museful medallions"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article7> swrc:pages "50"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article7> dc:title "unknowns danker raunchiness"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article7> foaf:homepage "http://www.mongoloids.tld/raunchiness/perspicuously.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article7> dc:creator _:Miranda_Leinen.
<http://localhost/publications/articles/Journal1/1942/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article8> rdfs:seeAlso "http://www.danker.tld/perspicuously/disjoined.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article8> swrc:pages "51"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article8> dc:title "raunchiness disjoined nigglings"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article8> foaf:homepage "http://www.perspicuously.tld/nigglings/midmonths.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article8> dc:creator _:Vasilista_Hamic.
<http://localhost/publications/articles/Journal1/1942/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article9> rdfs:seeAlso "http://www.disjoined.tld/midmonths/labium.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article9> swrc:note "malingerers gnashes chuffs redundance matriculant flexes repairing keepable"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article9> swrc:pages "80"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article9> dc:title "nigglings labium peeped"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article9> foaf:homepage "http://www.midmonths.tld/peeped/daydreams.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
<http://localhost/publications/articles/Journal1/1942/Article9> dc:creator _:Angha_Bievenue.
<http://localhost/publications/articles/Journal1/1942/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article10> rdfs:seeAlso "http://www.labium.tld/daydreams/permuting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article10> swrc:pages "74"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article10> dc:title "peeped permuting immediately"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article10> foaf:homepage "http://www.daydreams.tld/immediately/canzona.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Kichibei_Opitz rdf:type foaf:Person.
_:Kichibei_Opitz foaf:name "Kichibei Opitz"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article10> dc:creator _:Kichibei_Opitz.
<http://localhost/publications/articles/Journal1/1942/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1942/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article11> rdfs:seeAlso "http://www.permuting.tld/canzona/interrelated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article11> swrc:note "etchers mitering laboratorian tiptoed humoring hairiest ouzels frequented"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article11> swrc:pages "69"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article11> dc:title "immediately interrelated cooked"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article11> foaf:homepage "http://www.canzona.tld/cooked/reformers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Luzia_Rahib rdf:type foaf:Person.
_:Luzia_Rahib foaf:name "Luzia Rahib"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article11> dc:creator _:Luzia_Rahib.
<http://localhost/publications/articles/Journal1/1942/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article12> rdfs:seeAlso "http://www.interrelated.tld/reformers/goodwife.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article12> swrc:pages "72"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article12> dc:title "cooked goodwife technicolor"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article12> foaf:homepage "http://www.reformers.tld/technicolor/plenishes.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Gia_Stonesifer rdf:type foaf:Person.
_:Gia_Stonesifer foaf:name "Gia Stonesifer"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article12> dc:creator _:Gia_Stonesifer.
<http://localhost/publications/articles/Journal1/1942/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article13> rdfs:seeAlso "http://www.goodwife.tld/plenishes/nippy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article13> swrc:pages "70"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article13> dc:title "technicolor nippy bounden"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article13> foaf:homepage "http://www.plenishes.tld/bounden/occulters.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Uqbah_Oconnell rdf:type foaf:Person.
_:Uqbah_Oconnell foaf:name "Uqbah Oconnell"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article13> dc:creator _:Uqbah_Oconnell.
<http://localhost/publications/articles/Journal1/1942/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article14> rdfs:seeAlso "http://www.nippy.tld/occulters/blubberer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article14> swrc:pages "71"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article14> dc:title "bounden blubberer amenities"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article14> foaf:homepage "http://www.occulters.tld/amenities/desecrated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Heidelore_Ruschmann rdf:type foaf:Person.
_:Heidelore_Ruschmann foaf:name "Heidelore Ruschmann"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article14> dc:creator _:Heidelore_Ruschmann.
<http://localhost/publications/articles/Journal1/1942/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article15> rdfs:seeAlso "http://www.blubberer.tld/desecrated/tetrachlorides.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article15> swrc:note "negatively witnesses pharisaical flaunting divergence semitraditional negotiators greaves"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article15> swrc:pages "76"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article15> dc:title "amenities tetrachlorides loutish"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article15> foaf:homepage "http://www.desecrated.tld/loutish/polygony.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Octave_Diana rdf:type foaf:Person.
_:Octave_Diana foaf:name "Octave Diana"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article15> dc:creator _:Octave_Diana.
<http://localhost/publications/articles/Journal1/1942/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article16> rdfs:seeAlso "http://www.tetrachlorides.tld/polygony/malines.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article16> swrc:pages "70"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article16> dc:title "loutish malines cliffhanger"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article16> foaf:homepage "http://www.polygony.tld/cliffhanger/entailments.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Mitsuo_Neff rdf:type foaf:Person.
_:Mitsuo_Neff foaf:name "Mitsuo Neff"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article16> dc:creator _:Mitsuo_Neff.
<http://localhost/publications/articles/Journal1/1942/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article17> dc:title "malines entailments reindexed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article17> foaf:homepage "http://www.cliffhanger.tld/reindexed/bedstraws.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Alexandros_Lagazo rdf:type foaf:Person.
_:Alexandros_Lagazo foaf:name "Alexandros Lagazo"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article17> dc:creator _:Alexandros_Lagazo.
<http://localhost/publications/articles/Journal1/1942/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article18> rdfs:seeAlso "http://www.entailments.tld/bedstraws/thoughtless.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article18> swrc:pages "69"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article18> dc:title "reindexed thoughtless elation"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article18> foaf:homepage "http://www.bedstraws.tld/elation/swampland.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Elvera_Zito rdf:type foaf:Person.
_:Elvera_Zito foaf:name "Elvera Zito"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article18> dc:creator _:Elvera_Zito.
<http://localhost/publications/articles/Journal1/1942/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article20> rdfs:seeAlso "http://www.thoughtless.tld/swampland/earings.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article20> swrc:pages "69"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article20> dc:title "elation earings circumscribed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article20> foaf:homepage "http://www.swampland.tld/circumscribed/paralyzingly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Shahaama_Berum rdf:type foaf:Person.
_:Shahaama_Berum foaf:name "Shahaama Berum"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article20> dc:creator _:Shahaama_Berum.
<http://localhost/publications/articles/Journal1/1942/Article21> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article21> rdfs:seeAlso "http://www.earings.tld/paralyzingly/pouchy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article21> swrc:pages "5"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article21> dc:title "circumscribed pouchy surrejoinders"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article21> foaf:homepage "http://www.paralyzingly.tld/surrejoinders/chestiest.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article21> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Dena_Mcentire rdf:type foaf:Person.
_:Dena_Mcentire foaf:name "Dena Mcentire"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article21> dc:creator _:Dena_Mcentire.
<http://localhost/publications/articles/Journal1/1942/Article22> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article22> rdfs:seeAlso "http://www.pouchy.tld/chestiest/measurage.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article22> swrc:pages "10"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article22> dc:title "surrejoinders measurage tonsils"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article22> foaf:homepage "http://www.chestiest.tld/tonsils/pasturage.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article22> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Shaka_Enget rdf:type foaf:Person.
_:Shaka_Enget foaf:name "Shaka Enget"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article22> dc:creator _:Shaka_Enget.
<http://localhost/publications/articles/Journal1/1942/Article23> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article23> rdfs:seeAlso "http://www.measurage.tld/pasturage/thurifer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article23> swrc:pages "166"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article23> dc:title "tonsils thurifer teazle"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article23> foaf:homepage "http://www.pasturage.tld/teazle/fringier.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article23> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Argos_Cumings rdf:type foaf:Person.
_:Argos_Cumings foaf:name "Argos Cumings"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article23> dc:creator _:Argos_Cumings.
<http://localhost/publications/articles/Journal1/1942/Article24> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article24> rdfs:seeAlso "http://www.thurifer.tld/fringier/rhythmical.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article24> swrc:pages "155"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article24> dc:title "teazle rhythmical wastebaskets"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article24> foaf:homepage "http://www.fringier.tld/wastebaskets/powderer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article24> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Torah_Giller rdf:type foaf:Person.
_:Torah_Giller foaf:name "Torah Giller"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article24> dc:creator _:Torah_Giller.
<http://localhost/publications/articles/Journal1/1942/Article25> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article25> rdfs:seeAlso "http://www.rhythmical.tld/powderer/immigrates.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article25> swrc:pages "106"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article25> dc:title "wastebaskets immigrates inserter"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article25> foaf:homepage "http://www.powderer.tld/inserter/plights.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article25> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Guido_Genier rdf:type foaf:Person.
_:Guido_Genier foaf:name "Guido Genier"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article25> dc:creator _:Guido_Genier.
<http://localhost/publications/articles/Journal1/1942/Article26> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1942/Article26> rdfs:seeAlso "http://www.immigrates.tld/plights/corollaries.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article26> swrc:pages "41"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1942/Article26> dc:title "inserter corollaries gaudiness"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article26> foaf:homepage "http://www.plights.tld/gaudiness/irades.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article26> swrc:journal <http://localhost/publications/journals/Journal1/1942>.
_:Diana_Gulbranson rdf:type foaf:Person.
_:Diana_Gulbranson foaf:name "Diana Gulbranson"^^xsd:string.
<http://localhost/publications/articles/Journal1/1942/Article26> dc:creator _:Diana_Gulbranson.
<http://localhost/publications/journals/Journal1/1942> swrc:editor _:Sadayoshi_Englemann.
_:Sadayoshi_Englemann rdf:type foaf:Person.
_:Sadayoshi_Englemann foaf:name "Sadayoshi Englemann"^^xsd:string.
<http://localhost/publications/incolls/1942/Incollection1> rdf:type bench:Incollection.
<http://localhost/publications/incolls/1942/Incollection1> bench:booktitle "corollaries irades inadvisability"^^xsd:string.
<http://localhost/publications/incolls/1942/Incollection1> swrc:pages "147"^^xsd:integer.
<http://localhost/publications/incolls/1942/Incollection1> dc:title "gaudiness inadvisability disciplinarians"^^xsd:string.
<http://localhost/publications/incolls/1942/Incollection1> foaf:homepage "http://www.irades.tld/disciplinarians/majors.html"^^xsd:string.
<http://localhost/publications/incolls/1942/Incollection1> dcterms:issued "1942"^^xsd:integer.
_:Shinji_Kapler rdf:type foaf:Person.
_:Shinji_Kapler foaf:name "Shinji Kapler"^^xsd:string.
<http://localhost/publications/incolls/1942/Incollection1> dc:creator _:Shinji_Kapler.
<http://localhost/publications/journals/Journal1/1943> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1943> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1943> dc:title "Journal 1 (1943)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1943> swrc:volume "4"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1943> dcterms:issued "1943"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article1> rdfs:seeAlso "http://www.disciplinarians.tld/manifestly/decaffeinates.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article1> swrc:pages "105"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article1> dc:title "majors decaffeinates scalepan"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article1> foaf:homepage "http://www.manifestly.tld/scalepan/folklorists.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Raaid_Chrispen rdf:type foaf:Person.
_:Raaid_Chrispen foaf:name "Raaid Chrispen"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article1> dc:creator _:Raaid_Chrispen.
<http://localhost/publications/articles/Journal1/1943/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article2> rdfs:seeAlso "http://www.decaffeinates.tld/folklorists/attractive.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article2> swrc:pages "194"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article2> dc:title "scalepan attractive yeller"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article2> foaf:homepage "http://www.folklorists.tld/yeller/cognizably.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article2> dc:creator _:Shahaama_Berum.
<http://localhost/publications/articles/Journal1/1943/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article3> rdfs:seeAlso "http://www.attractive.tld/cognizably/reminds.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article3> swrc:pages "73"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article3> dc:title "yeller reminds teratoid"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article3> foaf:homepage "http://www.cognizably.tld/teratoid/coadjutors.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article3> dc:creator _:Dena_Mcentire.
<http://localhost/publications/articles/Journal1/1943/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article4> swrc:pages "88"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article4> dc:title "reminds coadjutors thuggeries"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article4> foaf:homepage "http://www.teratoid.tld/thuggeries/nondestructive.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article4> dc:creator _:Shaka_Enget.
<http://localhost/publications/articles/Journal1/1943/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article5> rdfs:seeAlso "http://www.coadjutors.tld/nondestructive/maladjustments.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article5> swrc:pages "28"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article5> dc:title "thuggeries maladjustments subpartnership"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article5> foaf:homepage "http://www.nondestructive.tld/subpartnership/cordilleras.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article5> dc:creator _:Argos_Cumings.
<http://localhost/publications/articles/Journal1/1943/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article6> rdfs:seeAlso "http://www.maladjustments.tld/cordilleras/recirculations.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article6> swrc:pages "147"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article6> dc:title "subpartnership recirculations alkalin"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article6> foaf:homepage "http://www.cordilleras.tld/alkalin/succulently.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article6> dc:creator _:Torah_Giller.
<http://localhost/publications/articles/Journal1/1943/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article7> rdfs:seeAlso "http://www.recirculations.tld/succulently/marquise.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article7> swrc:pages "146"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article7> dc:title "alkalin marquise underlaid"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article7> foaf:homepage "http://www.succulently.tld/underlaid/neurosurgeon.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article7> dc:creator _:Guido_Genier.
<http://localhost/publications/articles/Journal1/1943/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article8> rdfs:seeAlso "http://www.marquise.tld/neurosurgeon/innervated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article8> dc:title "underlaid innervated hunts"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article8> foaf:homepage "http://www.neurosurgeon.tld/hunts/barrens.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article8> dc:creator _:Diana_Gulbranson.
<http://localhost/publications/articles/Journal1/1943/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article9> dc:title "innervated barrens emanative"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article9> foaf:homepage "http://www.hunts.tld/emanative/blowpipe.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article9> dc:creator _:Shinji_Kapler.
<http://localhost/publications/articles/Journal1/1943/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article10> rdfs:seeAlso "http://www.barrens.tld/blowpipe/varies.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article10> swrc:pages "107"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article10> dc:title "emanative varies thickest"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article10> foaf:homepage "http://www.blowpipe.tld/thickest/machinability.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
<http://localhost/publications/articles/Journal1/1943/Article10> dc:creator _:Uqbah_Oconnell.
<http://localhost/publications/articles/Journal1/1943/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1943/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article11> rdfs:seeAlso "http://www.varies.tld/machinability/orbiters.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article11> swrc:pages "124"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article11> dc:title "thickest orbiters tormentor"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article11> foaf:homepage "http://www.machinability.tld/tormentor/owner.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Gennadi_Schanck rdf:type foaf:Person.
_:Gennadi_Schanck foaf:name "Gennadi Schanck"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article11> dc:creator _:Gennadi_Schanck.
<http://localhost/publications/articles/Journal1/1943/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article12> swrc:pages "83"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article12> dc:title "orbiters owner zanier"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article12> foaf:homepage "http://www.tormentor.tld/zanier/corkscrewed.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Barsha_Murrain rdf:type foaf:Person.
_:Barsha_Murrain foaf:name "Barsha Murrain"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article12> dc:creator _:Barsha_Murrain.
<http://localhost/publications/articles/Journal1/1943/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article13> swrc:pages "152"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article13> dc:title "owner corkscrewed promiscuousness"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article13> foaf:homepage "http://www.zanier.tld/promiscuousness/clewed.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Gulika_Alipio rdf:type foaf:Person.
_:Gulika_Alipio foaf:name "Gulika Alipio"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article13> dc:creator _:Gulika_Alipio.
<http://localhost/publications/articles/Journal1/1943/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article14> swrc:pages "65"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article14> dc:title "corkscrewed clewed reassemble"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article14> foaf:homepage "http://www.promiscuousness.tld/reassemble/hesitation.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Solange_Alson rdf:type foaf:Person.
_:Solange_Alson foaf:name "Solange Alson"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article14> dc:creator _:Solange_Alson.
<http://localhost/publications/articles/Journal1/1943/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article15> swrc:pages "38"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article15> dc:title "clewed hesitation fainting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article15> foaf:homepage "http://www.reassemble.tld/fainting/croupy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Wava_Goubeaux rdf:type foaf:Person.
_:Wava_Goubeaux foaf:name "Wava Goubeaux"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article15> dc:creator _:Wava_Goubeaux.
<http://localhost/publications/articles/Journal1/1943/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article16> swrc:pages "45"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article16> dc:title "hesitation croupy bacchanalia"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article16> foaf:homepage "http://www.fainting.tld/bacchanalia/regainers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Vedetta_Pilkins rdf:type foaf:Person.
_:Vedetta_Pilkins foaf:name "Vedetta Pilkins"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article16> dc:creator _:Vedetta_Pilkins.
<http://localhost/publications/articles/Journal1/1943/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article17> rdfs:seeAlso "http://www.croupy.tld/regainers/teardown.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article17> swrc:pages "96"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article17> dc:title "bacchanalia teardown margarins"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article17> foaf:homepage "http://www.regainers.tld/margarins/inconvenience.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Tydeus_Dyckman rdf:type foaf:Person.
_:Tydeus_Dyckman foaf:name "Tydeus Dyckman"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article17> dc:creator _:Tydeus_Dyckman.
<http://localhost/publications/articles/Journal1/1943/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article18> swrc:pages "13"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article18> dc:title "teardown inconvenience triunities"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article18> foaf:homepage "http://www.margarins.tld/triunities/dipped.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Rufio_Guitard rdf:type foaf:Person.
_:Rufio_Guitard foaf:name "Rufio Guitard"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article18> dc:creator _:Rufio_Guitard.
<http://localhost/publications/articles/Journal1/1943/Article19> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article19> swrc:pages "146"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article19> dc:title "inconvenience dipped votarists"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article19> foaf:homepage "http://www.triunities.tld/votarists/kilogram.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article19> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Safiyya_Letchaw rdf:type foaf:Person.
_:Safiyya_Letchaw foaf:name "Safiyya Letchaw"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article19> dc:creator _:Safiyya_Letchaw.
<http://localhost/publications/articles/Journal1/1943/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article20> swrc:pages "169"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article20> dc:title "dipped kilogram timbrel"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article20> foaf:homepage "http://www.votarists.tld/timbrel/presell.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Tashiya_Marrable rdf:type foaf:Person.
_:Tashiya_Marrable foaf:name "Tashiya Marrable"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article20> dc:creator _:Tashiya_Marrable.
_:Ieshige_Kosinski rdf:type foaf:Person.
_:Ieshige_Kosinski foaf:name "Ieshige Kosinski"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article20> dc:creator _:Ieshige_Kosinski.
<http://localhost/publications/articles/Journal1/1943/Article21> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article21> rdfs:seeAlso "http://www.kilogram.tld/presell/woodcraft.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article21> swrc:pages "98"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article21> dc:title "timbrel woodcraft reupholstered"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article21> foaf:homepage "http://www.presell.tld/reupholstered/xerosis.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article21> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Fame_Clarey rdf:type foaf:Person.
_:Fame_Clarey foaf:name "Fame Clarey"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article21> dc:creator _:Fame_Clarey.
_:Timun_Silverstein rdf:type foaf:Person.
_:Timun_Silverstein foaf:name "Timun Silverstein"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article21> dc:creator _:Timun_Silverstein.
<http://localhost/publications/articles/Journal1/1943/Article22> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article22> swrc:pages "63"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article22> dc:title "woodcraft xerosis steamers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article22> foaf:homepage "http://www.reupholstered.tld/steamers/neurological.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article22> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Toku_Synowiec rdf:type foaf:Person.
_:Toku_Synowiec foaf:name "Toku Synowiec"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article22> dc:creator _:Toku_Synowiec.
_:Oka_Prock rdf:type foaf:Person.
_:Oka_Prock foaf:name "Oka Prock"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article22> dc:creator _:Oka_Prock.
<http://localhost/publications/articles/Journal1/1943/Article23> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article23> swrc:pages "3"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article23> dc:title "xerosis neurological warranter"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article23> foaf:homepage "http://www.steamers.tld/warranter/flashings.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article23> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Igone_Rader rdf:type foaf:Person.
_:Igone_Rader foaf:name "Igone Rader"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article23> dc:creator _:Igone_Rader.
_:Ernestine_Barkan rdf:type foaf:Person.
_:Ernestine_Barkan foaf:name "Ernestine Barkan"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article23> dc:creator _:Ernestine_Barkan.
<http://localhost/publications/articles/Journal1/1943/Article24> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article24> rdfs:seeAlso "http://www.neurological.tld/flashings/oops.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article24> swrc:pages "188"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article24> dc:title "warranter oops detonations"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article24> foaf:homepage "http://www.flashings.tld/detonations/chippering.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article24> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Dmitreeva_Ellsbury rdf:type foaf:Person.
_:Dmitreeva_Ellsbury foaf:name "Dmitreeva Ellsbury"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article24> dc:creator _:Dmitreeva_Ellsbury.
_:Gorshedna_Marone rdf:type foaf:Person.
_:Gorshedna_Marone foaf:name "Gorshedna Marone"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article24> dc:creator _:Gorshedna_Marone.
<http://localhost/publications/articles/Journal1/1943/Article25> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article25> rdfs:seeAlso "http://www.oops.tld/chippering/photospherically.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article25> swrc:pages "105"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article25> dc:title "detonations photospherically pouchiest"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article25> foaf:homepage "http://www.chippering.tld/pouchiest/canvasses.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article25> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Sander_Garriss rdf:type foaf:Person.
_:Sander_Garriss foaf:name "Sander Garriss"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article25> dc:creator _:Sander_Garriss.
<http://localhost/publications/articles/Journal1/1943/Article26> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article26> swrc:pages "132"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article26> dc:title "photospherically canvasses pyorrheas"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article26> foaf:homepage "http://www.pouchiest.tld/pyorrheas/cartons.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article26> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Loreliese_Aspri rdf:type foaf:Person.
_:Loreliese_Aspri foaf:name "Loreliese Aspri"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article26> dc:creator _:Loreliese_Aspri.
<http://localhost/publications/articles/Journal1/1943/Article27> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article27> rdfs:seeAlso "http://www.canvasses.tld/cartons/acquirable.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article27> swrc:pages "99"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article27> dc:title "pyorrheas acquirable refocus"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article27> foaf:homepage "http://www.cartons.tld/refocus/vividness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article27> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Taaliba_Debrita rdf:type foaf:Person.
_:Taaliba_Debrita foaf:name "Taaliba Debrita"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article27> dc:creator _:Taaliba_Debrita.
<http://localhost/publications/articles/Journal1/1943/Article28> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article28> rdfs:seeAlso "http://www.acquirable.tld/vividness/administrated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article28> swrc:pages "92"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article28> dc:title "refocus administrated remedying"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article28> foaf:homepage "http://www.vividness.tld/remedying/prophetically.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article28> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Jelawat_Balletta rdf:type foaf:Person.
_:Jelawat_Balletta foaf:name "Jelawat Balletta"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article28> dc:creator _:Jelawat_Balletta.
<http://localhost/publications/articles/Journal1/1943/Article29> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1943/Article29> rdfs:seeAlso "http://www.administrated.tld/prophetically/allayed.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article29> swrc:pages "167"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1943/Article29> dc:title "remedying allayed zinged"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article29> foaf:homepage "http://www.prophetically.tld/zinged/fridge.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article29> swrc:journal <http://localhost/publications/journals/Journal1/1943>.
_:Jaen_Kerechanko rdf:type foaf:Person.
_:Jaen_Kerechanko foaf:name "Jaen Kerechanko"^^xsd:string.
<http://localhost/publications/articles/Journal1/1943/Article29> dc:creator _:Jaen_Kerechanko.
<http://localhost/publications/journals/Journal1/1943> swrc:editor _:Elan_Malloch.
_:Elan_Malloch rdf:type foaf:Person.
_:Elan_Malloch foaf:name "Elan Malloch"^^xsd:string.
<http://localhost/publications/journals/Journal1/1943> swrc:editor _:Kuemon_Coatie.
_:Kuemon_Coatie rdf:type foaf:Person.
_:Kuemon_Coatie foaf:name "Kuemon Coatie"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> rdf:type bench:Incollection.
<http://localhost/publications/incolls/1943/Incollection1> bench:booktitle "allayed fridge stained"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> rdfs:seeAlso "http://www.zinged.tld/stained/unintentional.html"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> swrc:pages "114"^^xsd:integer.
<http://localhost/publications/incolls/1943/Incollection1> dc:title "fridge unintentional antiquarians"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> foaf:homepage "http://www.stained.tld/antiquarians/dilutes.html"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> dcterms:issued "1943"^^xsd:integer.
_:Ofelia_Golde rdf:type foaf:Person.
_:Ofelia_Golde foaf:name "Ofelia Golde"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> dc:creator _:Ofelia_Golde.
_:Maureo_Benedict rdf:type foaf:Person.
_:Maureo_Benedict foaf:name "Maureo Benedict"^^xsd:string.
<http://localhost/publications/incolls/1943/Incollection1> dc:creator _:Maureo_Benedict.
<http://localhost/publications/journals/Journal1/1944> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1944> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1944> dc:title "Journal 1 (1944)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1944> swrc:volume "5"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1944> dcterms:issued "1944"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article1> swrc:pages "118"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article1> dc:title "antiquarians quantitatively shovels"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article1> foaf:homepage "http://www.dilutes.tld/shovels/vitric.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article1> dc:creator _:Jelawat_Balletta.
<http://localhost/publications/articles/Journal1/1944/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article2> rdfs:seeAlso "http://www.quantitatively.tld/vitric/mendelism.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article2> swrc:pages "156"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article2> dc:title "shovels mendelism kookiest"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article2> foaf:homepage "http://www.vitric.tld/kookiest/leavening.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article2> dc:creator _:Jaen_Kerechanko.
<http://localhost/publications/articles/Journal1/1944/Article2> dc:creator _:Ofelia_Golde.
<http://localhost/publications/articles/Journal1/1944/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article3> rdfs:seeAlso "http://www.mendelism.tld/leavening/embrocation.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article3> swrc:pages "127"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article3> dc:title "kookiest embrocation casteless"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article3> foaf:homepage "http://www.leavening.tld/casteless/uroliths.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article3> dc:creator _:Maureo_Benedict.
<http://localhost/publications/articles/Journal1/1944/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article4> rdfs:seeAlso "http://www.embrocation.tld/uroliths/sashes.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article4> swrc:pages "69"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article4> dc:title "casteless sashes marrieds"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article4> foaf:homepage "http://www.uroliths.tld/marrieds/fungic.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article4> dc:creator _:Tashiya_Marrable.
<http://localhost/publications/articles/Journal1/1944/Article4> dc:creator _:Ieshige_Kosinski.
<http://localhost/publications/articles/Journal1/1944/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article5> swrc:pages "112"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article5> dc:title "sashes fungic gasogenes"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article5> foaf:homepage "http://www.marrieds.tld/gasogenes/obnoxiously.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article5> dc:creator _:Fame_Clarey.
<http://localhost/publications/articles/Journal1/1944/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article6> rdfs:seeAlso "http://www.fungic.tld/obnoxiously/dismounting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article6> swrc:note "microspace fixup scurf snowballed practicably inflamed salesclerk forehoof clonked mistreat"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article6> swrc:pages "12"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article6> dc:title "gasogenes dismounting endorser"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article6> foaf:homepage "http://www.obnoxiously.tld/endorser/libations.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article6> dc:creator _:Timun_Silverstein.
<http://localhost/publications/articles/Journal1/1944/Article6> dc:creator _:Toku_Synowiec.
<http://localhost/publications/articles/Journal1/1944/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article7> swrc:pages "142"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article7> dc:title "dismounting libations harrower"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article7> foaf:homepage "http://www.endorser.tld/harrower/claymores.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article7> dc:creator _:Oka_Prock.
<http://localhost/publications/articles/Journal1/1944/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article8> rdfs:seeAlso "http://www.libations.tld/claymores/shiftlessly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article8> swrc:pages "87"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article8> dc:title "harrower shiftlessly feedstuffs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article8> foaf:homepage "http://www.claymores.tld/feedstuffs/lyricizing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
<http://localhost/publications/articles/Journal1/1944/Article8> dc:creator _:Igone_Rader.
<http://localhost/publications/articles/Journal1/1944/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article9> rdfs:seeAlso "http://www.shiftlessly.tld/lyricizing/hierarchs.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article9> swrc:pages "105"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article9> dc:title "feedstuffs hierarchs composedly"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article9> foaf:homepage "http://www.lyricizing.tld/composedly/taunting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Fedorav_Solich rdf:type foaf:Person.
_:Fedorav_Solich foaf:name "Fedorav Solich"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article9> dc:creator _:Fedorav_Solich.
<http://localhost/publications/articles/Journal1/1944/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article10> rdfs:seeAlso "http://www.hierarchs.tld/taunting/dragged.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article10> swrc:pages "149"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article10> dc:title "composedly dragged lobsters"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article10> foaf:homepage "http://www.taunting.tld/lobsters/careering.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Lene_Vosquez rdf:type foaf:Person.
_:Lene_Vosquez foaf:name "Lene Vosquez"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article10> dc:creator _:Lene_Vosquez.
_:Olzhbeta_Hasenberg rdf:type foaf:Person.
_:Olzhbeta_Hasenberg foaf:name "Olzhbeta Hasenberg"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article10> dc:creator _:Olzhbeta_Hasenberg.
<http://localhost/publications/articles/Journal1/1944/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1944/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article11> rdfs:seeAlso "http://www.dragged.tld/careering/triplets.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article11> swrc:pages "167"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article11> dc:title "lobsters triplets hepatics"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article11> foaf:homepage "http://www.careering.tld/hepatics/colonies.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Erminia_Damrell rdf:type foaf:Person.
_:Erminia_Damrell foaf:name "Erminia Damrell"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article11> dc:creator _:Erminia_Damrell.
<http://localhost/publications/articles/Journal1/1944/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article12> rdfs:seeAlso "http://www.triplets.tld/colonies/defalcate.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article12> swrc:pages "85"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article12> dc:title "hepatics defalcate transplantations"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article12> foaf:homepage "http://www.colonies.tld/transplantations/forfends.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Bibiane_Eddens rdf:type foaf:Person.
_:Bibiane_Eddens foaf:name "Bibiane Eddens"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article12> dc:creator _:Bibiane_Eddens.
_:Letizia_Madaras rdf:type foaf:Person.
_:Letizia_Madaras foaf:name "Letizia Madaras"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article12> dc:creator _:Letizia_Madaras.
<http://localhost/publications/articles/Journal1/1944/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article13> bench:cdrom "http://www.defalcate.tld/forfends/voucherable.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article13> swrc:pages "186"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article13> dc:title "transplantations voucherable intercepting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article13> foaf:homepage "http://www.forfends.tld/intercepting/jeered.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Tarran_Pointer rdf:type foaf:Person.
_:Tarran_Pointer foaf:name "Tarran Pointer"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article13> dc:creator _:Tarran_Pointer.
<http://localhost/publications/articles/Journal1/1944/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article14> rdfs:seeAlso "http://www.voucherable.tld/jeered/immunopathology.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article14> swrc:pages "16"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article14> dc:title "intercepting immunopathology addends"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article14> foaf:homepage "http://www.jeered.tld/addends/surveiled.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Faatin_Bonn rdf:type foaf:Person.
_:Faatin_Bonn foaf:name "Faatin Bonn"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article14> dc:creator _:Faatin_Bonn.
_:Angela_Hager rdf:type foaf:Person.
_:Angela_Hager foaf:name "Angela Hager"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article14> dc:creator _:Angela_Hager.
<http://localhost/publications/articles/Journal1/1944/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article15> swrc:pages "2"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article15> dc:title "immunopathology surveiled wagers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article15> foaf:homepage "http://www.addends.tld/wagers/joysticks.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Lecia_Baumeister rdf:type foaf:Person.
_:Lecia_Baumeister foaf:name "Lecia Baumeister"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article15> dc:creator _:Lecia_Baumeister.
<http://localhost/publications/articles/Journal1/1944/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article16> rdfs:seeAlso "http://www.surveiled.tld/joysticks/nonliving.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article16> swrc:pages "98"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article16> dc:title "wagers nonliving agric"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article16> foaf:homepage "http://www.joysticks.tld/agric/proliferating.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Hilary_Braddy rdf:type foaf:Person.
_:Hilary_Braddy foaf:name "Hilary Braddy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article16> dc:creator _:Hilary_Braddy.
<http://localhost/publications/articles/Journal1/1944/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article17> swrc:pages "112"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article17> dc:title "nonliving proliferating disintegrator"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article17> foaf:homepage "http://www.agric.tld/disintegrator/oblongish.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Riddhi_Colesar rdf:type foaf:Person.
_:Riddhi_Colesar foaf:name "Riddhi Colesar"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article17> dc:creator _:Riddhi_Colesar.
<http://localhost/publications/articles/Journal1/1944/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article18> swrc:note "administerings nonsuccess opticians lushes foremost dishtowels croutons dozers cootie undergoes nympholeptic fogless"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article18> swrc:pages "169"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article18> dc:title "proliferating oblongish leapfrogged"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article18> foaf:homepage "http://www.disintegrator.tld/leapfrogged/overabundant.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Loke_Tuton rdf:type foaf:Person.
_:Loke_Tuton foaf:name "Loke Tuton"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article18> dc:creator _:Loke_Tuton.
_:Clivia_Kuriger rdf:type foaf:Person.
_:Clivia_Kuriger foaf:name "Clivia Kuriger"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article18> dc:creator _:Clivia_Kuriger.
<http://localhost/publications/articles/Journal1/1944/Article19> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article19> swrc:pages "74"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article19> dc:title "oblongish overabundant legworks"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article19> foaf:homepage "http://www.leapfrogged.tld/legworks/easeful.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article19> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Waatiq_Perico rdf:type foaf:Person.
_:Waatiq_Perico foaf:name "Waatiq Perico"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article19> dc:creator _:Waatiq_Perico.
<http://localhost/publications/articles/Journal1/1944/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article20> rdfs:seeAlso "http://www.overabundant.tld/easeful/cognize.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article20> swrc:pages "52"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article20> dc:title "legworks cognize hoatzin"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article20> foaf:homepage "http://www.easeful.tld/hoatzin/toiled.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Makhna_Stabile rdf:type foaf:Person.
_:Makhna_Stabile foaf:name "Makhna Stabile"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article20> dc:creator _:Makhna_Stabile.
_:Caddock_Stagowski rdf:type foaf:Person.
_:Caddock_Stagowski foaf:name "Caddock Stagowski"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article20> dc:creator _:Caddock_Stagowski.
<http://localhost/publications/articles/Journal1/1944/Article21> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article21> rdfs:seeAlso "http://www.cognize.tld/toiled/nonspecialized.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article21> swrc:pages "30"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article21> dc:title "hoatzin nonspecialized vrouw"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article21> foaf:homepage "http://www.toiled.tld/vrouw/squads.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article21> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Notburg_Towber rdf:type foaf:Person.
_:Notburg_Towber foaf:name "Notburg Towber"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article21> dc:creator _:Notburg_Towber.
<http://localhost/publications/articles/Journal1/1944/Article22> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article22> rdfs:seeAlso "http://www.nonspecialized.tld/squads/tantalums.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article22> swrc:pages "156"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article22> dc:title "vrouw tantalums overweight"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article22> foaf:homepage "http://www.squads.tld/overweight/readmits.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article22> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Kellie_Frenner rdf:type foaf:Person.
_:Kellie_Frenner foaf:name "Kellie Frenner"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article22> dc:creator _:Kellie_Frenner.
_:Doppo_Kieser rdf:type foaf:Person.
_:Doppo_Kieser foaf:name "Doppo Kieser"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article22> dc:creator _:Doppo_Kieser.
<http://localhost/publications/articles/Journal1/1944/Article23> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article23> swrc:pages "105"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article23> dc:title "tantalums readmits loopholing"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article23> foaf:homepage "http://www.overweight.tld/loopholing/tattles.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article23> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Lexi_Faulk rdf:type foaf:Person.
_:Lexi_Faulk foaf:name "Lexi Faulk"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article23> dc:creator _:Lexi_Faulk.
<http://localhost/publications/articles/Journal1/1944/Article24> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article24> rdfs:seeAlso "http://www.readmits.tld/tattles/irradiates.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article24> swrc:pages "103"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article24> dc:title "loopholing irradiates befriends"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article24> foaf:homepage "http://www.tattles.tld/befriends/insinuators.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article24> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Anbessa_Gulde rdf:type foaf:Person.
_:Anbessa_Gulde foaf:name "Anbessa Gulde"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article24> dc:creator _:Anbessa_Gulde.
<http://localhost/publications/articles/Journal1/1944/Article25> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article25> rdfs:seeAlso "http://www.irradiates.tld/insinuators/restorers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article25> swrc:pages "169"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article25> dc:title "befriends restorers rebroadcasting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article25> foaf:homepage "http://www.insinuators.tld/rebroadcasting/grousing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article25> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Kaspar_Reierson rdf:type foaf:Person.
_:Kaspar_Reierson foaf:name "Kaspar Reierson"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article25> dc:creator _:Kaspar_Reierson.
<http://localhost/publications/articles/Journal1/1944/Article26> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article26> rdfs:seeAlso "http://www.restorers.tld/grousing/overdrinking.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article26> swrc:pages "187"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article26> dc:title "rebroadcasting overdrinking frow"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article26> foaf:homepage "http://www.grousing.tld/frow/demarcators.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article26> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Taliyah_Jafari rdf:type foaf:Person.
_:Taliyah_Jafari foaf:name "Taliyah Jafari"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article26> dc:creator _:Taliyah_Jafari.
_:Juri_Guzik rdf:type foaf:Person.
_:Juri_Guzik foaf:name "Juri Guzik"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article26> dc:creator _:Juri_Guzik.
<http://localhost/publications/articles/Journal1/1944/Article27> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article27> rdfs:seeAlso "http://www.overdrinking.tld/demarcators/tasselling.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article27> swrc:note "spiffiest reinformed synfuel swiftest baronages warping fraternize despondency insurrectionaries backspin hoisting bourgeoned"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article27> swrc:pages "27"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article27> dc:title "frow tasselling crocked"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article27> foaf:homepage "http://www.demarcators.tld/crocked/wharfinger.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article27> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Salaah_Elio rdf:type foaf:Person.
_:Salaah_Elio foaf:name "Salaah Elio"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article27> dc:creator _:Salaah_Elio.
<http://localhost/publications/articles/Journal1/1944/Article28> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article28> rdfs:seeAlso "http://www.tasselling.tld/wharfinger/reconverting.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article28> swrc:pages "5"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article28> dc:title "crocked reconverting washboards"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article28> foaf:homepage "http://www.wharfinger.tld/washboards/overdrank.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article28> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Aandranee_Sakamaki rdf:type foaf:Person.
_:Aandranee_Sakamaki foaf:name "Aandranee Sakamaki"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article28> dc:creator _:Aandranee_Sakamaki.
<http://localhost/publications/articles/Journal1/1944/Article29> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article29> swrc:pages "163"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article29> dc:title "reconverting overdrank recalculations"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article29> foaf:homepage "http://www.washboards.tld/recalculations/dumps.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article29> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Agpios_Bia rdf:type foaf:Person.
_:Agpios_Bia foaf:name "Agpios Bia"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article29> dc:creator _:Agpios_Bia.
<http://localhost/publications/articles/Journal1/1944/Article30> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article30> swrc:pages "76"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article30> dc:title "overdrank dumps carousels"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article30> foaf:homepage "http://www.recalculations.tld/carousels/acidly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article30> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Atsumori_Bloyer rdf:type foaf:Person.
_:Atsumori_Bloyer foaf:name "Atsumori Bloyer"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article30> dc:creator _:Atsumori_Bloyer.
_:Coch_Foulger rdf:type foaf:Person.
_:Coch_Foulger foaf:name "Coch Foulger"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article30> dc:creator _:Coch_Foulger.
<http://localhost/publications/articles/Journal1/1944/Article31> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article31> dc:title "dumps acidly deponent"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article31> foaf:homepage "http://www.carousels.tld/deponent/venges.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article31> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Elif_Gameros rdf:type foaf:Person.
_:Elif_Gameros foaf:name "Elif Gameros"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article31> dc:creator _:Elif_Gameros.
<http://localhost/publications/articles/Journal1/1944/Article32> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1944/Article32> rdfs:seeAlso "http://www.acidly.tld/venges/shivas.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article32> swrc:pages "86"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1944/Article32> dc:title "deponent shivas northers"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article32> foaf:homepage "http://www.venges.tld/northers/mutualist.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article32> swrc:journal <http://localhost/publications/journals/Journal1/1944>.
_:Breana_Scheffler rdf:type foaf:Person.
_:Breana_Scheffler foaf:name "Breana Scheffler"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article32> dc:creator _:Breana_Scheffler.
_:Jenna_Ovit rdf:type foaf:Person.
_:Jenna_Ovit foaf:name "Jenna Ovit"^^xsd:string.
<http://localhost/publications/articles/Journal1/1944/Article32> dc:creator _:Jenna_Ovit.
<http://localhost/publications/incolls/1944/Incollection1> rdf:type bench:Incollection.
<http://localhost/publications/incolls/1944/Incollection1> bench:booktitle "shivas mutualist harebrained"^^xsd:string.
<http://localhost/publications/incolls/1944/Incollection1> swrc:pages "65"^^xsd:integer.
<http://localhost/publications/incolls/1944/Incollection1> dc:title "northers harebrained earthworms"^^xsd:string.
<http://localhost/publications/incolls/1944/Incollection1> foaf:homepage "http://www.mutualist.tld/earthworms/lunk.html"^^xsd:string.
<http://localhost/publications/incolls/1944/Incollection1> dcterms:issued "1944"^^xsd:integer.
_:Casswallawn_Scheiblich rdf:type foaf:Person.
_:Casswallawn_Scheiblich foaf:name "Casswallawn Scheiblich"^^xsd:string.
<http://localhost/publications/incolls/1944/Incollection1> dc:creator _:Casswallawn_Scheiblich.
<http://localhost/publications/journals/Journal1/1945> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1945> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1945> dc:title "Journal 1 (1945)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1945> swrc:volume "6"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1945> dcterms:issued "1945"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article1> rdfs:seeAlso "http://www.earthworms.tld/forefended/overtaking.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article1> swrc:pages "76"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article1> dc:title "lunk overtaking sourdoughs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article1> foaf:homepage "http://www.forefended.tld/sourdoughs/traditionless.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article1> dc:creator _:Aandranee_Sakamaki.
<http://localhost/publications/articles/Journal1/1945/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article2> swrc:pages "89"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article2> dc:title "overtaking traditionless spoliator"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article2> foaf:homepage "http://www.sourdoughs.tld/spoliator/earthlier.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article2> dc:creator _:Atsumori_Bloyer.
<http://localhost/publications/articles/Journal1/1945/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article3> rdfs:seeAlso "http://www.traditionless.tld/earthlier/stenographers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article3> dc:title "spoliator stenographers reallocating"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article3> foaf:homepage "http://www.earthlier.tld/reallocating/aslope.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article3> dc:creator _:Elif_Gameros.
<http://localhost/publications/articles/Journal1/1945/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article4> rdfs:seeAlso "http://www.stenographers.tld/aslope/seawaters.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article4> swrc:pages "120"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article4> dc:title "reallocating seawaters ruminative"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article4> foaf:homepage "http://www.aslope.tld/ruminative/patronly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article4> dc:creator _:Jenna_Ovit.
<http://localhost/publications/articles/Journal1/1945/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article5> rdfs:seeAlso "http://www.seawaters.tld/patronly/hydrozoon.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article5> swrc:pages "68"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article5> dc:title "ruminative hydrozoon webbier"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article5> foaf:homepage "http://www.patronly.tld/webbier/foxiness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article5> dc:creator _:Makhna_Stabile.
<http://localhost/publications/articles/Journal1/1945/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article6> rdfs:seeAlso "http://www.hydrozoon.tld/foxiness/toddy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article6> swrc:pages "147"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article6> dc:title "webbier toddy playlets"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article6> foaf:homepage "http://www.foxiness.tld/playlets/mouthiest.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article6> dc:creator _:Notburg_Towber.
<http://localhost/publications/articles/Journal1/1945/Article6> dc:creator _:Doppo_Kieser.
<http://localhost/publications/articles/Journal1/1945/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article7> swrc:pages "155"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article7> dc:title "toddy mouthiest delegati"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article7> foaf:homepage "http://www.playlets.tld/delegati/renege.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article7> dc:creator _:Anbessa_Gulde.
<http://localhost/publications/articles/Journal1/1945/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article8> swrc:pages "28"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article8> dc:title "mouthiest renege briefless"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article8> foaf:homepage "http://www.delegati.tld/briefless/regularities.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article8> dc:creator _:Taliyah_Jafari.
<http://localhost/publications/articles/Journal1/1945/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article9> swrc:pages "76"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article9> dc:title "renege regularities planarity"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article9> foaf:homepage "http://www.briefless.tld/planarity/stubborner.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article9> dc:creator _:Salaah_Elio.
<http://localhost/publications/articles/Journal1/1945/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article10> swrc:pages "111"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article10> dc:title "regularities stubborner waterbeds"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article10> foaf:homepage "http://www.planarity.tld/waterbeds/disinclines.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article10> dc:creator _:Agpios_Bia.
<http://localhost/publications/articles/Journal1/1945/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1945/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article11> rdfs:seeAlso "http://www.stubborner.tld/disinclines/antonyms.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article11> swrc:pages "131"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article11> dc:title "waterbeds antonyms anesthetize"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article11> foaf:homepage "http://www.disinclines.tld/anesthetize/chanticleer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
<http://localhost/publications/articles/Journal1/1945/Article11> dc:creator _:Coch_Foulger.
<http://localhost/publications/articles/Journal1/1945/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article12> rdfs:seeAlso "http://www.antonyms.tld/chanticleer/administrants.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article12> swrc:pages "30"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article12> dc:title "anesthetize administrants preengaging"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article12> foaf:homepage "http://www.chanticleer.tld/preengaging/unitarians.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Erechtheus_Muschick rdf:type foaf:Person.
_:Erechtheus_Muschick foaf:name "Erechtheus Muschick"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article12> dc:creator _:Erechtheus_Muschick.
<http://localhost/publications/articles/Journal1/1945/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article13> swrc:pages "154"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article13> dc:title "administrants unitarians reevaluate"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article13> foaf:homepage "http://www.preengaging.tld/reevaluate/rekeys.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Gustel_Pitek rdf:type foaf:Person.
_:Gustel_Pitek foaf:name "Gustel Pitek"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article13> dc:creator _:Gustel_Pitek.
<http://localhost/publications/articles/Journal1/1945/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article14> rdfs:seeAlso "http://www.unitarians.tld/rekeys/ochroid.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article14> swrc:pages "37"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article14> dc:title "reevaluate ochroid climatotherapy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article14> foaf:homepage "http://www.rekeys.tld/climatotherapy/crocks.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Angel_Delcarmen rdf:type foaf:Person.
_:Angel_Delcarmen foaf:name "Angel Delcarmen"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article14> dc:creator _:Angel_Delcarmen.
<http://localhost/publications/articles/Journal1/1945/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article15> rdfs:seeAlso "http://www.ochroid.tld/crocks/carpetbag.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article15> swrc:pages "125"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article15> dc:title "climatotherapy carpetbag peonism"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article15> foaf:homepage "http://www.crocks.tld/peonism/metropolitanize.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Cathy_Phebus rdf:type foaf:Person.
_:Cathy_Phebus foaf:name "Cathy Phebus"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article15> dc:creator _:Cathy_Phebus.
<http://localhost/publications/articles/Journal1/1945/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article16> dc:title "carpetbag metropolitanize twanged"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article16> foaf:homepage "http://www.peonism.tld/twanged/pedros.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Joey_Yarboro rdf:type foaf:Person.
_:Joey_Yarboro foaf:name "Joey Yarboro"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article16> dc:creator _:Joey_Yarboro.
_:Arcadia_Granade rdf:type foaf:Person.
_:Arcadia_Granade foaf:name "Arcadia Granade"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article16> dc:creator _:Arcadia_Granade.
<http://localhost/publications/articles/Journal1/1945/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article17> dc:title "metropolitanize pedros nonforfeitable"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article17> foaf:homepage "http://www.twanged.tld/nonforfeitable/dissociative.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Miles_Manero rdf:type foaf:Person.
_:Miles_Manero foaf:name "Miles Manero"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article17> dc:creator _:Miles_Manero.
<http://localhost/publications/articles/Journal1/1945/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article18> rdfs:seeAlso "http://www.pedros.tld/dissociative/apostacy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article18> dc:title "nonforfeitable apostacy malting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article18> foaf:homepage "http://www.dissociative.tld/malting/footgear.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Chasidy_Hoop rdf:type foaf:Person.
_:Chasidy_Hoop foaf:name "Chasidy Hoop"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article18> dc:creator _:Chasidy_Hoop.
<http://localhost/publications/articles/Journal1/1945/Article19> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article19> swrc:pages "58"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article19> dc:title "apostacy footgear abominators"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article19> foaf:homepage "http://www.malting.tld/abominators/trilobate.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article19> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Emiko_Root rdf:type foaf:Person.
_:Emiko_Root foaf:name "Emiko Root"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article19> dc:creator _:Emiko_Root.
<http://localhost/publications/articles/Journal1/1945/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article20> swrc:pages "42"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article20> dc:title "footgear trilobate jigsawed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article20> foaf:homepage "http://www.abominators.tld/jigsawed/kickstands.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Bia_Klemme rdf:type foaf:Person.
_:Bia_Klemme foaf:name "Bia Klemme"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article20> dc:creator _:Bia_Klemme.
<http://localhost/publications/articles/Journal1/1945/Article21> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article21> swrc:pages "134"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article21> dc:title "trilobate kickstands prated"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article21> foaf:homepage "http://www.jigsawed.tld/prated/songstresses.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article21> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Lilja_Siwiec rdf:type foaf:Person.
_:Lilja_Siwiec foaf:name "Lilja Siwiec"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article21> dc:creator _:Lilja_Siwiec.
_:Demont_Escalet rdf:type foaf:Person.
_:Demont_Escalet foaf:name "Demont Escalet"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article21> dc:creator _:Demont_Escalet.
<http://localhost/publications/articles/Journal1/1945/Article22> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article22> rdfs:seeAlso "http://www.kickstands.tld/songstresses/incorporeal.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article22> swrc:pages "186"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article22> dc:title "prated incorporeal piazadora"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article22> foaf:homepage "http://www.songstresses.tld/piazadora/hearings.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article22> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Dewi_Rappleyea rdf:type foaf:Person.
_:Dewi_Rappleyea foaf:name "Dewi Rappleyea"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article22> dc:creator _:Dewi_Rappleyea.
_:Inejiro_Javens rdf:type foaf:Person.
_:Inejiro_Javens foaf:name "Inejiro Javens"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article22> dc:creator _:Inejiro_Javens.
<http://localhost/publications/articles/Journal1/1945/Article23> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article23> rdfs:seeAlso "http://www.incorporeal.tld/hearings/legation.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article23> swrc:pages "15"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article23> dc:title "piazadora legation subendorsed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article23> foaf:homepage "http://www.hearings.tld/subendorsed/hippocampus.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article23> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Egor_Braue rdf:type foaf:Person.
_:Egor_Braue foaf:name "Egor Braue"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article23> dc:creator _:Egor_Braue.
<http://localhost/publications/articles/Journal1/1945/Article24> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article24> rdfs:seeAlso "http://www.legation.tld/hippocampus/miscalculates.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article24> swrc:pages "163"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article24> dc:title "subendorsed miscalculates whetters"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article24> foaf:homepage "http://www.hippocampus.tld/whetters/leviathans.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article24> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Shaakira_Ricklefs rdf:type foaf:Person.
_:Shaakira_Ricklefs foaf:name "Shaakira Ricklefs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article24> dc:creator _:Shaakira_Ricklefs.
<http://localhost/publications/articles/Journal1/1945/Article25> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article25> rdfs:seeAlso "http://www.miscalculates.tld/leviathans/misadvised.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article25> swrc:pages "44"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article25> dc:title "whetters misadvised tiltyard"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article25> foaf:homepage "http://www.leviathans.tld/tiltyard/numberable.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article25> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Emina_Yeeloy rdf:type foaf:Person.
_:Emina_Yeeloy foaf:name "Emina Yeeloy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article25> dc:creator _:Emina_Yeeloy.
<http://localhost/publications/articles/Journal1/1945/Article26> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article26> rdfs:seeAlso "http://www.misadvised.tld/numberable/yawing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article26> swrc:pages "68"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article26> dc:title "tiltyard yawing prosecutrices"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article26> foaf:homepage "http://www.numberable.tld/prosecutrices/pegboxes.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article26> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Sebastiano_Lockyer rdf:type foaf:Person.
_:Sebastiano_Lockyer foaf:name "Sebastiano Lockyer"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article26> dc:creator _:Sebastiano_Lockyer.
_:Jace_Ruotolo rdf:type foaf:Person.
_:Jace_Ruotolo foaf:name "Jace Ruotolo"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article26> dc:creator _:Jace_Ruotolo.
<http://localhost/publications/articles/Journal1/1945/Article27> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article27> rdfs:seeAlso "http://www.yawing.tld/pegboxes/feeblish.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article27> swrc:pages "163"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article27> dc:title "prosecutrices feeblish extenuation"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article27> foaf:homepage "http://www.pegboxes.tld/extenuation/stranders.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article27> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Gulielma_Arce rdf:type foaf:Person.
_:Gulielma_Arce foaf:name "Gulielma Arce"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article27> dc:creator _:Gulielma_Arce.
<http://localhost/publications/articles/Journal1/1945/Article28> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article28> rdfs:seeAlso "http://www.feeblish.tld/stranders/abbesses.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article28> swrc:pages "99"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article28> dc:title "extenuation abbesses strongboxes"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article28> foaf:homepage "http://www.stranders.tld/strongboxes/chromas.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article28> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Claudios_Lemmert rdf:type foaf:Person.
_:Claudios_Lemmert foaf:name "Claudios Lemmert"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article28> dc:creator _:Claudios_Lemmert.
<http://localhost/publications/articles/Journal1/1945/Article29> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article29> rdfs:seeAlso "http://www.abbesses.tld/chromas/oats.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article29> swrc:pages "182"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article29> dc:title "strongboxes oats pulling"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article29> foaf:homepage "http://www.chromas.tld/pulling/leatheriness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article29> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Alona_Lucario rdf:type foaf:Person.
_:Alona_Lucario foaf:name "Alona Lucario"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article29> dc:creator _:Alona_Lucario.
_:Charlette_Negron rdf:type foaf:Person.
_:Charlette_Negron foaf:name "Charlette Negron"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article29> dc:creator _:Charlette_Negron.
<http://localhost/publications/articles/Journal1/1945/Article30> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article30> swrc:pages "178"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article30> dc:title "oats leatheriness witchy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article30> foaf:homepage "http://www.pulling.tld/witchy/horologe.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article30> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Masakazu_Lisko rdf:type foaf:Person.
_:Masakazu_Lisko foaf:name "Masakazu Lisko"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article30> dc:creator _:Masakazu_Lisko.
<http://localhost/publications/articles/Journal1/1945/Article31> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article31> rdfs:seeAlso "http://www.leatheriness.tld/horologe/bigamistic.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article31> swrc:pages "199"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article31> dc:title "witchy bigamistic furrows"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article31> foaf:homepage "http://www.horologe.tld/furrows/eloquence.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article31> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Khadija_Lagerquist rdf:type foaf:Person.
_:Khadija_Lagerquist foaf:name "Khadija Lagerquist"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article31> dc:creator _:Khadija_Lagerquist.
<http://localhost/publications/articles/Journal1/1945/Article32> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article32> swrc:pages "139"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article32> dc:title "bigamistic eloquence cobwebbier"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article32> foaf:homepage "http://www.furrows.tld/cobwebbier/divorcing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article32> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Eligius_Vanwechel rdf:type foaf:Person.
_:Eligius_Vanwechel foaf:name "Eligius Vanwechel"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article32> dc:creator _:Eligius_Vanwechel.
<http://localhost/publications/articles/Journal1/1945/Article33> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article33> swrc:pages "152"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article33> dc:title "eloquence divorcing incidentally"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article33> foaf:homepage "http://www.cobwebbier.tld/incidentally/retorts.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article33> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Kazushige_Goeppner rdf:type foaf:Person.
_:Kazushige_Goeppner foaf:name "Kazushige Goeppner"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article33> dc:creator _:Kazushige_Goeppner.
_:Davida_Rho rdf:type foaf:Person.
_:Davida_Rho foaf:name "Davida Rho"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article33> dc:creator _:Davida_Rho.
<http://localhost/publications/articles/Journal1/1945/Article34> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article34> rdfs:seeAlso "http://www.divorcing.tld/retorts/insoles.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article34> swrc:pages "200"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article34> dc:title "incidentally insoles stockman"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article34> foaf:homepage "http://www.retorts.tld/stockman/queening.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article34> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Madaleno_Bercier rdf:type foaf:Person.
_:Madaleno_Bercier foaf:name "Madaleno Bercier"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article34> dc:creator _:Madaleno_Bercier.
<http://localhost/publications/articles/Journal1/1945/Article35> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article35> swrc:pages "163"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article35> dc:title "insoles queening allergist"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article35> foaf:homepage "http://www.stockman.tld/allergist/doyenne.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article35> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Takehide_Gauna rdf:type foaf:Person.
_:Takehide_Gauna foaf:name "Takehide Gauna"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article35> dc:creator _:Takehide_Gauna.
<http://localhost/publications/articles/Journal1/1945/Article36> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article36> rdfs:seeAlso "http://www.queening.tld/doyenne/placarders.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article36> dc:title "allergist placarders septuagenarians"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article36> foaf:homepage "http://www.doyenne.tld/septuagenarians/safecracker.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article36> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Evamarie_Coraham rdf:type foaf:Person.
_:Evamarie_Coraham foaf:name "Evamarie Coraham"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article36> dc:creator _:Evamarie_Coraham.
<http://localhost/publications/articles/Journal1/1945/Article37> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1945/Article37> rdfs:seeAlso "http://www.placarders.tld/safecracker/cacaos.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article37> swrc:pages "11"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1945/Article37> dc:title "septuagenarians cacaos mignonette"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article37> foaf:homepage "http://www.safecracker.tld/mignonette/tailored.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article37> swrc:journal <http://localhost/publications/journals/Journal1/1945>.
_:Kit_Storrs rdf:type foaf:Person.
_:Kit_Storrs foaf:name "Kit Storrs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1945/Article37> dc:creator _:Kit_Storrs.
<http://localhost/publications/journals/Journal1/1945> swrc:editor _:Tienne_Segraves.
_:Tienne_Segraves rdf:type foaf:Person.
_:Tienne_Segraves foaf:name "Tienne Segraves"^^xsd:string.
<http://localhost/publications/journals/Journal1/1945> swrc:editor _:Sozui_Jalovel.
_:Sozui_Jalovel rdf:type foaf:Person.
_:Sozui_Jalovel foaf:name "Sozui Jalovel"^^xsd:string.
<http://localhost/publications/journals/Journal1/1945> swrc:editor _:Warona_Pelligrino.
_:Warona_Pelligrino rdf:type foaf:Person.
_:Warona_Pelligrino foaf:name "Warona Pelligrino"^^xsd:string.
<http://localhost/publications/journals/Journal1/1945> swrc:editor _:Kantha_Lybert.
_:Kantha_Lybert rdf:type foaf:Person.
_:Kantha_Lybert foaf:name "Kantha Lybert"^^xsd:string.
<http://localhost/publications/incolls/1945/Incollection1> rdf:type bench:Incollection.
<http://localhost/publications/incolls/1945/Incollection1> bench:booktitle "cacaos tailored whews"^^xsd:string.
<http://localhost/publications/incolls/1945/Incollection1> rdfs:seeAlso "http://www.mignonette.tld/whews/beholden.html"^^xsd:string.
<http://localhost/publications/incolls/1945/Incollection1> swrc:pages "143"^^xsd:integer.
<http://localhost/publications/incolls/1945/Incollection1> dc:title "tailored beholden branchless"^^xsd:string.
<http://localhost/publications/incolls/1945/Incollection1> foaf:homepage "http://www.whews.tld/branchless/primitiveness.html"^^xsd:string.
<http://localhost/publications/incolls/1945/Incollection1> dcterms:issued "1945"^^xsd:integer.
_:Radosha_Ferioli rdf:type foaf:Person.
_:Radosha_Ferioli foaf:name "Radosha Ferioli"^^xsd:string.
<http://localhost/publications/incolls/1945/Incollection1> dc:creator _:Radosha_Ferioli.
<http://localhost/publications/journals/Journal1/1946> rdf:type bench:Journal.
<http://localhost/publications/journals/Journal1/1946> swrc:number "1"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1946> dc:title "Journal 1 (1946)"^^xsd:string.
<http://localhost/publications/journals/Journal1/1946> swrc:volume "7"^^xsd:integer.
<http://localhost/publications/journals/Journal1/1946> dcterms:issued "1946"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article1> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article1> swrc:pages "175"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article1> dc:title "branchless crimper tonners"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article1> foaf:homepage "http://www.primitiveness.tld/tonners/unfair.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article1> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article1> dc:creator _:Masakazu_Lisko.
<http://localhost/publications/articles/Journal1/1946/Article1> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article2> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article2> rdfs:seeAlso "http://www.crimper.tld/unfair/southpaws.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article2> swrc:pages "50"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article2> dc:title "tonners southpaws scorify"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article2> foaf:homepage "http://www.unfair.tld/scorify/supportance.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article2> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article2> dc:creator _:Masakazu_Lisko.
<http://localhost/publications/articles/Journal1/1946/Article2> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article3> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article3> rdfs:seeAlso "http://www.southpaws.tld/supportance/jumpiest.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article3> swrc:pages "10"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article3> dc:title "scorify jumpiest whanged"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article3> foaf:homepage "http://www.supportance.tld/whanged/intercollegiate.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article3> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article3> dc:creator _:Eligius_Vanwechel.
<http://localhost/publications/articles/Journal1/1946/Article3> dc:creator _:Davida_Rho.
<http://localhost/publications/articles/Journal1/1946/Article3> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article4> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article4> rdfs:seeAlso "http://www.jumpiest.tld/intercollegiate/iniquitously.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article4> swrc:pages "16"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article4> dc:title "whanged iniquitously lycanthropies"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article4> foaf:homepage "http://www.intercollegiate.tld/lycanthropies/electrophoresed.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article4> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article4> dc:creator _:Takehide_Gauna.
<http://localhost/publications/articles/Journal1/1946/Article4> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article5> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article5> swrc:pages "30"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article5> dc:title "iniquitously electrophoresed dinting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article5> foaf:homepage "http://www.lycanthropies.tld/dinting/rezoning.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article5> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article5> dc:creator _:Kit_Storrs.
<http://localhost/publications/articles/Journal1/1946/Article5> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article6> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article6> rdfs:seeAlso "http://www.electrophoresed.tld/rezoning/pledgee.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article6> swrc:pages "134"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article6> dc:title "dinting pledgee protoactinium"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article6> foaf:homepage "http://www.rezoning.tld/protoactinium/darned.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article6> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article6> dc:creator _:Dewi_Rappleyea.
<http://localhost/publications/articles/Journal1/1946/Article6> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article7> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article7> rdfs:seeAlso "http://www.pledgee.tld/darned/emblements.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article7> swrc:pages "163"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article7> dc:title "protoactinium emblements shrewed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article7> foaf:homepage "http://www.darned.tld/shrewed/alluvials.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article7> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article7> dc:creator _:Egor_Braue.
<http://localhost/publications/articles/Journal1/1946/Article7> dc:creator _:Emina_Yeeloy.
<http://localhost/publications/articles/Journal1/1946/Article7> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article8> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article8> rdfs:seeAlso "http://www.emblements.tld/alluvials/depressional.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article8> dc:title "shrewed depressional airlifts"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article8> foaf:homepage "http://www.alluvials.tld/airlifts/tests.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article8> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article8> dc:creator _:Jace_Ruotolo.
<http://localhost/publications/articles/Journal1/1946/Article8> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article9> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article9> rdfs:seeAlso "http://www.depressional.tld/tests/sliming.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article9> swrc:pages "73"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article9> dc:title "airlifts sliming felicitator"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article9> foaf:homepage "http://www.tests.tld/felicitator/virological.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article9> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article9> dc:creator _:Claudios_Lemmert.
<http://localhost/publications/articles/Journal1/1946/Article9> dc:creator _:Charlette_Negron.
<http://localhost/publications/articles/Journal1/1946/Article9> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article10> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article10> bench:cdrom "http://www.sliming.tld/virological/results.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article10> rdfs:seeAlso "http://www.felicitator.tld/results/contradistinctions.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article10> swrc:pages "39"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article10> dc:title "virological contradistinctions unexciting"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article10> foaf:homepage "http://www.results.tld/unexciting/debateable.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article10> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article10> dc:creator _:Khadija_Lagerquist.
<http://localhost/publications/articles/Journal1/1946/Article10> dc:creator <http://localhost/persons/Paul_Erdoes>.
<http://localhost/publications/articles/Journal1/1946/Article11> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article11> rdfs:seeAlso "http://www.contradistinctions.tld/debateable/tenants.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article11> swrc:pages "77"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article11> dc:title "unexciting tenants earrings"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article11> foaf:homepage "http://www.debateable.tld/earrings/overrigid.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article11> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article11> dc:creator _:Kazushige_Goeppner.
<http://localhost/publications/articles/Journal1/1946/Article12> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article12> swrc:note "tarnishable centralizes nonferrous pathological donut benthos superlatives lustrum subduals directorship classily"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article12> dc:title "tenants overrigid hidebound"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article12> foaf:homepage "http://www.earrings.tld/hidebound/faire.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article12> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
<http://localhost/publications/articles/Journal1/1946/Article12> dc:creator _:Madaleno_Bercier.
<http://localhost/publications/articles/Journal1/1946/Article13> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article13> rdfs:seeAlso "http://www.overrigid.tld/faire/poloist.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article13> swrc:pages "191"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article13> dc:title "hidebound poloist comets"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article13> foaf:homepage "http://www.faire.tld/comets/paraphraser.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article13> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Einian_Frascella rdf:type foaf:Person.
_:Einian_Frascella foaf:name "Einian Frascella"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article13> dc:creator _:Einian_Frascella.
<http://localhost/publications/articles/Journal1/1946/Article14> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article14> dc:title "poloist paraphraser whangs"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article14> foaf:homepage "http://www.comets.tld/whangs/uncovering.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article14> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Kaori_Leasy rdf:type foaf:Person.
_:Kaori_Leasy foaf:name "Kaori Leasy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article14> dc:creator _:Kaori_Leasy.
<http://localhost/publications/articles/Journal1/1946/Article15> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article15> bench:cdrom "http://www.paraphraser.tld/uncovering/infested.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article15> rdfs:seeAlso "http://www.whangs.tld/infested/heaver.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article15> swrc:pages "4"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article15> dc:title "uncovering heaver euphorically"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article15> foaf:homepage "http://www.infested.tld/euphorically/ameliorative.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article15> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Boje_Ostrum rdf:type foaf:Person.
_:Boje_Ostrum foaf:name "Boje Ostrum"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article15> dc:creator _:Boje_Ostrum.
<http://localhost/publications/articles/Journal1/1946/Article16> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article16> swrc:pages "24"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article16> dc:title "heaver ameliorative aglets"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article16> foaf:homepage "http://www.euphorically.tld/aglets/preciosity.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article16> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Cassian_Cozzy rdf:type foaf:Person.
_:Cassian_Cozzy foaf:name "Cassian Cozzy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article16> dc:creator _:Cassian_Cozzy.
<http://localhost/publications/articles/Journal1/1946/Article17> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article17> swrc:pages "164"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article17> dc:title "ameliorative preciosity curring"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article17> foaf:homepage "http://www.aglets.tld/curring/compositely.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article17> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Gratia_Flach rdf:type foaf:Person.
_:Gratia_Flach foaf:name "Gratia Flach"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article17> dc:creator _:Gratia_Flach.
<http://localhost/publications/articles/Journal1/1946/Article18> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article18> rdfs:seeAlso "http://www.preciosity.tld/compositely/antennal.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article18> swrc:pages "119"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article18> dc:title "curring antennal undrinkable"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article18> foaf:homepage "http://www.compositely.tld/undrinkable/charter.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article18> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Wira_Majette rdf:type foaf:Person.
_:Wira_Majette foaf:name "Wira Majette"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article18> dc:creator _:Wira_Majette.
<http://localhost/publications/articles/Journal1/1946/Article19> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article19> swrc:pages "65"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article19> dc:title "antennal charter uncashed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article19> foaf:homepage "http://www.undrinkable.tld/uncashed/huntedly.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article19> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Socorro_Mcsorley rdf:type foaf:Person.
_:Socorro_Mcsorley foaf:name "Socorro Mcsorley"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article19> dc:creator _:Socorro_Mcsorley.
<http://localhost/publications/articles/Journal1/1946/Article20> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article20> swrc:pages "80"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article20> dc:title "charter huntedly czardoms"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article20> foaf:homepage "http://www.uncashed.tld/czardoms/unidentifiable.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article20> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Honami_Docherty rdf:type foaf:Person.
_:Honami_Docherty foaf:name "Honami Docherty"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article20> dc:creator _:Honami_Docherty.
<http://localhost/publications/articles/Journal1/1946/Article21> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article21> rdfs:seeAlso "http://www.huntedly.tld/unidentifiable/reversing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article21> swrc:pages "9"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article21> dc:title "czardoms reversing monstrances"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article21> foaf:homepage "http://www.unidentifiable.tld/monstrances/gravies.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article21> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Adrien_Hoit rdf:type foaf:Person.
_:Adrien_Hoit foaf:name "Adrien Hoit"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article21> dc:creator _:Adrien_Hoit.
<http://localhost/publications/articles/Journal1/1946/Article22> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article22> rdfs:seeAlso "http://www.reversing.tld/gravies/quadrigamist.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article22> swrc:pages "7"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article22> dc:title "monstrances quadrigamist mysteriously"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article22> foaf:homepage "http://www.gravies.tld/mysteriously/trenchers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article22> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Richild_Brinius rdf:type foaf:Person.
_:Richild_Brinius foaf:name "Richild Brinius"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article22> dc:creator _:Richild_Brinius.
<http://localhost/publications/articles/Journal1/1946/Article23> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article23> rdfs:seeAlso "http://www.quadrigamist.tld/trenchers/artfully.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article23> swrc:pages "61"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article23> dc:title "mysteriously artfully mangled"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article23> foaf:homepage "http://www.trenchers.tld/mangled/operably.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article23> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Hilario_Kovats rdf:type foaf:Person.
_:Hilario_Kovats foaf:name "Hilario Kovats"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article23> dc:creator _:Hilario_Kovats.
<http://localhost/publications/articles/Journal1/1946/Article24> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article24> rdfs:seeAlso "http://www.artfully.tld/operably/ionizing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article24> swrc:pages "165"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article24> dc:title "mangled ionizing tenantry"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article24> foaf:homepage "http://www.operably.tld/tenantry/armfuls.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article24> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Datja_Carner rdf:type foaf:Person.
_:Datja_Carner foaf:name "Datja Carner"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article24> dc:creator _:Datja_Carner.
<http://localhost/publications/articles/Journal1/1946/Article25> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article25> rdfs:seeAlso "http://www.ionizing.tld/armfuls/appendant.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article25> swrc:pages "14"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article25> dc:title "tenantry appendant submontane"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article25> foaf:homepage "http://www.armfuls.tld/submontane/stoutening.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article25> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Dawn_Lauinger rdf:type foaf:Person.
_:Dawn_Lauinger foaf:name "Dawn Lauinger"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article25> dc:creator _:Dawn_Lauinger.
<http://localhost/publications/articles/Journal1/1946/Article26> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article26> swrc:pages "96"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article26> dc:title "appendant stoutening piling"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article26> foaf:homepage "http://www.submontane.tld/piling/defunctness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article26> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Tsumemasa_Lloyd rdf:type foaf:Person.
_:Tsumemasa_Lloyd foaf:name "Tsumemasa Lloyd"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article26> dc:creator _:Tsumemasa_Lloyd.
<http://localhost/publications/articles/Journal1/1946/Article27> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article27> rdfs:seeAlso "http://www.stoutening.tld/defunctness/bestializing.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article27> swrc:pages "26"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article27> dc:title "piling bestializing overconfident"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article27> foaf:homepage "http://www.defunctness.tld/overconfident/triadism.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article27> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Patroklus_Hertel rdf:type foaf:Person.
_:Patroklus_Hertel foaf:name "Patroklus Hertel"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article27> dc:creator _:Patroklus_Hertel.
<http://localhost/publications/articles/Journal1/1946/Article28> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article28> rdfs:seeAlso "http://www.bestializing.tld/triadism/vivifier.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article28> swrc:pages "142"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article28> dc:title "overconfident vivifier vivisection"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article28> foaf:homepage "http://www.triadism.tld/vivisection/distally.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article28> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Dymas_Houskeeper rdf:type foaf:Person.
_:Dymas_Houskeeper foaf:name "Dymas Houskeeper"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article28> dc:creator _:Dymas_Houskeeper.
<http://localhost/publications/articles/Journal1/1946/Article29> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article29> swrc:pages "74"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article29> dc:title "vivifier distally polyclinic"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article29> foaf:homepage "http://www.vivisection.tld/polyclinic/foretime.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article29> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Bezubaia_Wiece rdf:type foaf:Person.
_:Bezubaia_Wiece foaf:name "Bezubaia Wiece"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article29> dc:creator _:Bezubaia_Wiece.
<http://localhost/publications/articles/Journal1/1946/Article30> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article30> rdfs:seeAlso "http://www.distally.tld/foretime/triarchy.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article30> swrc:pages "72"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article30> dc:title "polyclinic triarchy homerooms"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article30> foaf:homepage "http://www.foretime.tld/homerooms/totterer.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article30> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Isha_Quave rdf:type foaf:Person.
_:Isha_Quave foaf:name "Isha Quave"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article30> dc:creator _:Isha_Quave.
<http://localhost/publications/articles/Journal1/1946/Article31> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article31> swrc:pages "76"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article31> dc:title "triarchy totterer diarist"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article31> foaf:homepage "http://www.homerooms.tld/diarist/needlessness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article31> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Flaca_Sodawasser rdf:type foaf:Person.
_:Flaca_Sodawasser foaf:name "Flaca Sodawasser"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article31> dc:creator _:Flaca_Sodawasser.
<http://localhost/publications/articles/Journal1/1946/Article32> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article32> rdfs:seeAlso "http://www.totterer.tld/needlessness/lambies.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article32> swrc:pages "16"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article32> dc:title "diarist lambies geed"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article32> foaf:homepage "http://www.needlessness.tld/geed/charts.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article32> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Bruna_Nervis rdf:type foaf:Person.
_:Bruna_Nervis foaf:name "Bruna Nervis"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article32> dc:creator _:Bruna_Nervis.
<http://localhost/publications/articles/Journal1/1946/Article33> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article33> rdfs:seeAlso "http://www.lambies.tld/charts/begets.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article33> swrc:pages "196"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article33> dc:title "geed begets floorthrough"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article33> foaf:homepage "http://www.charts.tld/floorthrough/chargee.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article33> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Irminwin_Milloy rdf:type foaf:Person.
_:Irminwin_Milloy foaf:name "Irminwin Milloy"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article33> dc:creator _:Irminwin_Milloy.
_:Mikolas_Sirman rdf:type foaf:Person.
_:Mikolas_Sirman foaf:name "Mikolas Sirman"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article33> dc:creator _:Mikolas_Sirman.
<http://localhost/publications/articles/Journal1/1946/Article34> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article34> swrc:pages "82"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article34> dc:title "begets chargee affixion"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article34> foaf:homepage "http://www.floorthrough.tld/affixion/pincers.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article34> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Blossom_Quero rdf:type foaf:Person.
_:Blossom_Quero foaf:name "Blossom Quero"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article34> dc:creator _:Blossom_Quero.
<http://localhost/publications/articles/Journal1/1946/Article35> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article35> rdfs:seeAlso "http://www.chargee.tld/pincers/quipped.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article35> swrc:pages "160"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article35> dc:title "affixion quipped cabinetmaking"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article35> foaf:homepage "http://www.pincers.tld/cabinetmaking/unsupervised.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article35> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Lottchen_Pillitteri rdf:type foaf:Person.
_:Lottchen_Pillitteri foaf:name "Lottchen Pillitteri"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article35> dc:creator _:Lottchen_Pillitteri.
_:Anthony_Row rdf:type foaf:Person.
_:Anthony_Row foaf:name "Anthony Row"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article35> dc:creator _:Anthony_Row.
<http://localhost/publications/articles/Journal1/1946/Article36> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article36> rdfs:seeAlso "http://www.quipped.tld/unsupervised/deathcups.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article36> swrc:pages "49"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article36> dc:title "cabinetmaking deathcups dogfight"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article36> foaf:homepage "http://www.unsupervised.tld/dogfight/wormhole.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article36> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Karita_Sukovich rdf:type foaf:Person.
_:Karita_Sukovich foaf:name "Karita Sukovich"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article36> dc:creator _:Karita_Sukovich.
<http://localhost/publications/articles/Journal1/1946/Article37> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article37> rdfs:seeAlso "http://www.deathcups.tld/wormhole/emptied.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article37> swrc:pages "191"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article37> dc:title "dogfight emptied drifter"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article37> foaf:homepage "http://www.wormhole.tld/drifter/sluggishness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article37> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Gavriella_Sasson rdf:type foaf:Person.
_:Gavriella_Sasson foaf:name "Gavriella Sasson"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article37> dc:creator _:Gavriella_Sasson.
<http://localhost/publications/articles/Journal1/1946/Article38> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article38> rdfs:seeAlso "http://www.emptied.tld/sluggishness/senescent.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article38> swrc:pages "129"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article38> dc:title "drifter senescent representable"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article38> foaf:homepage "http://www.sluggishness.tld/representable/honors.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article38> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Lisandro_Harpst rdf:type foaf:Person.
_:Lisandro_Harpst foaf:name "Lisandro Harpst"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article38> dc:creator _:Lisandro_Harpst.
<http://localhost/publications/articles/Journal1/1946/Article39> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article39> rdfs:seeAlso "http://www.senescent.tld/honors/bullier.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article39> swrc:pages "27"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article39> dc:title "representable bullier superintended"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article39> foaf:homepage "http://www.honors.tld/superintended/investigated.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article39> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Lloyd_Stallsmith rdf:type foaf:Person.
_:Lloyd_Stallsmith foaf:name "Lloyd Stallsmith"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article39> dc:creator _:Lloyd_Stallsmith.
<http://localhost/publications/articles/Journal1/1946/Article40> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article40> rdfs:seeAlso "http://www.bullier.tld/investigated/paragraphed.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article40> swrc:pages "195"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article40> dc:title "superintended paragraphed claywares"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article40> foaf:homepage "http://www.investigated.tld/claywares/resourcefulness.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article40> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Blanca_Ursery rdf:type foaf:Person.
_:Blanca_Ursery foaf:name "Blanca Ursery"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article40> dc:creator _:Blanca_Ursery.
<http://localhost/publications/articles/Journal1/1946/Article41> rdf:type bench:Article.
<http://localhost/publications/articles/Journal1/1946/Article41> swrc:pages "94"^^xsd:integer.
<http://localhost/publications/articles/Journal1/1946/Article41> dc:title "paragraphed resourcefulness psychos"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article41> foaf:homepage "http://www.claywares.tld/psychos/morphia.html"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article41> swrc:journal <http://localhost/publications/journals/Journal1/1946>.
_:Kristin_Sandhu rdf:type foaf:Person.
_:Kristin_Sandhu foaf:name "Kristin Sandhu"^^xsd:string.
<http://localhost/publications/articles/Journal1/1946/Article41> dc:creator _:Kristin_Sandhu.
<http://localhost/publications/incolls/1946/Incollection1> rdf:type bench:Incollection.
<http://localhost/publications/incolls/1946/Incollection1> bench:booktitle "resourcefulness morphia ventricular"^^xsd:string.
<http://localhost/publications/incolls/1946/Incollection1> rdfs:seeAlso "http://www.psychos.tld/ventricular/iteming.html"^^xsd:string.
<http://localhost/publications/incolls/1946/Incollection1> dc:title "morphia iteming immunoreactive"^^xsd:string.
<http://localhost/publications/incolls/1946/Incollection1> foaf:homepage "http://www.ventricular.tld/immunoreactive/weasand.html"^^xsd:string.
<http://localhost/publications/incolls/1946/Incollection1> dcterms:issued "1946"^^xsd:integer.
_:Isamu_Cokely rdf:type foaf:Person.
_:Isamu_Cokely foaf:name "Isamu Cokely"^^xsd:string.
<http://localhost/publications/incolls/1946/Incollection1> dc:creator _:Isamu_Cokely.
|